68 lines
1.3 KiB
Plaintext
68 lines
1.3 KiB
Plaintext
|
|
.uni-mask {
|
|
position: fixed;
|
|
z-index: 998;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background-color: rgba(0, 0, 0, .6);
|
|
height: 100%;
|
|
}
|
|
.uni-popup {
|
|
position: fixed;
|
|
z-index: 999;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 0 30rpx rgba(0, 0, 0, .1);
|
|
}
|
|
.header-top {
|
|
background-color: #5393F7;
|
|
color: #fff;
|
|
width: 100%;
|
|
/* margin-bottom: 20upx; */
|
|
text-align: center;
|
|
padding: 20rpx 30rpx;
|
|
}
|
|
.uni-popup-middle {
|
|
/* overflow: hidden; */
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
min-width: 400rpx;
|
|
min-height: 100rpx;
|
|
border-radius: 16rpx;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -60%);
|
|
transform: translate(-50%, -60%);
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
padding: 0 30rpx 30rpx 30rpx;
|
|
}
|
|
.uni-popup-top {
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: 390rpx;
|
|
line-height: 100rpx;
|
|
text-align: center;
|
|
height: auto;
|
|
}
|
|
.uni-popup-bottom {
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
min-height: 200rpx;
|
|
line-height: 100rpx;
|
|
text-align: center;
|
|
}
|
|
|