@charset "UTF-8";
.nav-height {
    position: relative;
    height: 2rem;
    margin-top: 10px;
    z-index: 1000000;
}
.nav-box {
    width: auto;
    height: 2rem;
    margin: 0 auto;
    background: #fff;
}
.nav-box.navFix {
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    border-bottom: 1px solid #e3e3e3;
    z-index: 99999
}
.nav-box ul {
    padding: 0;
    margin: 0 auto;
    width: auto;
    display: block
}
.nav-box.navFix ul {
    border-bottom: 0
}
.nav-box li {
    display: inline-block;
    width: 20%;
    height: 2rem;
    line-height: 2rem;
    float: left;
    text-align: center;
    position: relative
}
.nav-box li a {
    display: block;
    padding: 0 .3rem;
    font-size: 0.8rem;
    color: #333;
    text-decoration: none
}
.nav-box li a:before {
    content: " ";
    width: 1px;
    height: 24px;
    border-right: 1px solid #fd7000;
    position: absolute;
    top: 0.3rem;
    left: -2px
}
.nav-box li a.active:before {
    content: " ";
    width: 0;
    border: 0
}
.nav-box li:first-child a:before {
    content: " ";
    width: 0;
    border: 0
}
.nav-box li a:hover {
    color: #fd7000;
}
.nav-box li a.active {
    color: #fff;
    background: #fd7000;
}
.nav-mobile {
    display: none;
    font-weight: 700;
    width: 100%
}





