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.
36 lines
579 B
Plaintext
36 lines
579 B
Plaintext
|
2 years ago
|
@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 .hideBox {
|
||
|
|
position: fixed;
|
||
|
|
left: 0;
|
||
|
|
bottom: -100vh;
|
||
|
|
width: 100vw;
|
||
|
|
/* height: 100vh; */
|
||
|
|
overflow: hidden;
|
||
|
|
z-index: 99;
|
||
|
|
/* background-color: #fff; */
|
||
|
|
border-radius: 8px 8px 0px 0px;
|
||
|
|
transition: bottom linear 0.2s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.leftBox .leftShow {
|
||
|
|
bottom: 0px !important;
|
||
|
|
}
|