.menu{
    width: 100%;
    height: 60px;
    /* position: fixed;
    top: 0;
    z-index: 99; */
}
.navmenu{
    width: 100%;
    height: 60px;
    background-color: #0B172B;
    position: fixed;
    top: 0px;
    z-index: 10;
}
.navmenu-con{
    width: 1200px;
}
.navmenu-l img{
    width: 166px;
    height: 50px;
}
.navmenu-item{
    font-size: 16px;
    font-weight: 500;
    height: 60px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: .3s;

}
.navmenu-item:hover{
    background-color: #244392;
}
.navmenu-item-this{
    min-width: 120px;
    background: linear-gradient(180deg, #255FF3 0%, #2678FF 100%);
}
.navmenu-item img{
    width: 30px;
    height: 30px;
    /* margin-left: 45px; */
}
.navmenu-user{
    cursor: pointer;
    transition: .3s;
}
.navmenu-item-user{
    width: 162px;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FCD726;
    line-height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    
}
.navmenu-item-user img{
    width: 24px;
    height: 24px;
    margin-right: 6px;
}
/* .navmenu-user:hover{
    opacity: 0.6;
} */
.drawer{
    width: 100%;
    height: 300px;
    background: #256AF8;
    opacity: 0.95;
    transition: .3s;
    position: fixed;
    top: 60px;
    z-index: 9;
    color: #ffffff;
    display: flex;
    justify-content: center;
}
.drawer-content{
    width: 1200px;
    display: flex;
    justify-content: center;
}
.drawer-close{
    transform: translateY(calc(-100%));
    transition: all .3s ease;
}
.drawer-open{
    transform: translateY(0px);
}
.drawer-title{
    width: 120px;
    font-size: 20px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 52px;
    border-bottom: 1px solid #FFFFFF;
    padding-top:20px;
    margin-bottom:10px;
}
.drawer-l{
    margin-left:120px
}
.drawer-r{
    margin-left:80px
}
.drawer-item{
    height: 30px;
    font-size: 14px;
    font-family: pht;
    font-weight: 400;
    color: #f5f5f5;
    line-height: 30px;
}
.drawer-item-this{
    color: #ffffff;
    font-weight: 500;
    text-decoration:underline;
}
.drawer-item:hover{
    text-decoration: underline;
}