
.headContainer{
    font-size: 14px;
    height: 80px;
    width: 100%;
    display: flex;
    background-color: #272727;
    align-items: center;
    /*padding: 0 70px;*/
    padding-left: 70px;
    position: fixed;
}
.header-left{
    width: 20%;
}
.navContainer{
    height: 100%;
    width: 80%;
}
.navList{
    height: 100%;
    display: flex;
    box-sizing: border-box;
}
.navItem {
    height: 79px;
    width: 16%;
    position: relative;
    line-height: 80px;
}
.navnochild{
    width: 12%;
}
.navItem:hover {
    box-sizing: border-box;
    background-color: #464646;
    border-bottom: 2px solid #fac300;
}
.navItem:hover a{
    text-decoration: none;
}
.navItem .navItemBar {
    padding-left: 0px;
    padding-right: 0px;
    color: #ffffff;
    text-align: center;
    display: block;
    font-size: 14px;
}
.navItem ul.navSon {
    background-color: #272727;
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    display: none;
}
.navItem ul.navSonShow{
    display: block;
}

 .navSon li{
      display: block;
      /*padding: 0 12px;*/
      text-align: center;
      height: 40px;
      line-height: 40px;
  }
.navSon li:hover{
    background-color: #464646;
    border-bottom: 2px solid #fac300;
}
.navSon li:hover a{
    color: #fff;
    text-decoration: none;
}