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.
46 lines
763 B
Plaintext
46 lines
763 B
Plaintext
@import '../../app.wxss';
|
|
.leftBox {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 0;
|
|
height: 0;
|
|
/* width: 100vw;
|
|
height: 100vh; */
|
|
z-index: 999;
|
|
}
|
|
.leftBox .mask {
|
|
position: fixed;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 99;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
.leftBox .leftShow {
|
|
display: block !important;
|
|
}
|
|
|
|
.leftBox .hideBox {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 80vw;
|
|
min-height: 510px;
|
|
overflow: hidden;
|
|
z-index: 99;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
transition: bottom linear 0.2s;
|
|
display: none;
|
|
}
|
|
.billInput {
|
|
height: 40px;
|
|
width: 90%;
|
|
padding-left: 12px;
|
|
box-sizing: border-box;
|
|
background: #f9f9f9;
|
|
border-radius: 4px;
|
|
margin-top: 4px;
|
|
}
|