/* 顶部导航 */
.header-wrap {
    width: 100%;
    height: 2rem;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    transition: all .365s;
    background: #fff;
    box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.16);
    /* overflow: hidden; */
}

.headerHide {
    height: 0;
    overflow: hidden;
}

.headerBg {
    background: rgba(255, 255, 255, 1);
}

.indexHeaderBg {
    background: rgba(255, 255, 255, 1);
}

.header-box {
    width: 16rem;
    height: 100%;
    margin: 0 auto;
}

.header-logo {
    height: 1.2rem;
    padding-top: .2rem;
}

.header-logo img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}

.header-nav-box {
    height: .8rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.header-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;

}

.header-menu-a {
    height: 100%;
    padding: 0 0.28rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all .365s; */

    font-size: 0.18rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}

.header-menu:hover .header-menu-a {
    /* color: #FF7E00; */
}

.header-menu .active,
.header-nav-active {
    /* color: #FF7E00; */
    position: relative;
}

/* .header-nav-active::after {
    content: '';
    width: 0.7rem;
    height: 0.02rem;
    background: #10C8DE;
    border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all .365s;
} */

/* .header-first:hover::after {
    width: 100%;
} */

.header-first:hover .header-level-box {
    height: auto;
    /* display: block; */
    opacity: 1;
    top: 100%;
    transition: all .365s;
}

.header-level-box {
    position: absolute;
    height: 0;
    opacity: 0;
    overflow: hidden;
    top: 0.7rem;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
    min-width: 100%;
    box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.1);
    transition: all .365s;
    border-radius: 0 0 0.05rem 0.05rem;
    background: #fff;
}

.header-level {
    /* width: 1.92rem; */
    padding: 0.1rem 0.25rem;
    white-space: nowrap;
    min-height: 0.5rem;
    transition: all .2s;
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.6); */

    font-size: 0.14rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    line-height: 0.19rem;
    color: #707070;
    text-align: center;
}

.header-level:hover {
    color: #CB1B1D;
    /* background: #10C8DE; */
}

.header-level-active {
    position: relative;
    color: #CB1B1D;
    /* background: #10C8DE; */
}

/*  */
.header-icon-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.header-icon {
    width: .4rem;
    height: .4rem;
    margin-left: .15rem;
}

.header-icon img{
    width: .4rem;
    height: .4rem;
}