.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: all .2s ease;
    z-index: -1;
}

.drawer * {
    box-sizing: border-box;
}

.drawer.active {
    opacity: 1;
    z-index: 999999999;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 86.933333vw; /* 326 / 375 */
    height: 100vh;
    background: #ffffff;
    transition: all .3s ease;
}

.drawer.active .drawer-content{
    right: 0;
}

.drawer-content .top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; /* 20 / 375 */
}

.drawer-content .top-content .logo {
    width: 21.866667vw; /* 82 / 375 */
    height: 7.466667vw; /* 28 / 375 */
}
.drawer-content .top-content .close {
    width: 4.266667vw; /* 16 / 375 */
    height: 4.266667vw; /* 16 / 375 */
}
.drawer-content .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 3.733333vw; /* 14 / 375 */
    color: #1F1F1F;
    line-height: 4.266667vw; /* 16 / 375 */
    margin-bottom: 8vw; /* 30 / 375 */
    padding: 0 5.333333vw; /* 20 / 375 */
}

.drawer-content .menu-item.mb-10 {
    margin-bottom: 2.666667vw; /* 10 / 375 */
}
.drawer-content .menu-item.mb-20 {
    margin-bottom: 5.333333vw; /* 20 / 375 */
}
.drawer-content .menu-item .pull-icon{
    width: 3.2vw; /* 12 / 375 */
    height: 3.2vw; /* 12 / 375 */
    transition: all .3s ease;
}
.drawer-content .menu-item .pull-icon.active {
    transform: rotate(180deg);
}

.drawer-content .sub-menu {
    width: 76.266667vw; /* 286 / 375 */
    background: #F8FBFF;
    border-radius: 1.066667vw; /* 4 / 375 */
    font-weight: 400;
    font-size: 3.733333vw; /* 14 / 375 */
    color: #1F1F1F;
    line-height: 5.333333vw; /* 20 / 375 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 5.333333vw; /* 20 / 375 */
    margin-bottom: 5.333333vw; /* 20 / 375 */
    height: 0;
    transition: all 0.25s ease;
    overflow: hidden;
}

.drawer-content .sub-menu.active {
    height: 42.666667vw; /* 160 / 375 */
    padding: 5.333333vw 0 5.333333vw 2.666667vw; /* 20 / 375, 10 / 375 */
}

.drawer-content .sub-menu .sub-menu-item {
    margin-bottom: 8vw; /* 30 / 375 */
}

.drawer-content .menu-item.is-init {
    color: #6759FF;
}

.drawer-content .sub-menu .sub-menu-item.active a{
    color: #6759FF;
}
.drawer-content .menu-item.active a{
    color: #6759FF;
}

.drawer-content .sub-menu .sub-menu-item:last-child{
    margin-bottom: 0;
}



.app-menus {
    height: calc(100% - 70px);
    line-height: 48px;
    padding: 0 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.app-menus,
.app-menus a {
    font-size: 14px;
    color: #1F1F1F;
}

.app-menus ul .nLi .sub li a {
    display: block;
    width: 100%;
    height: 100%;
}

.app-menus .nLi.on .sub {
    background-color: #F8FBFF;
    border-radius: 4px;
    padding-left: 10px;
}

.app-menus ul .nLi .sub {
    display: none;
}

.app-menus ul .nLi.on > .sub {
    display: block;
}

.app-menus .sub-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
}

.app-menus .nLi .down-icon {
    width: 16px;
    height: 16px;
    margin-left: 32px;
    transition: .28s;
    transform: rotate(180deg);
}

.app-menus .nLi.on-ing > .sub-title .down-icon,
.app-menus .nLi.on > .sub-title .down-icon {
    transform: rotate(0deg);
}

.app-menus a.active {
    color: #6759FF;
}
