71 lines
1.2 KiB
Plaintext
71 lines
1.2 KiB
Plaintext
/* components/signin/signin.wxss */
|
|
|
|
page {
|
|
background: #001739;
|
|
}
|
|
|
|
.bg {
|
|
position: fixed;
|
|
top:0;
|
|
left:0;
|
|
z-index: -100;
|
|
height:100%;
|
|
width:100%;
|
|
}
|
|
|
|
.main-page {
|
|
width:100%;
|
|
height:auto;
|
|
padding-left:20rpx;
|
|
padding-right:20rpx;
|
|
padding-top: 100rpx;
|
|
color:#fff;
|
|
position: relative;
|
|
}
|
|
|
|
.welcome {
|
|
font-size: 80rpx;
|
|
margin-top:20rpx;
|
|
}
|
|
|
|
.userAvatar-box {
|
|
position: absolute;
|
|
right:20rpx;
|
|
top:120rpx;
|
|
height:200rpx;
|
|
width:200rpx;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
input {
|
|
height:70rpx;
|
|
line-height: 80rpx;
|
|
font-size: 30rpx;
|
|
width:100%;
|
|
border:1px #989898 solid;
|
|
border-radius:10rpx;
|
|
padding-right:10rpx;
|
|
padding-left:10rpx;
|
|
}
|
|
|
|
.submit {
|
|
background: #ff2e55;
|
|
height:80rpx;
|
|
font-size:35rpx;
|
|
text-align: center;
|
|
line-height: 80rpx;
|
|
margin-top:150rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.error {
|
|
color:#ff2e55;
|
|
font-size: 25rpx;
|
|
height:50rpx;
|
|
line-height: 50rpx;
|
|
} |