header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all .3s;
}

.headerActive {
  background: #FFFFFF;
}

.headerBox {
  width: 17.2rem;
  height: 1.2rem;
  margin: 0 auto;
  padding-left: .1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.headerLogo {
  width: 2.65rem;
  display: flex;
  margin-right: 2.91rem;
  flex-shrink: 0;
}

.headerNav {
  width: 100%;
  height: 100%;
  display: flex;
}

.navItem {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .33rem;
  position: relative;
}

.navItem:hover {
  background: linear-gradient(180deg, #5F8EE2 0%, #435CDB 50%, #3376E0 100%);
}

.navOne,
.navItem:hover .navOne {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.18rem;
  color: #FFFFFF;
}

.headerActive .navOne {
  color: #333333;
}

.navOne.active {
  color: #0A4B9D;
}

.navTwo {
  position: absolute;
  top: 100%;
  width: 100%;
  padding: .15rem 0 .1rem;
  background: #FFFFFF;
  display: none;
  z-index: 99;
}

.navTwo a {
  display: flex;
  width: 100%;
  height: .5rem;
  align-items: center;
  justify-content: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
}

.navTwo a:hover {
  background: linear-gradient(265deg, #5F8EE2 0%, #435CDB 50%, #3376E0 100%);
  color: #FFFFFF;
}

.headerR {
  display: flex;
  align-items: center;
}

.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .29rem;
  flex-shrink: 0;
}

.lang img {
  width: .28rem;
  height: .28rem;
  margin-right: .08rem;
}

.lang span {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #FFFFFF;
}

.headerActive .lang span {
  color: #333333;
}

.headerSearch {
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
}

.headerSearch img {
  width: .28rem;
  height: .28rem;
}

.searchBox {
  position: absolute;
  top: 100%;
  width: 100%;
  background: #F8FDFF;
  display: none;
}

.close {
  width: .19rem;
  height: .19rem;
  position: absolute;
  top: .31rem;
  right: 1.78rem;
  cursor: pointer;
}

.searchCenter {
  width: 14rem;
  margin: .95rem auto 1.13rem;
  display: flex;
  align-items: center;
  padding-bottom: .15rem;
  border-bottom: 0.01rem solid #91A1B6;
}

.searchCenter img {
  width: .24rem;
  height: .24rem;
  flex-shrink: 0;
}

.searchCenter input {
  width: 100%;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.4rem;
  color: #3C4F67;
  padding: 0 .3rem;
  box-sizing: border-box;
}

.searchCenter input::-webkit-input-placeholder {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.4rem;
  color: #3C4F67;
}

.searchCenter button {
  width: 1.18rem;
  height: 0.45rem;
  background: linear-gradient(80deg, #6496E3 0%, #445EDB 44%, #3179E1 100%);
  border-radius: 0.3rem 0.3rem 0.3rem 0.3rem;
  flex-shrink: 0;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.2rem;
  color: #FFF9F9;
}

/*移动端*/
.common-phone-header,
.side-wrap{
    display: none;
}
@media only screen and (max-width: 1024px) {
    .headerBox{
        display: none;
    }
    
    .banner {
        height: auto;
    }
    
    .banner img{
        animation:none;
        display: block;
    }
    
    .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;
    }
    .header-logo-phone {
        height: 30px;
        width: auto;
    }
    .header-search-phone {
        height: 30px;
        width: auto;
    }
    .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;
        transform: translateY(-10px);
    }
    .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: 6.4rem;
        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: 6.4rem;
        }
    }
    .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;
    }
    .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;
    }
    
    .header-menu-btn,
    .header-logo-box-phone,
    .header-search{
        display: flex;
    }
}


