/* nav */
.nav {
    height: 55px;
    border-bottom: 6px solid #16569b;
}

.nav .mid {
    display: flex;
    align-items: center;
    margin: auto;
    width: 1000px;
    height: 100%;
}

.nav .navUl {
    display: flex;
    width: 1000px;
    height: 100%;
}

.nav .navUl>li {
    position: relative;
    height: 100%;
    width: 14.3%;
}

.nav .navUl>li>a {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 55px;
    font-size: 22px;
    font-weight: bold;
    color: #3b3b3b;
    text-align: center;
}

.nav .navUl>li>a.active {
    color: #c90c04;
}

.nav .secondaryNav {
    position: absolute;
    padding: 0px 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #16569b;
    z-index: 20;
    display: none;
}

.nav .secondaryNav a {
    display: block;
    padding: 15px 15px;
    border-bottom: 1px solid #fff;
    color: #fff;
    text-align: center;
}

.nav .secondaryNav li:last-child a {
    border: none;
}