87 行
1.5 KiB
Plaintext
87 行
1.5 KiB
Plaintext
.login-page {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0 60rpx;
|
|
padding-top: 200rpx;
|
|
padding-bottom: calc(80rpx + env(safe-area-inset-bottom));
|
|
box-sizing: border-box;
|
|
background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
|
|
}
|
|
|
|
.logo-area {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo-circle {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
border-radius: 50%;
|
|
background-color: #333333;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 32rpx;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 72rpx;
|
|
color: #ffffff;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.app-name {
|
|
font-size: 40rpx;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
margin-bottom: 12rpx;
|
|
}
|
|
|
|
.app-desc {
|
|
font-size: 26rpx;
|
|
color: #999999;
|
|
}
|
|
|
|
.btn-area {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 40rpx 60rpx calc(60rpx + env(safe-area-inset-bottom));
|
|
box-sizing: border-box;
|
|
background: linear-gradient(180deg, rgba(245,245,245,0) 0%, #f5f5f5 30%);
|
|
}
|
|
|
|
.btn-wechat {
|
|
width: 100%;
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
background-color: #07c160;
|
|
color: #ffffff;
|
|
font-size: 32rpx;
|
|
border-radius: 12rpx;
|
|
border: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-wechat::after {
|
|
border: none;
|
|
}
|
|
|
|
.agreement {
|
|
font-size: 22rpx;
|
|
color: #999999;
|
|
margin-top: 24rpx;
|
|
}
|