You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
995 B
62 lines
995 B
/* components/login/login.wxss */
|
|
/* 首次登录弹窗 */
|
|
.login_maks{
|
|
width: 100vw;
|
|
height: 100vh ;
|
|
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 999999;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login_box{
|
|
width: 500rpx;
|
|
height: 482rpx;
|
|
background: white;
|
|
border-radius: 18rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
font-size: 32rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
.login_box .logo image{
|
|
width: 136rpx;
|
|
height: 136rpx;
|
|
margin-top: 50rpx;
|
|
}
|
|
|
|
.login_box .tip{
|
|
margin: 20rpx 0 40rpx 0;
|
|
color: #0052EC;
|
|
}
|
|
|
|
.login_box .bottom{
|
|
flex-shrink: 0;
|
|
width: 100%;
|
|
height: 114rpx;
|
|
border-top:2rpx solid #E6E6E6;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login_box .bottom button{
|
|
width: 264rpx;
|
|
height: 66rpx;
|
|
line-height: 66rpx;
|
|
background: #0052EC;
|
|
color: white;
|
|
border-radius: 30rpx;
|
|
font-size: 30rpx;
|
|
}
|