89 lines
1.4 KiB
Plaintext
89 lines
1.4 KiB
Plaintext
.oper-box {
|
|
width: 100%;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.oper-box p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.basic-info-box {
|
|
height: 38px;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #EEF5FF;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
#basic-info p span {
|
|
color: #2F82FB;
|
|
}
|
|
|
|
#basic-info,
|
|
#pick-up,
|
|
#show {
|
|
display: flex;
|
|
align-items: center;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
#pick-up,
|
|
#show {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#pick-up p,
|
|
#show p {
|
|
color: #2F82FB;
|
|
}
|
|
|
|
|
|
|
|
/* 内容体样式 end*/
|
|
|
|
|
|
/* layer 右侧呼出 start */
|
|
@keyframes layui-rl {
|
|
from {
|
|
transform: translateX(0px);
|
|
-webkit-transform: translateX(0px);
|
|
-moz-transform: translateX(0px);
|
|
-ms-transform: translateX(0px);
|
|
-o-transform: translateX(0px);
|
|
}
|
|
to {
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes layui-rl {
|
|
from {
|
|
transform: translateX(0px);
|
|
}
|
|
to {
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
.layui-anim {
|
|
-webkit-animation-duration: .3s;
|
|
animation-duration: .3s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.layui-anim-rl {
|
|
-webkit-animation-name: layui-rl;
|
|
animation-name: layui-rl;
|
|
}
|
|
|
|
.layui-layer-adminRight {
|
|
box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
|
|
border-radius: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
/* layer 右侧呼出 end */ |