header .header-top{
    background-color : #e68247;
    color : #fff;
    display : none;
}

header .header-top > div{
    display : flex;
    align-items: center;
    justify-content : flex-end;
    gap : 20px;
    height : 40px;
}


header .header-middle{
    display : flex;
    align-items: center;
    justify-content: space-between;
    height : 80px;
    background-color : rgba(255,255,255,0.5);
    position : fixed;
    top : 0;
    left : 0;
    width : 100%;
    z-index: 5;
}

header .header-middle .wrap{
    display : flex;
    align-items : center;
    justify-content : space-between;
    height: 100%;
}

header .header-middle .logo-wrap{
    height : 40px;
}

header .header-middle .logo-wrap img{
    width : auto;
    height : 100%;
}

header .header-middle .nav-wrap,
header .header-middle .nav-wrap nav,
header .header-middle .nav-wrap nav *{
    height : 100%;
}

header .header-middle .nav-wrap nav > ul{
    display : flex;
    align-items: center;
    justify-content : flex-end;
    gap : 20px;
    font-weight: 700;
    font-size : 1.4em;
}

header .header-middle .nav-wrap nav > ul li{
    position : relative;
    width : 100px;
}

header .header-middle .nav-wrap nav > ul li > a{
    display : flex;
    align-items: center;
    justify-content : center;
}

header .header-middle .sub-nav-wrap{
    background-color: rgba(255,255,255,0.8);
    width : 100%;
    height : 0;
    text-align : center;
    position  :absolute;
    top : 100%;
    left : 0;
    font-weight : 500;
    transition : 0.5s;
    overflow : hidden;
}
header .header-middle .nav-wrap:hover .sub-nav-wrap{
    display : block;
    height : 270px;
    padding : 10px 0;
}

header .header-middle .nav-wrap .sub-nav-wrap .wrap{
    display : flex;
    align-items: flex-start;
    justify-content : flex-end;
    gap : 20px;
}

header .header-middle .nav-wrap:hover .sub-nav-wrap .wrap{
    display : flex;
}

header .header-middle .nav-wrap .sub-nav-wrap li{
    margin : 10px 0;
    font-size : 1.2em;
    width : 100px;
}

header .menu-wrap{
    display : none;
}

.m-nav-wrap{
    position : fixed;
    top : 0;
    right : -100%;
    width : 300px;
    height : 100vh;
    background-color : #fff;
    z-index : 2;    
    transition : right 0.2s;
}

.m-nav-wrap > ul{
    padding : 0 20px;
}

.m-nav-wrap > ul > li{
    height : 60px; 
    border-bottom : 1px solid #eee;
}

.m-nav-wrap > ul > li > a{
    display : flex;
    align-items: center;
    justify-content: flex-start;
    padding : 0 10px;
    font-size : 20px;
}

.m-nav-wrap .btn-close-wrap{
    height : 50px;
    display : flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
}

@media screen and (max-width : 1200px){
    header .header-middle .wrap{
        width : 90%;
    }

    header .menu-wrap{
        display : block;
    }

    header .nav-wrap{
        display : none;
    }

    header .header-middle .logo-wrap{
        height : 30px;
    }

    header .header-middle{
        position : sticky;
    }

    .m-nav-wrap.on{
        display : block;
        right :0;
    }
}