.layout-container {
|
width: 100%;
|
height: 100%;
|
scrollbar-width: thin;
|
|
::-webkit-scrollbar {
|
border-radius: 3px;
|
width: 6px;
|
background-color: #EEEEEE;
|
height: 6px;
|
}
|
|
::-webkit-scrollbar-thumb {
|
border-radius: 3px;
|
opacity: 0.6;
|
background: #999999;
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
opacity: 0.66;
|
background: #666666;
|
}
|
|
.el-container {
|
width: 100%;
|
height: 100%;
|
|
.el-header,
|
.el-main {
|
padding: 0;
|
overflow: hidden;
|
}
|
|
.el-header {
|
position: relative;
|
display: flex;
|
background: #2196f3;
|
align-items: center;
|
|
img {
|
margin-top: 4px;
|
margin-left: 10px;
|
margin-right: 10px;
|
height: 38px;
|
}
|
|
.header-title {
|
margin-right: 10px;
|
position: relative;
|
text-indent: 0.1em;
|
font-size: 18px;
|
color: #fff;
|
}
|
|
.out-home {
|
position: absolute;
|
top: 0;
|
left: auto;
|
right: 0;
|
bottom: 0;
|
margin: auto;
|
width: 88px;
|
line-height: 60px;
|
}
|
|
.el-menu {
|
|
li {
|
font-size: 16px !important;
|
}
|
|
li.el-menu-item {
|
border: 0px !important;
|
}
|
|
li.el-menu-item.is-active {
|
border: 0px !important;
|
background: rgba(1, 64, 112, 0.494) !important;
|
}
|
|
li:hover {
|
border: 0px !important;
|
background: #1A78C2 !important;
|
}
|
}
|
}
|
|
.el-main {
|
height: calc(100% - 60px);
|
}
|
|
}
|
}
|
|
.el-menu--horizontal {
|
.el-menu-item {
|
font-size: 12px !important;
|
text-align: center;
|
background: transparent !important;
|
|
}
|
|
.el-menu-item:hover {
|
background: transparent !important;
|
color: #fff !important;
|
}
|
}
|
|
|
.el-menu--collapse .el-menu .el-submenu,
|
.el-menu--popup {
|
min-width: 132px !important;
|
}
|
|
.el-submenu__title {
|
|
font-size: 16px !important;
|
|
i {
|
color: #fff;
|
}
|
}
|
|
.dialog-fade-enter-active .el-dialog.way {
|
animation: anim-open 1.5s;
|
}
|
|
.dialog-fade-leave-active .el-dialog.way {
|
animation: anim-close 1.5s;
|
}
|
|
@keyframes dialog-fade-in {
|
0% {
|
transform: scale(0.1) translate3d(0, 0, 0);
|
opacity: 0;
|
}
|
|
100% {
|
transform: scale(1) translate3d(0, 0, 0);
|
opacity: 1;
|
}
|
}
|
|
@keyframes dialog-fade-out {
|
0% {
|
transform: scale(1) translate3d(0, 0, 0);
|
opacity: 1;
|
}
|
|
100% {
|
transform: scale(0.1) translate3d(0, 0, 0);
|
opacity: 0;
|
}
|
}
|
|
@keyframes anim-open {
|
0% {
|
transform: scale(0.1) translate3d(0, 0%, 0);
|
opacity: 0;
|
}
|
|
100% {
|
transform: scale(1) translate3d(0, 0, 0);
|
opacity: 1;
|
}
|
}
|
|
@keyframes anim-close {
|
0% {
|
transform: scale(1) translate3d(0, 0, 0);
|
opacity: 1;
|
}
|
|
100% {
|
transform: scale(0.1) translate3d(0, 0%, 0);
|
opacity: 0;
|
}
|
}
|