56 lines
1.4 KiB
SCSS
56 lines
1.4 KiB
SCSS
@function px2rem($px, $rem:75) {
|
|
@return $px/$rem+rem;
|
|
}
|
|
|
|
@font-face{
|
|
font-family: 'pingfang-regular';
|
|
src: url('../../../common/fonts/PingFang-Regular.ttf');
|
|
src: url('../../../common/fonts/PingFang-Regular.ttf') format('woff'),
|
|
url('../../../common/fonts/PingFang-Regular.ttf') format('truetype'),
|
|
url('../../../common/fonts/PingFang-Regular.ttf') format('svg');
|
|
}
|
|
|
|
body{
|
|
font-family: 'pingfang-regular';
|
|
font-size: px2rem(24, );
|
|
color: #666;
|
|
}
|
|
|
|
.wrap{
|
|
padding: px2rem(0, ) px2rem(30, );
|
|
.title{
|
|
font-size: px2rem(32, );
|
|
font-weight: bold;
|
|
color: #333;
|
|
text-align: center;
|
|
margin: px2rem(40, ) 0 px2rem(48, );
|
|
}
|
|
.item{
|
|
margin-bottom: px2rem(30, );
|
|
line-height: 1.4;
|
|
}
|
|
.tip{
|
|
line-height: 1.4;
|
|
}
|
|
.btn_wrap{
|
|
width: 90%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: px2rem(120, ) auto 0;
|
|
div{
|
|
width: px2rem(280, );
|
|
height: px2rem(76, );
|
|
background-color: #EAE5FC;
|
|
border-radius: px2rem(48, );
|
|
line-height: px2rem(76, );
|
|
text-align: center;
|
|
font-size: px2rem(28, );
|
|
color: #7154EE;
|
|
}
|
|
.back{
|
|
background-image: linear-gradient(to right, #8776FF, #735FFE);
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|