44 lines
774 B
Plaintext
44 lines
774 B
Plaintext
/* pages/login/login.wxss */
|
|
page{
|
|
background-color: black;
|
|
}
|
|
.loginBox{
|
|
width: 75%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 0 auto;
|
|
padding: 30rpx;
|
|
margin-top: 50%;
|
|
background-color: white;
|
|
}
|
|
.loginBox .title{
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 38rpx;
|
|
font-weight: 600;
|
|
margin-bottom: 5rpx;
|
|
}
|
|
|
|
.loginBox .NeedLabel{
|
|
display: flex;
|
|
align-items: center;
|
|
color: rgb(190, 190, 190);
|
|
font-size: 30rpx;
|
|
margin: 15rpx 0;
|
|
}
|
|
.NeedLabel view{
|
|
width: 15rpx;
|
|
height: 15rpx;
|
|
border-radius: 50%;
|
|
margin-right: 15rpx;
|
|
background-color: rgb(190, 190, 190);
|
|
}
|
|
.loginBox .button{
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 25rpx 0;
|
|
border-radius: 15rpx;
|
|
color: white;
|
|
font-size: 36rpx;
|
|
background-color: rgb(30, 153, 30);
|
|
} |