108 lines
2.3 KiB
SCSS

.main {
width: 100vw;
height: 100%;
position: fixed;
top: 0;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1998;
overflow: hidden;
.mask {
border-radius: 20px 20px 0px 0px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 10000;
background: rgba(0, 0, 0, 0.6);
transition: all 0.3s;
// opacity: 0;
.bigBox {
position: absolute;
padding: 32px;
border-radius: 16px;
background-color: #fff;
left: 10px;
top: 320px;
.topTitleBox {
display: flex;
align-items: center;
.topTitle {
color: #353535;
font-size: 28px;
margin-right: 10px;
font-weight: 500;
}
}
.modeBox {
margin-top: 20px;
display: flex;
.modeKindOne {
width: 160px;
height: 68px;
background: rgba(51, 127, 255, 0.1);
border-radius: 8px;
border: 1px solid #337fff;
font-size: 28px;
font-weight: 400;
color: #337fff;
text-align: center;
line-height: 68px;
margin-right: 18px;
}
.modeKindTwo {
margin-right: 18px;
background-color: #f6f6f6;
width: 160px;
height: 68px;
border-radius: 8px;
color: #626262;
font-size: 28px;
font-weight: 400;
color: #000000;
text-align: center;
line-height: 68px;
}
}
.line {
margin-top: 15px;
margin-bottom: 15px;
// width: 512px;
height: 1px;
background: #050000;
opacity: 0.1;
}
.pleaseFont {
font-size: 26px;
font-weight: 500;
color: #000000;
margin-bottom: 16px;
}
.saleFont {
font-size: 24px;
font-weight: 400;
color: #333333;
margin-bottom: 16px;
}
.flexBox {
display: flex;
justify-content: space-between;
align-items: center;
.flexLeft {
font-size: 24px;
font-weight: 400;
color: #333333;
}
.flexRight {
font-size: 26px;
font-weight: 500;
color: #337fff;
}
}
}
}
}