/*公共样式*/
body{
    opacity: 0;
    animation: page-fade-in 0.8s forwards;
}

@keyframes page-fade-in {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes page-scale-up {
    0% {
        opacity: 0;
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes page-scale-down {
    0% {
        opacity: 0;
        transform: scale(1.8)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}
@keyframes page-slide-top {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}
@keyframes page-slide-bottom {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes page-slide-left {
    0% {
        opacity: 0;
        transform: translateX(-100%)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.overflow{}
.font-sm
{
    font-size: 16px;
    --fontSize10: 12px;
    --fontSize14: 14px;
}
.font-md
{
    font-size: 18px;
    --fontSize10: 14px;
    --fontSize14: 16px;
}
.font-lg
{
    font-size: 20px;
    --fontSize10: 16px;
    --fontSize14: 18px;
}

.el-form-item__label{
    font-size: var(--fontSize14);
}
.el-table{
    font-size: var(--fontSize14);
}

.w50 {
    width: 50%;
}

.w25 {
    width: 25%;
}

.w20 {
    width: 20%;
}

.w33 {
    width: 33.333333%;
}

::-webkit-scrollbar {
    width: 8px;
}

/*// 滚动条的滑块*/
::-webkit-scrollbar-thumb {
    background-color: rgba(144, 147, 153, .3);
    border-radius: 3px;
}::-webkit-scrollbar-thumb:hover {
    background-color: rgba(144, 147, 153, .5);
    border-radius: 3px;
}

/* 整体样式 */
.el-table__body-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* 滚动条 */
.el-table__body-wrapper::-webkit-scrollbar-thumb {
    /*background-color: #5cbb95;*/
    background-color: rgba(144, 147, 153, .3);
    border-radius: 6px;
}

/* 滚动条鼠标经过样式 */
.el-table__body-wrapper::-webkit-scrollbar-thumb:hover {
    /*background-color: #23B480;*/
    background-color: rgba(144, 147, 153, .5);
    border-radius: 8px;
}

/* 滚动条轨道 */
.el-table__body-wrapper::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 5px rgba(249, 249, 249, 0.2);
    border-radius: 10px;
    background: #F9F9F9
}
.el-dialog{
    min-width: 375px;
}
#title {
    height: 65px;
    width: 100%;
    text-align: center;
    padding: 0 0 2px 0;
    font-size: 20px;
    background: #23B480;
    color: #FFFFFF;
}
body{
    color: #212423
}

.navigationBar {
    /*display: flex;*/
    /*justify-content: center;*/
}

.content {
    max-width: 1440px;
    width: 100%;
    margin: 20px auto;
}

.nav {
    line-height: 0;
    width: 50%;
    border: none;
}

/*首页*/

.info {
    margin: 10px;
    background-color: #FFF;
    border-radius: 10px;
    padding-bottom: 1px;
}

.info-user {
    display: flex;
    justify-content: space-between;
    padding: 13px 13px 25px 3px;
}

.info-user-name {
    margin: 3px 0 0 8px;
}

.info-leave {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}
.info-leave-type {
    line-height: 35px;
    height: 70px;
    width: 30%;
    text-align: center;
    /*border-right: 1px solid #D9D9D9;*/
}
.info-leave-type-border{
    height: 70px;
    background: #000;
    border-right: 1px solid #D9D9D9;
}

.info-leave-type-font {
    color: #BFBFBF;
    margin-top: 5px;
}

.info-leave-ot {
    display: flex;
    justify-content: space-between;
    margin: 10px 8px 15px 8px;
    padding:  7px 13px 12px 13px ;
    border: 1px solid #ebeef5;
    border-radius: 10px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    align-items: center;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    /*width: 100%;*/
}
.menu-col{
    padding-bottom: 100%;
    position: relative;
    margin:  10px 0;
}
.menu-item {
    position: absolute;
    top: 0;
    background: #FFFFFF;
    border-radius: 10px;
    /*height: 192px;*/
    /*width: 216px;*/
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    background: #F9F9F9;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-icon img{
    width: 30px;
    height: 30px;
}
.mobile-notice{
    display: none;
}
.header{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header-logo{
    width: 200px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -30px;
}
@media only screen and (max-width: 576px){
    .header-logo{
        width: 160px;
        margin-top: -25px;
    }
    .menu-icon {
        height: 55px;
        width: 55px;
        line-height: 55px;
    }
    .menu-icon img{
        width: 20px;
        height: 20px;
    }
    .mobile-notice{
        display: block;
    }
    .pc-notice{
        display: none;
    }
}

.approval {
    color: #FFFFFF;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
    background: #23B480;
    padding: 2px 20px;
    box-shadow: 0px 10px 10px 0px rgba(35,180,128,0.2);
    border-radius: 0px 10px 0px 10px;
}

.menu-ul {
    margin: 30px 0 0 10px;
}

.menu-ul-item{
    background: #FFFFFF;
    border-radius: 10px;
    height: 96px;
    width: 108px;
    margin: 10px;
    text-align: center;
}

.menu-ul-icon {
    position: relative;
    top: 12%;
    left: 31%;
    line-height: 44px;
    height: 44px;
    background: #F9F9F9;
    width: 44px;
    border-radius: 10px;
}

.ul-approval {
    color: #FFFFFF;
    font-size: 12px;
    float: right;
    /*position: relative;*/
    /*right: -70%;*/
    /*top: 0;*/
    width: 30px;
    height: 20px;
    line-height: 20px;
    background: #23B480;
    box-shadow: 0px 5px 5px 0px rgba(35,180,128,0.2);
    border-radius: 0px 9px 0px 10px;
}
.ul-approval-select {
    color: #212423;
    font-size: 12px;
    float: right;
    width: 30px;
    height: 20px;
    background: #ffffff;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0px 9px 0px 10px;
}

a {
    text-decoration: none;
    color: #FFF;
    font-size: 20px;
}

/*部門管理*/
.dep-card-head {
    /*width: calc(100% - 20px);*/
    height: 50px;
    background: #23B480;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    line-height: 50px;
    padding: 0px 10px;
    color: #FFF;
}

.dep-item {
    height: 58px;
    line-height: 58px;
    border-radius: 4px;
    width: 80%;
    margin: 2px auto 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.img-popover {
    width: 100px;
    height: 140px;
    margin-right: 10px;
}

div#img:hover .img-popover {
    border: none;
    opacity: 0.2;
    background: rgba(0, 0, 0, 0.7);
}

.img-css div {
    float: none;
}

.img-icon {
    position: relative;
    top: -110px;
    left: 30px;
    opacity: 0
}

div#img:hover .img-icon {
    opacity: 1
}

/*时间选择框 宽度*/
.el-date-editor.el-input, .el-date-editor.el-input__inner {
    width: 170px;
}
