.headerLogo {
    width: 100%;
    height: 40px;
    background: #D9D9D9;
}
.headerLogoContent {
    display: flex;
    height: 100%;
    align-items: center;
    color: #4D4D4D;
}
.navMenu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background: #00AB8E;
}
.navContent {
    width: 1200px;
    height: 120px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navContent .logo {
    display: flex;
    align-items: center;
}
.navContent .logo img {width: 431px;height: 63px;}
.navContentText {
    font-family: 'lixukexingshu';
    font-size: 30px;
    color: #FFFFFF;
    opacity: 0.5;
    margin-left: 30px;
}
.navContent .navSearch {
    width: 200px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    position: relative;
    color: #707070;
}
.navContent .navSearch .iconfont {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-45%);
    font-size: 30px;
}
.navContent .navSearch input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    text-indent: 45px;
    color: #707070;
}
/* 菜单 */

.menu {
    width: 100%;
    height: 50px;
    background: #1E7A6A;
}
.menu .menuList {
    width: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}
.menu .menuList li {
    width: 110px;
    height: 50px;
    margin-right: 26px;
    text-align: center;
    line-height: 50px;
    position: relative;
    cursor: pointer;
}
.menu .menuList li:last-child{margin-right: 0}
.menu .menuList li a{
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    display: block;
}
.menu .menuList li:hover {background: #FFFFFF;}
.menu .menuList li:hover a {color: #00AB8E;}
.menu .menuList li.active {background: #FFFFFF;}
.menu .menuList li.active a {color: #00AB8E;}
/* 下拉菜单 */
.menu .menuList li .nav_down {
    width: 150px;
    height: 0;
    overflow: hidden;
    background: #1E7A6A;
    position: absolute;
    left: -30px;
    top: 60px;
    transition: all .3s ease-in;
}
.menu .menuList li .nav_down p a {
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: #FFFFFF;
}
.menu .menuList li .nav_down p a:hover {background: #FFFFFF;color: #00AB8E}
.menu .menuList li .nav_down p.active a {background: #FFFFFF; color: #00AB8E}
