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.
46 lines
955 B
46 lines
955 B
4 years ago
|
/* pages/login/index.wxss */
|
||
|
.authorization {
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
box-sizing: border-box;
|
||
|
padding-top: 190rpx;
|
||
|
}
|
||
|
|
||
|
.user-avatar {
|
||
|
width: 192rpx;
|
||
|
height: 192rpx;
|
||
|
border-radius: 50%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.user-name{
|
||
|
margin: 40rpx 0;
|
||
|
}
|
||
|
.login-notice{
|
||
|
font-size: 28rpx;
|
||
|
font-weight: 500;
|
||
|
line-height: 40rpx;
|
||
|
color: #000;
|
||
|
padding-bottom: 90rpx;
|
||
|
}
|
||
|
|
||
|
.authorization .wx-btn {
|
||
|
width: 640rpx !important;
|
||
|
height: 86rpx!important;
|
||
|
background: linear-gradient(144deg, #FFA782 0%, #FF5100 100%) !important;
|
||
|
border-radius: 60rpx!important;
|
||
|
text-align: center!important;
|
||
|
line-height: 86rpx!important;
|
||
|
margin-bottom: 36rpx!important;
|
||
|
display: flex!important;
|
||
|
align-items: center!important;
|
||
|
justify-content: center!important;
|
||
|
color: #fff;
|
||
|
font-weight: 500 !important;
|
||
|
}
|
||
|
.authorization .btn{
|
||
|
background: #fff !important;
|
||
|
border: 4rpx solid #FFA782;
|
||
|
color: #FFA782 !important;
|
||
|
}
|