/* logo */
.logo {
    overflow: hidden;
    position: relative;
    height: 36px;
    width: 192px;
    z-index: 99999999;
}

.logo a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.logo a img {
    width: 100%;
    height: 36px;
    max-width: 192px;
}

/* 导航 */
#header {
    z-index: 9999;
}

.commonHeader {
    position: relative;
    z-index: 9999;
    height: 104px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.5);
}

.head-active {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #fff;
    -moz-box-shadow: 0px 2px 5px #888888;
    /* 老的 Firefox */
    box-shadow: 0px 2px 28px 0px rgba(0, 0, 0, 0.07);
}

.threeNavLeft>li>a,
.threeNavRight>li>a {
    font-size: 16px;
}

.commonWraps {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

#commonNav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* 一级菜单 */
ul.headerNav {
    display: inline-flex;
    position: inherit;
    z-index: 9999;
}

li.headerNav-item {
    margin-right: 48px;
}

li.headerNav-item:last-child{
    margin-right: 10px;
}

li.headerNav-item>a {
    display: block;
    text-align: center;
    line-height: 104px;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    position: relative;
}

li.headerNav-item>a::before {
    display: none;
    content: '';
    position: absolute;
    bottom: 27px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    width: 30px;
    /* transform: skewX(40deg); */
    background-color: #0066cc;
}

li.headerNav-item:hover>a,
li.headerNav-item.active>a {
    color: #1468CA;
}

li.headerNav-item:hover>a::before,
li.headerNav-item.active>a::before {
    display: block;
}

/* 二级菜单 */
.headerSubMenu {
    display: none;
    width: 144px;
    padding-top: 24px;
    background: #FFFFFF;
    border-radius: 0px 0px 8px 8px;
    background: #FFFFFF;
}

.headerSubMenu1{
    position: absolute;
    top: 106px;
    left: 482px;
    z-index: -1;
}

.headerSubMenu2{
    position: absolute;
    top: 106px;
    left: 602px;
    z-index: -1;
}

.headerSubMenu>ul>li>a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 18px;
    text-align: center;
    padding-bottom: 24px;
} 

.headerSubMenu>ul>li>a:hover {
    color: #1468CA
}
