/*控制台侧边导航栏开始*/
:root{
    --sidebar-background-color: rgb(57 126 179 / 95%);
    --sidebar-box-shadow:0 0 2px 2px rgb(0 0 0 / 14%), 0 -2px 3px 1px rgb(0 0 0 / 32%), 0 0px 5px 2px rgb(0 0 0 / 20%);
}
.console{
    display: flex;
}
.console-sidebar{
    margin: 0;
    z-index: 1000;
    padding-left: 0!important;
    padding-right: 0!important;
}
@media screen and (max-width: 768px){
    .console-sidebar{
        position: absolute!important;
    }
}
@media screen and (min-width: 768px){
    .console-sidebar{
        background-color: var(--sidebar-background-color);
        box-shadow: var(--sidebar-box-shadow);
    }
}
.console-sidebar-body .header{
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
.console-sidebar-body{
    overflow: hidden;
    width: 200px;
    left: -200px;
    padding-right: 0;
    position: fixed;
    transition: all 0.2s ease-in-out;
    overflow-y: none;
    z-index: 8500;
}
@media screen and (min-width: 768px){
    .console-sidebar-body{
        width: 200px;
        left: 0;
        position: inherit;
        padding-right: 5px;
        position: sticky;
        top: var(--base-top-nav-height);
    }
}
.console-sidebar-body.active{
    left: 0;
    overflow-y: auto;
    padding-right: 5px;
}
@media screen and (max-width: 768px){
    .console-sidebar-body{
        height: calc(100vh - var(--base-top-nav-height));
    }
    .console-sidebar-body.active{
        background-color: var(--sidebar-background-color);
        box-shadow: var(--sidebar-box-shadow);
    }
}
.console-sidebar-body .category{
    
}
.console-sidebar-body .category>a{
    color: #fff;
    display: block;
    line-height: 1.2;
    text-decoration: none;
    margin-bottom: .1rem;
    font-size: 1rem;
    transition: all .1s;
    position: relative;
    padding: 1rem 0.5rem 1rem 3.5rem;
}

.console-sidebar-body .category.active>a,
.console-sidebar-body .category .menu .item.active,
.console-sidebar-body .category>a:hover{
    background-color: #dbdbdb52;
}
.console-sidebar-body .category>a:before{
    position: absolute;
    left: 1rem;
}
.console-sidebar-body .category>a.bi:before{
    font-size: 1.4rem;
}
.console-sidebar-body .category>a>i{
    position: absolute;
    right: 1rem;
}
.console-sidebar-body .category .fa-angle-up{
    transition: all 0.2s ease-in-out;
}
.console-sidebar-body .category.active .fa-angle-up {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.console-sidebar-body .category .menu{
    display: none;
}
.console-sidebar-body .category .menu a{
    font-size: 0.9rem;
    display: block;
    color: #fff;
    text-decoration: none;
    position: relative;
    margin: 0rem 0rem .1rem 3rem;
    padding: .7rem 0;
    white-space: nowrap;
    transition: all .1s;
    border-left: 4px solid rgba(255,255,255,0);
}
.console-sidebar-body .category .menu .item:hover{
    font-size: 1.2rem;
    background-color: #dbdbdb52;
}
.console-sidebar-body .category .menu.show{
    display: block;
}
.console-body{
    margin: 0;
    overflow: auto;
    padding-left: 0!important;
    padding-right: 0!important;
}
@media screen and (max-width: 768px){
    .dark-mask{
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 1001;
        background-color: rgba(0,0,0,.6);
        left: 0;
        top: 0;
    }
}
/*控制台侧边导航栏结束*/