64 lines
897 B
Plaintext
64 lines
897 B
Plaintext
/* pages/login/index.wxss */
|
|
|
|
.container {
|
|
min-height: calc(100vh - 230rpx);
|
|
padding: 230rpx 124rpx 0 124rpx;
|
|
}
|
|
|
|
.login-btn {
|
|
margin-top: 100rpx;
|
|
height: 80rpx;
|
|
border-radius: 40rpx;
|
|
background: #ffda2e;
|
|
color: #252330;
|
|
font-size: 26rpx;
|
|
line-height: 80rpx;
|
|
}
|
|
|
|
.auth-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 50rpx;
|
|
}
|
|
|
|
.app-logo {
|
|
width: 600rpx;
|
|
height: 150rpx;
|
|
}
|
|
|
|
.auth-tip {
|
|
margin-top: 30rpx;
|
|
font-size: 28rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
.agreement {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-top: 40rpx;
|
|
font-size: 22rpx;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
.agreement-text {
|
|
flex: 1;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.agreement .protocol {
|
|
color: #b1992f;
|
|
}
|
|
|
|
.agreement checkbox {
|
|
transform: scale(0.6);
|
|
}
|
|
|
|
.unclick-mask{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background: rgba(0, 0, 0, 0);
|
|
} |