116 lines
2.0 KiB
Plaintext
116 lines
2.0 KiB
Plaintext
@import "../../commons/css/common.wxss";
|
|
.auth-dialog{
|
|
position: fixed;
|
|
left:50%;
|
|
top:50%;
|
|
transform: translate(-50%,-50%);
|
|
width:88%;
|
|
padding:70rpx 60rpx;
|
|
background-color:#fff;
|
|
box-sizing: border-box;
|
|
border-radius: 10rpx;
|
|
overflow: hidden;
|
|
z-index: 10;
|
|
}
|
|
.auth-dialog-special{
|
|
position: fixed;
|
|
left:50%;
|
|
top:50%;
|
|
transform: translate(-50%,-50%);
|
|
width:80%;
|
|
background-color:#fff;
|
|
box-sizing: border-box;
|
|
border-radius: 10rpx;
|
|
z-index: 10;
|
|
}
|
|
|
|
|
|
.auth-btngetUserInfo{
|
|
position: absolute;
|
|
left:0;
|
|
top:0;
|
|
right:0;
|
|
bottom:0;
|
|
opacity: 0;
|
|
}
|
|
|
|
.auth-dialog .cap{
|
|
color:#000;
|
|
font-size: 36rpx;
|
|
line-height: 36rpx;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.auth-dialog .intro{
|
|
margin-top:30rpx;
|
|
color:#666;
|
|
font-size: 28rpx;
|
|
line-height: 46rpx;
|
|
}
|
|
.auth-dialog .btn-list{
|
|
display: flex;
|
|
margin-top:40rpx;
|
|
}
|
|
|
|
.auth-dialog .btn-list .item-cell{
|
|
flex: 1;
|
|
padding:0 10rpx;
|
|
}
|
|
|
|
.auth-dialog .btn-list button{
|
|
width: 220rpx;
|
|
height: 72rpx;
|
|
line-height: 72rpx;
|
|
overflow: hidden;
|
|
border-radius: 50rpx;
|
|
font-size: 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.auth-dialog .btn-list button.btn-cancel{
|
|
background: #fff;
|
|
color: #1a1a1a;
|
|
line-height: 68rpx;
|
|
border:1rpx solid #1a1a1a;
|
|
}
|
|
.auth-dialog .btn-list button.btn-confirm{
|
|
background: #1a1a1a;
|
|
color: #fff;
|
|
}
|
|
.auth-dialog .btn-list button::after{
|
|
border:none;
|
|
}
|
|
.auth-dialog-mask{
|
|
position: fixed;
|
|
left:0;
|
|
right: 0;
|
|
top:0;
|
|
bottom:0;
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
.auth-dialog-logo{
|
|
position:absolute;
|
|
top:-50rpx;
|
|
left:50%;
|
|
transform:translate(-50%,0);
|
|
}
|
|
.special-intro::before{
|
|
display:block;
|
|
position:absolute;
|
|
top:-20rpx;
|
|
left:50%;
|
|
transform:translate(-50%,0);
|
|
width: 0;
|
|
height: 0;
|
|
border-color: transparent transparent #f5f5f5 transparent;
|
|
border-style: solid;
|
|
border-width: 0 20rpx 20rpx 20rpx;
|
|
content:"";
|
|
}
|
|
.special-close{
|
|
position:absolute;
|
|
bottom:-100rpx;
|
|
left:50%;
|
|
transform:translate(-50%,0);
|
|
} |