.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 310px;
    background: #E4F2FF;
    z-index: 99;
}

.sidebar-overlay{
    background: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    backdrop-filter: blur(1px);
}

.sidebar-header{
    background: linear-gradient(to bottom,rgba(17, 17, 17, 0.1),rgba(17, 17, 17, 0.1)),url(../assets/img/common/login-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 32px;
    color: #fff;
}

.sidebar-header .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header .head i{
    font-size: 30px;
    line-height: 32px;
    cursor: pointer;
}

.sidebar-header .head .sidebar-logo{
    height: 40px;
}

.sidebar-header .content{
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.sidebar-header .content .icon-profile{
    font-size: 45px;
    margin-right: 12px;
}

.sidebar-header .content .title{
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

.sidebar-header .content .subtitle{
    font-size: 15px;
    line-height: 18px;
}

.sidebar-header .end{
    margin-top: 10px;
    cursor: pointer;
}

.sidebar-header .end span{
    font-size: 14px;
}

.sidebar-inner{
    position: relative;
    /* height: 100%; */
    height: calc(100% - 220px);
}

.sidebar-inner .item{
    border-bottom: 1px solid #E9E9E9;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-size: 12.5px;
    line-height: 14px;
    cursor: pointer;
}

.sidebar-inner .item img{
    height: 26px;
    margin-right: 15px;
}

.sidebar-inner .item i{
    color: #4398ff;
    font-size: 22px;
}

.sidebar .copyright{
    color: #AFAFAF !important;
    padding: 50px 0 20px;
}