.header {
    width: 100%;
    height: 0.9rem;
    background: #16202E;
    box-shadow: 0rem 0.04rem 0.1rem 0.01rem rgba(36, 44, 94, 0.1);
}
.header .main{
    display: flex;
    justify-content: space-between;
}
.header .head_fl{
    display: flex;
    align-items: center;
}
.head_logo {
    width: 0.7rem;
    height: 0.7rem;
    margin-right: 0.71rem;
}
.head_logo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.nav_list{
    display: flex;
}
.nav_list .nav_li a{
    width: auto;
    height: 100%;
    display: block;
    line-height: 0.9rem;
    font-weight: normal;
    font-size: 0.16rem;
    color: #FFFFFF;
    margin-right: 0.68rem;
    position: relative;
}
.nav_list .nav_li a::before{
    position: absolute;
    content: "";
    width: 0;
    height: 0.01rem;
    background: #C18124;
    left: 50%;
    top: 0.66rem;
    transform: translateX(-50%);
    transition:width .5s;
	-moz-transition:width .5s;
	-webkit-transition:width .5s;
	-o-transition:width .5s;
}
.nav_list .nav_li.act a::before{
    width: 0.5rem;
}
.nav_list .nav_li a:hover::before{
    width: 0.5rem;
}

.head_fr{
    height: 0.9rem;
    display: flex;
    align-items: center;
}
.head_fr a{
    font-weight: normal;
    font-size: 0.16rem;
    color: rgba(255,255,255,0.5);
    display: block;
    height: auto;
    white-space: nowrap;
    margin-left: 0.15rem;
    position: relative;
}

.head_fr .head_wei{
    display: flex;
    align-items: center;
}


.head_fr .denglu:before{
    position: absolute;
    width: 0.01rem;
    height: 0.16rem;
    background-color: rgba(255,255,255,0.32);
    content: "";
    top: 0.04rem;
    left: 0.39rem;
}
.head_fr a:hover{
    color: rgba(255,255,255,1);
}
.head_fr a img{
    width: 0.3rem;
    height: auto;
    margin:0 auto;
    display: block;
}
.head_fr .head_wei img{
    margin-right: 0.06rem;
}

.header .head_fr .head_exit {
    display: flex;
    font-weight: normal;
    font-size: 0.16rem;
    color: #fff;
    margin-right: 0.15rem;
}

.header .head_fr .head_exit b {
    color: #F2A467;
    font-weight: normal;
    font-size: 0.16rem;
    margin-left: 0.1rem;
}





.web_header{
    display: none;
}
@media only screen and (max-width: 1024px) {
    .header{
        display: none;
    }
    .web_header{
        width: 100%;
        height: 0.91rem;
        background: #16202E;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0.2rem 0 0.43rem;
        box-sizing: border-box;
    }
    .web_header .web_user{
        width: 0.33rem;
        height: 0.33rem;
    }
    .web_header .web_logo{
        max-width: 3.3rem;
        max-height: 0.62rem;
    }
    .web_header .head_web{
        width: 0.44rem;
        height: 0.44rem;
    }
    .web_header img{
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }



    .web_navlist{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        overflow: hidden;
    }
    .web_navlist.act{
        display: block;
    }
    .web_list{
        width: 5.1rem;
        height: 100%;
        background: #000;
        position: absolute;
        left: -100%;
        transition:left .5s;
        -moz-transition:left .5s;
        -webkit-transition:left .5s;
        -o-transition:left .5s;
    }
    .web_navlist.act .web_list{
        left: 0;
    }
    .web_navlist .head_close{
        width: 0.3rem;
        height: 0.3rem;
        margin-top: 0.34rem;
        margin-left: 0.32rem;
        margin-bottom: 0.84rem;
    }
    .web_navlist .head_close img{
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
    .web_navlist .nav_li{
        width: 100%;
        font-size: 0.36rem;
        color: #FFFFFF;
        margin-bottom: 0.72rem;
        padding-left: 0.49rem;
    }
    .web_navlist .nav_li a{
        width: fit-content;
        height: auto;
    }
}









