:root {
    --one-diy-color-0: #53a8ff;
    --one-diy-color-1: #66b1ff;
    --one-diy-color-2: #79bbff;
    --one-diy-color-3: #8cc5ff;
    --one-diy-color-4: #a0cfff;
    --one-diy-color-5: #b3d8ff;
    --one-diy-color-6: #c6e2ff;
    --one-diy-color-7: #d9ecff;
    --one-diy-color-8: #ecf5ff;
}

[v-clock] {
    display: none;
}

/* 加载动画开始 */
.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    z-index: 99999;
}

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 10px;
}

.spinner>div {
    background-color: #53a8ff;
    background-color: var(--one-diy-color-0);
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/* 加载动画结束 */
body {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

label {
    font-weight: 700;
}

html {
    height: 100%;
    box-sizing: border-box;
}

#nprogress .bar {
    background: green !important;
}

#app,
html {
    height: 100%
}

#app .warp {
    width: 100vw;
    height: 100vh;
    min-width: 1004;
}

#app .el-container {
    height: 100vh;
}

#app .slider_container {
    width: 160px;
}

.warp .aside-copyright {
    background-color: #ecf5ff;
    color: #FFF;
    height: 30px;
    font-size: 10px;
}

.warp .el-aside .header {
    width: 160px
}

.warp .header {
    height: 60px;
    color: #fff;
    background-color: var(--one-diy-color-2);
}

.warp .header .logo {
    width: 160px;
    height: 60px;
    background-color: var(--one-diy-color-0);
}

.el-menu {
    border-right: 0px;
    width: 160px !important;
}

/* 布局页左菜单 */
aside .el-scrollbar {
    height: calc(100vh - 90px);
    background-color: #fff;
}

aside .el-scrollbar__bar.is-horizontal {
    display: none;
}

aside .el-scrollbar__view {
    height: 100%;
}

aside .el-scrollbar__wrap {
    overflow-y: auto;
    overflow-x: hidden;
}

/* 收缩宽度开始 */
.warp .collapse .slider_container {
    width: 60px !important;
}

.warp .collapse .header .logo {
    width: 60px !important;
}

.warp .collapse .el-aside .header {
    width: 60px !important
}

.warp .collapse .el-menu {
    width: 60px !important;
}

/* 收缩宽度结束 */

/* 布局页容器 */
.warp .right-view {
    margin: 5px;
    height: calc(100vh - 70px);
    background: #fff;
    overflow: scroll;
    overflow-x: hidden;
}

.warp .right-view .router-tab__container {
    padding: 5px;
}

/* 组件页容器 */
.warp .main-content {
    margin: 5px;
}

/* 全屏图标 */
.router-tab__header .full-screen-box {
    font-size: 20px;
    color: var(--one-diy-color-0);
    cursor: pointer;
    width:40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-left: 1px solid #eaecef;
    border-top: 1px solid #eaecef;
}

.el-button.tool{
    padding: 7px!important;
}
.avue-form-tool-box,.avue-crud__menu{
    padding-bottom: 5px;
    margin-bottom:5px ;
    border-bottom: 1px solid #e3e3e3;
    min-height: 30px!important;
}

/* element表格高度不齐*/
.el-table__fixed{
    height: 100% !important;
}