2024-10-29 19:17:08 +08:00
|
|
|
@function px2rem($px) {
|
|
|
|
@return $px / 75+rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
width: 100%;
|
|
|
|
// height: px2rem(1334);
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back {
|
|
|
|
width: 100%;
|
|
|
|
height: px2rem(176);
|
|
|
|
background: #fff;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
.backIcon {
|
|
|
|
width: px2rem(44);
|
|
|
|
height: px2rem(44);
|
|
|
|
position: absolute;
|
|
|
|
left: px2rem(32);
|
|
|
|
top: px2rem(110);
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
b {
|
|
|
|
width: 100%;
|
|
|
|
height: px2rem(44);
|
|
|
|
line-height: px2rem(44);
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
top: px2rem(110);
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
color: #313131;
|
|
|
|
font-size: px2rem(36);
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
width: px2rem(686);
|
|
|
|
margin: px2rem(196) auto px2rem(24);
|
|
|
|
color: #313131;
|
|
|
|
font-size: px2rem(28);
|
2025-09-02 14:42:54 +08:00
|
|
|
font-weight: 400;
|
2024-10-29 19:17:08 +08:00
|
|
|
line-height: px2rem(40);
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: px2rem(686);
|
|
|
|
margin: 0 auto px2rem(30);
|
|
|
|
}
|