@charset "UTF-8";
.nav-height {
    position: relative;
    height: 50px
}

.nav-box {
    width: auto;
    height: 50px;
    margin: 0 auto;
    background: #fff
}

.nav-box.navFix {
    position: fixed;
    top: 0;
    left: 50%;
    margin-left: -600px;
    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: 910px;
    display: block
}

.nav-box.navFix ul {
    border-bottom: 0
}

.nav-box li {
    display: inline-block;
    width: 20%;
    text-align: left;
    height: 50px;
    line-height: 50px;
    float: left;
    text-align: center;
    position: relative
}

.nav-box li a {
    display: block;
    padding: 0 20px;
    font-size: 20px;
    color: #333;
    text-decoration: none
}

.nav-box li a:before {
    content: " ";
    width: 1px;
    height: 24px;
    border-right: 1px solid rgb(5, 159, 235);
    position: absolute;
    top: 16px;
    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: rgb(5, 159, 235);
}

.nav-box li a.active {
    color: #fff;
    background: rgb(5, 159, 235);
}

.nav-mobile {
    display: none;
    font-weight: 700;
    width: 100%
}