header {
  width: 100%;
  height: 0.82rem;
  background: #F7F7F8;
}

header,
.headerWrap {
  position: fixed;
  top: 0;
  z-index: 999;
}

header .main {
  height: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: .53rem;
  padding-left: 1.9rem;
  /* padding-left: 1.18rem; */
}

.headLogo {
  width: fit-content;
  height: .58rem;
  height: .45rem;
  display: flex;
  /* align-items: center;
  gap: .08rem;
  font-weight: 400;
  font-size: 0.29rem;
  color: #16388C; */
}

.headLogo img {
  /* width: 1.14rem; */
  height: .58rem;
  height: .45rem;
}

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

.headNav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.navItem {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.navItem:last-child .navBox{
    display: none !important;
}

.navItem::before,
.navItem::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #16388C;
  opacity: 0;
  transition: all .3s;
}

.navItem::before {
  bottom: 0;
  width: 0;
  height: .01rem;
}

.navItem::after {
  bottom: -.02rem;
  width: .05rem;
  height: .05rem;
  border-radius: 50%;
}

.navItem:hover::before,
.navItem.act::before {
  width: 100%;
  opacity: 1;
}

.navItem:hover::after,
.navItem.act::after {
  opacity: 1;
}

.navItem a {
  font-weight: 400;
  font-size: 0.16rem;
  color: #8B8B8B;
}

.navBox {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 8rem;
  width: fit-content;
  display: flex;
  background: rgba(0, 72, 157, .88);
  padding: .15rem;
  display: none;
  border-radius: 0 0 .05rem .05rem;
}

.navBox .flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navBox a {
  font-size: .15rem;
  padding: 0 .2rem;
  line-height: .45rem;
  display: block;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.other {
  width: 2.91rem;
  width: 2.2rem;
  height: 0.82rem;
  background: #173993;
  display: flex;
  align-items: flex-end;
  padding-left: .31rem;
  padding-bottom: .23rem;
  gap: .21rem;
}

.navItem:hover>a{
    background: linear-gradient(45deg, #173993, #8fd169);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.navBox a:hover{
    font-weight: 600;
}

.other>div{
    position: relative;
}

.other>div:hover .tel-box{
    display: block;
}

.other>div:hover .code-box{
    display: block;
}

.other .code-box{
    position: absolute;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    top: 110%;
    padding:5px;
    background: #fff;
    display: none;
}

.other .code-box>img{
    width: 100%;
    height: auto;
    display: block;
}

.tel-box{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: #173993;
    padding:10px;
     font-size: .18rem;
     color: #fff;
     display: none;
}

.other img {
  height: .24rem;
  height: .2rem;
}

.other .lang {
  padding-left: .05rem;
  font-weight: 400;
  font-size: 0.15rem;
  font-size: .2rem;
  color: #F7F7F8;
}

.other .lang img {
  width: .17rem;
  width: .15rem;
  height: .09rem;
  margin-left: 0.05rem;
}