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

header {
  width: 100%;
  height: 1.2rem;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

header.active{
    background: rgba(255,255,255,.5);
}

header .logo {
  width: 1.97rem;
  height: .84rem;
}

header .headNav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.61rem;
  gap: .8rem;
  margin-left: 5.04rem;
  margin-left: 2.8rem;
}

header .headNav a {
  font-family: AlibabaPuHuiTi-3-55-Regular;
  font-weight: 400;
  font-size: .3rem;
  color: rgba(51, 51, 51, 1);
}

header .headNav a:hover,
header .headNav a.active{
    color: rgba(62, 95, 162, 1);
}

header .lang{
    width: 1.08rem;
    height: .55rem;
    background: transparent;
    font-family: AlibabaPuHuiTi-3-55-Regular;
    font-weight: 400;
    font-size: .16rem;
    display: flex;
    align-items: center;
    gap: 0 .07rem;
    margin-left: auto;
    position: relative;
    padding: .08rem;
}

header .lang.act{
    background: #fff;
}

header .lang .img1{
    width: .34rem;
    height: .34rem;
    filter: brightness(0);
}

header .lang.act .img1{
    filter: brightness(1);
}

header .lang .img2{
    width: .1rem;
    height: .1rem;
    filter: brightness(0);
}

header .lang.act .img2{
    filter: brightness(1);
}

header .lang .langList{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
}

header .lang .langList a{
    font-family: AlibabaPuHuiTi-3-55-Regular;
    font-weight: 400;
    font-size: .16rem;
    text-align: center;
    line-height: .36rem;
    border-top: 1px solid rgba(226, 226, 226, 1);
    margin: 0 .08rem;
}

@media only screen and (max-width: 1024px) {
header{
  display: none;
}
}

.common-phone-header,
.side-wrap {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .header-wrap {
    display: none;
  }

  .common-phone-header {
    display: block !important;
  }

  .side-wrap {
    display: block !important;
  }

  .common-phone-header {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }

  .common-phone-header-inner {
    display: flex;
    height: 50px;
    border-bottom: 1px solid #eee;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
  }

  .header-menu-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-logo-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-search-phone {
    height: 30px;
    width: auto;
    display: block;
  }

  .header-search-box-phone {
    display: none;
  }

  .header-search-input-phone {
    border-radius: 20px;
    height: 35px;
    border-width: 1px;
    border: 1px solid #333;
    padding: 0 10px;
    font-size: 14px;
  }

  .side-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, .5);
  }

  .side-container {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    color: #000;
    border-left: 1px solid #eee;
    animation: ani_side 1s;
  }

  .side-container.shown {
    display: block;
  }

  @keyframes ani_side {
    from {
      display: none;
      width: 3rem;
    }

    to {
      display: block;
      width: 100%;
    }
  }

  .side-wrap {
    width: 100%;
  }

  .side-top {
    display: flex;
    height: 60px;
    padding: 0 20px 0 30px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
  }

  .side-logo {
    height: 30px;
    width: auto;
  }

  .side-close {
    width: .48rem;
  }

  .side-bottom {
    padding: 0 .48rem 0 .72rem;
  }

  .nav-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .27rem 0 .27rem 0;
    border-bottom: 1px solid #eee;
  }

  .nav-item-inner span {
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .nav-item-inner img {
    width: .4rem;
  }

  .side-nav-list .nav-item a {
    color: #000;
    font-size: .26rem;
    width: 100%;
    /*display: inline-block !important;*/
    display: flex;
  }

  .side-nav-list .side-local-img {
    width: .3rem;
    margin-right: .2rem;
    vertical-align: text-bottom;
  }

  .side-nav-list-sub {
    display: none;
  }

  .side-nav-list-sub .side-back-img {
    width: .3rem;
    margin-right: .2rem;
    vertical-align: text-bottom;
  }
}