2022-10-20 16:28:50 +08:00
|
|
|
@function px2rem($px, $rem:75) {
|
2022-09-08 18:22:18 +08:00
|
|
|
@return $px/$rem+rem;
|
|
|
|
}
|
|
|
|
|
2022-10-20 16:28:50 +08:00
|
|
|
@font-face {
|
2022-09-08 18:22:18 +08:00
|
|
|
font-family: 'pingfang-medium';
|
|
|
|
src: url('../../../common/fonts/PingFang-Medium.ttf');
|
|
|
|
src: url('../../../common/fonts/PingFang-Medium.ttf') format('woff'),
|
|
|
|
url('../../../common/fonts/PingFang-Medium.ttf') format('truetype'),
|
|
|
|
url('../../../common/fonts/PingFang-Medium.ttf') format('svg');
|
|
|
|
}
|
|
|
|
|
2022-10-20 16:28:50 +08:00
|
|
|
html {
|
|
|
|
background: #E7F5F8;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2022-09-08 18:22:18 +08:00
|
|
|
display: none;
|
|
|
|
font-family: 'pingfang-medium';
|
|
|
|
width: 100%;
|
|
|
|
height: px2rem(1334);
|
2022-10-20 16:28:50 +08:00
|
|
|
background: url('../images/register.png') #E7F5F8 no-repeat 0 0/100% 100%;
|
2022-09-08 18:22:18 +08:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2022-10-20 16:28:50 +08:00
|
|
|
.avatar {
|
2022-09-08 18:22:18 +08:00
|
|
|
position: absolute;
|
2022-10-20 16:28:50 +08:00
|
|
|
top: 5.3rem;
|
|
|
|
left: 49.6%;
|
2022-09-08 18:22:18 +08:00
|
|
|
transform: translateX(-50%);
|
2022-10-20 16:28:50 +08:00
|
|
|
width: 2.2rem;
|
|
|
|
height: 2.2rem;
|
|
|
|
|
|
|
|
img {
|
2022-09-08 18:22:18 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-20 16:28:50 +08:00
|
|
|
.tip {
|
2022-09-08 18:22:18 +08:00
|
|
|
position: absolute;
|
|
|
|
top: px2rem(754);
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
font-size: px2rem(30);
|
|
|
|
font-weight: 600;
|
|
|
|
color: white;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2022-10-20 16:28:50 +08:00
|
|
|
display: none;
|
2022-09-08 18:22:18 +08:00
|
|
|
}
|
|
|
|
|
2022-10-20 16:28:50 +08:00
|
|
|
.form-wrap {
|
2022-09-08 18:22:18 +08:00
|
|
|
position: absolute;
|
2022-10-20 16:28:50 +08:00
|
|
|
top: 8.933333rem;
|
2022-09-08 18:22:18 +08:00
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
.mobile-number,
|
|
|
|
.verify-ipt {
|
|
|
|
width: px2rem(621);
|
|
|
|
height: px2rem(92);
|
2022-09-08 18:22:18 +08:00
|
|
|
outline: none;
|
2022-10-20 16:28:50 +08:00
|
|
|
border-radius: px2rem(92);
|
2022-09-08 18:22:18 +08:00
|
|
|
padding-left: px2rem(30);
|
2022-10-20 16:28:50 +08:00
|
|
|
background: #fff;
|
2022-09-08 18:22:18 +08:00
|
|
|
margin-bottom: px2rem(30);
|
|
|
|
font-size: px2rem(30);
|
2022-10-20 16:28:50 +08:00
|
|
|
color: #141949;
|
|
|
|
border: 1px solid #C8C9FF;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: #141949;
|
|
|
|
font-weight: bold;
|
2022-09-08 18:22:18 +08:00
|
|
|
}
|
|
|
|
}
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
.verify-wrap {
|
2022-09-08 18:22:18 +08:00
|
|
|
position: relative;
|
|
|
|
height: px2rem(70);
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
.verify-btn {
|
2022-09-08 18:22:18 +08:00
|
|
|
position: absolute;
|
2022-10-20 16:28:50 +08:00
|
|
|
right: px2rem(24, );
|
|
|
|
top: px2rem(19, );
|
|
|
|
width: px2rem(140);
|
|
|
|
height: px2rem(55);
|
|
|
|
background: #FF6BEF;
|
|
|
|
border-radius: px2rem(55);
|
2022-09-08 18:22:18 +08:00
|
|
|
color: white;
|
|
|
|
font-size: px2rem(30);
|
|
|
|
text-align: center;
|
2022-10-20 16:28:50 +08:00
|
|
|
line-height: px2rem(55);
|
2022-09-08 18:22:18 +08:00
|
|
|
}
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
.invite-code {
|
2022-09-08 18:22:18 +08:00
|
|
|
position: absolute;
|
2022-10-20 16:28:50 +08:00
|
|
|
top: 63%;
|
2022-09-08 18:22:18 +08:00
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2022-10-20 16:28:50 +08:00
|
|
|
color: #141949;
|
2022-09-08 18:22:18 +08:00
|
|
|
font-size: px2rem(36, );
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
.register-btn {
|
2022-09-08 18:22:18 +08:00
|
|
|
display: block;
|
2022-10-20 16:28:50 +08:00
|
|
|
width: px2rem(621);
|
|
|
|
height: px2rem(92);
|
|
|
|
background: linear-gradient(-90deg, #BBFFFF 0%, #A9AAFF 52%, #ECD0FF 100%);
|
|
|
|
border-radius: px2rem(92);
|
2022-09-08 18:22:18 +08:00
|
|
|
margin: px2rem(60) auto 0;
|
2022-10-20 16:28:50 +08:00
|
|
|
color: #141949;
|
2022-09-08 18:22:18 +08:00
|
|
|
font-size: px2rem(36);
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
2022-10-20 16:28:50 +08:00
|
|
|
line-height: px2rem(92);
|
2022-09-08 18:22:18 +08:00
|
|
|
}
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
.form-tip {
|
2022-09-08 18:22:18 +08:00
|
|
|
color: #999;
|
|
|
|
font-size: px2rem(26);
|
|
|
|
text-align: center;
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
a {
|
2022-09-08 18:22:18 +08:00
|
|
|
color: white;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-20 16:28:50 +08:00
|
|
|
.bottom {
|
2022-09-08 18:22:18 +08:00
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
z-index: 999;
|
|
|
|
width: px2rem(750);
|
|
|
|
height: px2rem(126);
|
2022-10-20 18:44:45 +08:00
|
|
|
background: linear-gradient(-90deg, #A493FC 0%, #40D3F8 100%);
|
2022-09-08 18:22:18 +08:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
img {
|
2022-09-08 18:22:18 +08:00
|
|
|
width: px2rem(86);
|
|
|
|
height: px2rem(86);
|
|
|
|
border-radius: px2rem(16);
|
|
|
|
margin-left: px2rem(20);
|
|
|
|
margin-right: px2rem(10);
|
|
|
|
}
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
p {
|
2022-09-08 18:22:18 +08:00
|
|
|
flex: 1;
|
|
|
|
font-size: px2rem(30);
|
|
|
|
color: white;
|
|
|
|
}
|
2022-10-20 16:28:50 +08:00
|
|
|
|
|
|
|
a {
|
2022-09-08 18:22:18 +08:00
|
|
|
width: px2rem(160);
|
|
|
|
height: px2rem(52);
|
|
|
|
line-height: px2rem(52);
|
|
|
|
border-radius: px2rem(26);
|
|
|
|
background: white;
|
|
|
|
margin-right: px2rem(20);
|
|
|
|
text-align: center;
|
2022-10-20 16:28:50 +08:00
|
|
|
font-size: px2rem(28);
|
2022-09-08 18:22:18 +08:00
|
|
|
font-weight: bold;
|
2022-10-20 16:28:50 +08:00
|
|
|
color: #141949;
|
2022-09-08 18:22:18 +08:00
|
|
|
}
|
2022-10-20 16:28:50 +08:00
|
|
|
}
|