.header-container{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
.nav-item{
    cursor: pointer;
    /*width: 0.89rem;*/
    margin-right: 0.6rem;
    text-align: center;
    font-size: 0.16rem;
    position: relative;
    font-weight: bold;
    color: #333 !important;
}
.nav-item a:first-child{
    color: #333
}
.nav-item-active{
    color: #FF5860 !important;
}
.header-logo{
    width: 3.1rem;
}
.header-icon{
    width: 0.25rem;
    margin-left: 0.1rem;
    margin-right: 0.05rem;
}
.header-right{
    padding: 0.1rem;
    position: relative;
    overflow: hidden;
    color:#333;
    font-weight: bold;
}
.header-right:hover{
    color: #333;
}
.header-right-icon::before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    transform-origin: 0 100%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: skew(-20deg);
    z-index: -1;
}
.header-bg{
    background-color: #fff;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.header-bg .nav-item{
    color: #333;
}
.header-bg .header-right a{
    color: #333;
    padding: 0;
}

.nav-second{
    position: absolute;
    left: -0.2rem;
    top: 0.3rem;
    background-color: #f9f9f9;
    width: 1.7rem;
    box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.1);
    font-weight: normal;
    border-bottom-left-radius: 0.1rem;
    border-bottom-right-radius: 0.1rem;
}
.nav-second div{
    height: 0;
    color: #1F1F22;
    overflow: hidden;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.nav-second a{
    color: #1F1F22;
}
.nav-item:hover{
    color: #FF5860;
}
.nav-item:hover .nav-second{
    padding: 0.2rem 0;
}
.nav-item:hover .nav-second div{
    height: 0.3rem;
    line-height: 0.3rem;
}

.nav-second a{
    position: relative;
}
.nav-second a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FF5860;
    transition: 0.2s;
    left: 0;
    bottom: -4px;
}
.nav-second div:hover{
    color: #FF5860;
}
.nav-second a:hover{
    color: #FF5860;
}
.nav-second a:hover::after{
    width: 100%;
}
.nav-second-active{
    color: #FF5860 !important;
}

.nav-item i{
    font-size: 0.12rem;
    margin-left: 0.05rem;
}
.header-container-mobi{
    position: fixed;
    top: 0;
    width: 100%;
    height: 0.6rem;
    justify-content: space-between;
    background-color: #fff;
    z-index: 1000;
    align-items: center;
    font-size: 0.2rem;
    display: none;
}
.header-logo-mobi{
    height: 0.3rem;
    margin-left: 0.1rem;
    width: auto;
}
.left-nav{
    position: fixed;
    z-index: 1001;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: 0.2s;
    background-color: #fff;
    font-size: 0.25rem;
}
.left-item{
    padding: 0 5%;
    line-height: 0.6rem;
    border-bottom: 1px solid #f1f1f1;
}
.left-item i{
    float: right;
}
.left-item-second{
    display: none;
    line-height: 0.4rem;
    font-size: 0.18rem;
    padding: 0.12rem 0 0.12rem 0.2rem;
    background-color: #f1f1f1;
}
.left-nav .left-item-second-active{
    color: #FF5860;
}
#openLeft img{
    width: 0.35rem;
}
.header-width{
    width: 92%
}
@media screen and (max-width:1200px){
    .header-width{
        width: 98% !important
    }
}
@media screen and (max-width:960px) {
    .header-container-mobi{
        display: flex;
    }
    .header-container{
        display: none;
    }
    #openLeft{
        margin-right: 0.2rem;
    }
}