You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

159 lines
1.2 KiB

/* 抽屉宽度
*/
.uni-drawer.data-v-56836304 {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 9999;
}
.uni-drawer__content.data-v-56836304 {
display: block;
position: absolute;
top: 0;
bottom: 0;
background-color: #ffffff;
transition: -webkit-transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.uni-drawer--left.data-v-56836304 {
left: 0;
-webkit-transform: translateX(-320px);
transform: translateX(-320px);
}
.uni-drawer--right.data-v-56836304 {
right: 0;
-webkit-transform: translateX(320px);
transform: translateX(320px);
}
.uni-drawer__content--visible.data-v-56836304 {
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
.uni-drawer__mask.data-v-56836304 {
display: block;
opacity: 0;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.4);
transition: opacity 0.3s;
}
.uni-drawer__mask--visible.data-v-56836304 {
display: block;
opacity: 1;
}