header {
  width: 100%;
  height: .8rem;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
}

.headBox {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headLogo {
  width: 2.8rem;
}

.headR {
  height: 100%;
  display: flex;
  align-items: center;
}

.headNav {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: .5rem;
  position: relative;
}

.headNav::after {
  content: '';
  width: 0;
  height: 0.03rem;
  background: #0A2F60;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
}

.headNav:hover::after,
.headNav.active::after {
  width: 100%;
}

.headNav .navOne {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
}

.headNav:hover .navOne,
.headNav.active .navOne {
  font-weight: bold;
  font-size: 0.18rem;
  color: #0A2F60;
}

.navTwoBox {
  position: fixed;
  left: 0;
  top: .8rem;
  width: 100%;
  height: 4.36rem;
  background-color: #fff;
  background-image: url(../img/header/navBack.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
  display: none;
}

.navTwoBC {
  width: 12.2rem;
  margin: 0 auto;
  padding: .5rem 0 .62rem;
  display: flex;
  justify-content: space-between;
}

.navTwoBL{
  width: 5.05rem;
}

.navTwoTit {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.36rem;
  color: #333333;
  margin-bottom: .6rem;
}

.navTwo {
  display: block;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
  padding: 0 .2rem .2rem;
  margin-bottom: .2rem;
  border-bottom: .02rem solid transparent;
  transition: all .3s;
  width: 100%;
  box-sizing: border-box;
}

.navTwo:hover{
  color: #0A2F60;
  border-bottom: .02rem solid #0A2F60;
}

.headSwiper{
  width: 5.26rem;
  height: 3.24rem;
}

.lang {
  margin-left: 1.16rem;
  position: relative;
}

.lang::after {
  content: '';
  width: .01rem;
  height: 0.14rem;
  background: #BBBBBB;
  position: absolute;
  left: -.67rem;
  top: 50%;
  transform: translateY(-50%);
}

.search {
  margin-left: .28rem;
}

.lang img,
.search img {
  width: .2rem;
  height: .2rem;
}