You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
2.4 KiB
142 lines
2.4 KiB
.prompt {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: rgba(0, 0, 0, 80%);
|
|
z-index: 20 !important;
|
|
text-align: center;
|
|
}
|
|
|
|
.prompt > .icon {
|
|
position: absolute;
|
|
width: 112px;
|
|
height: 112px;
|
|
left: 0;
|
|
right: 0;
|
|
top: calc(50vh - 112px - 40px - 17px);
|
|
margin: auto;
|
|
}
|
|
|
|
.prompt > .title {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
font-family: Noto IKEA Simplified Chinese;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: 24px;
|
|
line-height: 36px;
|
|
height: 36px;
|
|
text-align: center;
|
|
color: #eee9de;
|
|
}
|
|
.prompt > .title.top {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
font-family: Noto IKEA Simplified Chinese;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: 24px;
|
|
line-height: 36px;
|
|
height: 36px;
|
|
text-align: center;
|
|
color: #eee9de;
|
|
transform: translateY(-36px);
|
|
}
|
|
|
|
.prompt > .meta {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: calc(50vh + 17px + 8px);
|
|
margin: auto;
|
|
font-family: Noto IKEA Simplified Chinese;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
line-height: 21px;
|
|
/* identical to box height */
|
|
|
|
text-align: center;
|
|
|
|
/* Font color/中灰 */
|
|
|
|
color: #b3aea7;
|
|
}
|
|
|
|
.prompt > .btn1 {
|
|
position: absolute;
|
|
height: 50px;
|
|
width: 180px;
|
|
left: 0;
|
|
right: 0;
|
|
top: calc(75vh - 10px - 50px);
|
|
margin: auto;
|
|
border-radius: 63px;
|
|
font-family: PingFang SC;
|
|
font-style: normal;
|
|
font-weight: 900;
|
|
font-size: 16px;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
color: #333333;
|
|
background: #ffdb00;
|
|
}
|
|
|
|
.prompt > .btn2 {
|
|
position: absolute;
|
|
height: 50px;
|
|
width: 180px;
|
|
left: 0;
|
|
right: 0;
|
|
top: calc(75vh + 10px);
|
|
margin: auto;
|
|
border: 1px solid #767571;
|
|
box-sizing: border-box;
|
|
border-radius: 63px;
|
|
font-style: normal;
|
|
font-weight: 900;
|
|
font-size: 16px;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
color: #d1c8b9;
|
|
}
|
|
|
|
.prompt > .btn3 {
|
|
position: absolute;
|
|
width: 56px;
|
|
height: 20px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 66px;
|
|
margin: auto;
|
|
font-family: Noto IKEA Simplified Chinese;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #eee9de;
|
|
}
|
|
|
|
.prompt > .btn3::after {
|
|
display: block;
|
|
content: "";
|
|
position: absolute;
|
|
bottom: -6px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
width: 16px;
|
|
margin: auto;
|
|
background: #eee9de;
|
|
border-radius: 20px;
|
|
}
|
|
|