You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
713 B
Plaintext
38 lines
713 B
Plaintext
|
12 months ago
|
@import "../../app.wxss";
|
||
|
|
/*
|
||
|
|
成为代理二维码弹窗
|
||
|
|
*/
|
||
|
|
.weui-mask {
|
||
|
|
background: rgba(0, 0, 0, 0.6);
|
||
|
|
}
|
||
|
|
.weui-dialog {
|
||
|
|
position: fixed;
|
||
|
|
z-index: 5000;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
-webkit-transform: translateY(-50%);
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
background-color: var(--weui-BG-2);
|
||
|
|
text-align: center;
|
||
|
|
border-radius: 12px;
|
||
|
|
overflow: hidden;
|
||
|
|
display: -webkit-box;
|
||
|
|
display: -webkit-flex;
|
||
|
|
display: flex;
|
||
|
|
-webkit-flex-direction: column;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
-webkit-box-direction: normal;
|
||
|
|
flex-direction: column;
|
||
|
|
max-height: 90%;
|
||
|
|
outline: 0;
|
||
|
|
}
|
||
|
|
.weui-mask,
|
||
|
|
.weui-mask_transparent {
|
||
|
|
position: fixed;
|
||
|
|
z-index: 1000;
|
||
|
|
top: 0;
|
||
|
|
right: 0;
|
||
|
|
left: 0;
|
||
|
|
bottom: 0;
|
||
|
|
}
|