46 lines
802 B
Plaintext
46 lines
802 B
Plaintext
|
|
.uni-mask {
|
|
position: fixed;
|
|
z-index: 998;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background-color: rgba(0, 0, 0, .3);
|
|
}
|
|
.uni-popup {
|
|
position: fixed;
|
|
z-index: 999;
|
|
}
|
|
.uni-popup-middle {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
width: 600rpx;
|
|
/* height:800upx; */
|
|
border-radius: 10rpx;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
justify-content: flex-start;
|
|
padding: 30rpx;
|
|
overflow: auto;
|
|
}
|
|
.popup-head{ width: 100%; padding-bottom: 40rpx; box-sizing: border-box; font-size: 30rpx; font-weight: bold;}
|
|
.uni-popup-top {
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
text-align: center;
|
|
}
|
|
.uni-popup-bottom {
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|