.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 1);
  /* border: 0.01rem solid #E6E6E6; */
  box-shadow: 0rem 0.02rem 0.04rem 0rem rgba(0,0,0,0.1);
  z-index: 99;
  transition: all 0.3s;
}
.header_center {
  position: relative;
  width: 18rem;
  height: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* logo */
.header_logo {
  /*width: 3.36rem;*/
  height: 0.54rem;
  overflow: hidden;
}
.header_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}
.header_logo .logo1 {
  display: block;
}

/* 导航、搜索、语言  */
.head_right {
  display: flex;
  align-items: center;
}


.navs {
  display: flex;
  align-items: center;
}
.navs .item {
  position: relative;
  width: fit-content;
  height: 0.7rem;
  margin: 0 0.4rem;
  /* padding: 0 0.12rem; */
  cursor: pointer;
  display: flex;
  align-items: center;
}
.navs .item .one {
  display: block;
  font-size: 0.16rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
}
.navs .item .oneActive {
  color: #D61428 !important;
  border-bottom: 0.04rem solid #D61428;
}
.navs .item:hover .one {
  color: #D61428;
}
/* 二级导航 */
.navs .two {
  position: absolute;
  left: 50%;
  top: 0.85rem;
  transform: translateX(-50%);
  padding: 0.2rem 1.18rem 0.35rem;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0rem 0.02rem 0.04rem 0rem rgba(0,0,0,0.1);
  border: 0.01rem solid #DDDDDD;
  text-align: center;
  display: none;
}
.navs .two .li {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.16rem;
  color: #333333;
  white-space: nowrap;
}
.navs .two .twoActive {
  color: #D61428;
}
.navs .two .li:hover {
  color: #D61428;
}
.navs .two .li:first-child {
  margin-top: 0;
}



/* 语言、搜索 */
.others {
    width: fit-content;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
}
.language {
    position: relative;
    height: 0.7rem;
    /*margin-right: 0.45rem;*/
}
.language .front {
    width: fit-content;
    line-height: 0.7rem;
    white-space: nowrap;
}
.language .front span {
    font-size: 0.16rem;
    font-weight: 500;
    color: #999999;
}
.language .front .now {
    color: #D61428 !important;
}
.language .backBox {
    position: absolute;
    left: 50%;
    top: 0.65rem;
    transform: translateX(-50%);
    padding: 0.2rem 0.5rem 0.1rem;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0rem 0.02rem 0.04rem 0rem rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.language .backBox .item {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.16rem;
    color: #333333;
    white-space: nowrap;
    cursor: pointer;
}
.language .backBox .item:hover {
    color: #D61428;
}
.language:hover .backBox {
    top: 0.7rem;
    opacity: 1;
    visibility: visible;
}

.others .search {
    width: 0.15rem;
    height: 0.15rem;
}
.others .search img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* 搜索弹窗 */
.realsearch {
    position: fixed;
    left: 0;
    top: 1rem;
    width: 100%;
    padding: 0.54rem 0 1.18rem;
    background: rgba(255, 255, 255, 0.9);
    z-index: 98;
    display: none;
}
.realsearch .searchBox {
    width: 15rem;
    margin: 0 auto;
    padding-bottom: 0.25rem;
    border-bottom: 0.01rem solid #D61428;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.realsearch input {
    width: 10rem;
    height: 0.4rem;
    padding: 0 0.05rem;
    border: none;
    outline: none;
    background: transparent;
}


@media only screen and (max-width: 1800px) {
    .header_center {
        width: 15rem;
    }
    .header_logo {
        height: 0.5rem;
    }
    .navs .item {
        margin: 0 0.3rem;
    }
    .others {
        margin-left: 0.3rem;
    }
}

@media only screen and (max-width: 1520px) {
    /* 客户说有点字体小，看不清了，所以先适配一下字体，在1500px以下，字体设置成固定大小 */
    .navs .item .one {
        font-size: 16px;
    }
    .navs .two .li {
        font-size: 16px;
    }
    .language .front {
        font-size: 16px;
    }
    .language .front span {
        font-size: 16px;
    }
    .language .backBox .item {
        font-size: 16px;
    }
    .language .backBox .item a {
        font-size: 16px;
    }
}
.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;
    }
    .header-logo-phone {
        height: 30px;
        width: auto;
    }
    .header-search-phone {
        height: 30px;
        width: auto;
        display: none;
    }
    .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: 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{
        display: none;
    }
}
