* {
|
box-sizing: border-box;
|
}
|
/*basic end*/
|
::-webkit-scrollbar {
|
/* 滚动条整体样式 */
|
width: 3px;
|
height: 10px;
|
}
|
::-webkit-scrollbar-thumb {
|
/* 滚动条里面小方块 */
|
border-radius: 10px;
|
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
background: #02b0bd;
|
}
|
::-webkit-scrollbar-track {
|
/* 滚动条里面轨道 */
|
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
border-radius: 10px;
|
background: #003d64;
|
}
|
|
.flex-layout--container {
|
display: flex;
|
flex-direction: column;
|
box-sizing: border-box;
|
height: 100%;
|
}
|
.flex-layout--container.row {
|
flex-direction: row;
|
}
|
.flex-layout--body {
|
position: relative;
|
flex: 1;
|
}
|
.flex-layout-absolute {
|
position: absolute;
|
width: 100%;
|
height: 100%;
|
top: 0;
|
left: 0;
|
right: 0;
|
bottom: 0;
|
}
|
.center--container {
|
display: flex;
|
height: 100%;
|
box-sizing: border-box;
|
flex-direction: row;
|
justify-content: center;
|
align-items: center;
|
}
|
|
.el-overlay.high-level-dialog {
|
z-index: 9990 !important;
|
}
|
.el-dialog.center-dialog {
|
background-color: transparent;
|
}
|
.el-dialog.center-dialog .el-dialog__header {
|
padding-top: 8px;
|
padding-bottom: 8px;
|
background-color: #0b388a;
|
margin-right: 0;
|
}
|
.el-dialog.center-dialog .el-dialog__header .el-dialog__title {
|
font-weight: bold;
|
font-size: 14px;
|
color: #ffffff;
|
}
|
|
.el-dialog.center-dialog .el-dialog__body {
|
padding: 0;
|
}
|
|
.el-dialog.center-dialog .el-dialog__header .el-dialog__headerbtn {
|
top: 12px;
|
right: 8px;
|
width: auto;
|
height: auto;
|
}
|