/* 全局基础样式 */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
  z-index: 10001;
  border-bottom: .0052rem solid rgba(0, 0, 0, 0.2);
}

.header-wrap {
  color: #fff;
}

.logo img {
  max-width: 100%;
  height: .3854rem;
}

.logo2 {
  display: none;
}

.m-none {
  display: none;
}

/* 桌面端样式（≥6.25rem） */
@media (min-width:1200px) {

  .navlist li {
    margin: 0 1.3vw;
  }

  .navlist li .a1 {
    font-size: .0938rem;
    color: #fff;
    line-height: .5208rem;

    position: relative;
  }

  .navlist li .a1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: .0208rem;
    background: #e40113;
    transition: 0.5s;
  }

  .navlist li.cur .a1,
  .navlist li:hover .a1 {
    color: #e40113 !important;
    font-weight: bold;
  }

  .navlist li.cur .a1::after,
  .navlist li:hover .a1::after {
    width: 100%;
  }

  .nav-item {
    position: absolute;
    top: .5208rem;
    left: 50%;
    width: 1.3958rem;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    box-shadow: 0 .0208rem .0313rem rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    transform: translateX(-50%);
    padding: .1042rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;

  }

  .nav-item a {
    display: block;
    font-size: .0833rem;
    line-height: .2188rem;
    white-space: nowrap;
    text-align: center;
    color: #fff;

  }

  .nav-item a:last-child {
    border-bottom: none;
  }

  .nav-item a:hover {
    color: #E40113;
    font-weight: bold;
  }

  .navBox ul li:hover .nav-item {
    opacity: 1;
    visibility: visible;
  }

  .icon-search {
    font-size: .1563rem !important;
    margin-right: .1563rem;
    cursor: pointer;
  }

  .lang {
    width: .5625rem;
    height: .2083rem;
    background: transparent;
    border: .0052rem solid #d8d8d8;
    border-radius: .2604rem;
    transition: 0.5s;
  }

  .lang:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: #000;
    color: #fff !important;
  }

  .lang-qh {
    line-height: .2083rem;
    padding: 0 .0521rem;
    cursor: pointer;
    box-sizing: border-box;
  }

  .lang-qh .txt {
    font-size: .0833rem;
  }

  .icon-yuyan {
    font-size: .125rem !important;
  }

  .icon-right {
    font-size: .1042rem !important;
    transition: 0.5s;
  }

  .lang:hover .icon-right {
    transform: rotate(90deg);
  }

  .subLan {
    position: absolute;
    left: 0;
    top: .3125rem;
    width: 100%;
    padding: .0521rem;
    color: #fff;
    border-radius: .0521rem;
    background: #000;
    visibility: hidden;
    transition: 0.2s;
    box-sizing: border-box;
  }

  .subLan a {
    display: block;
    font-size: .0833rem;
    line-height: .1875rem;
    text-align: center;
    color: #fff;
  }

  .subLan a:hover {
    background: #fff;
    color: #000;
  }

  .lang:hover .subLan {
    top: .2604rem;
    visibility: visible;
  }

  header.on1,
  header.on,
  header:hover {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* header.on1 .logo1,
  header:hover .logo1,
  header.on .logo1 {
    display: none;
  }

  header.on1 .logo2,
  header:hover .logo2,
  header.on .logo2 {
    display: block;
  } */

  /* header.on1 .a1,
  header.on .a1,
  header.on1 .header-wrap ,header.on .header-wrap,
  header:hover .header-wrap,
  header:hover .a1 {
    color: #333;
  } */
}

/* 移动端样式（≤1200px） */
@media (max-width: 1200px) {
  .m-none {
    display: block;
  }

  /* 
  .logo1 {
    display: none;
  }

  .logo2 {
    display: block;
  } */


  header {
    height: 60px;
    background: #000;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .header-wrap {
    max-width: 96%;
    margin: 0 auto;
    width: 100%;
  }

  .logo img {
    height: 40px;
    max-width: 100%;
  }

  .icon-search {
    font-size: 28px !important;
    color: #fff;
  }

  .lang {
    display: none;
  }



  .navBox {
    position: absolute;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    top: 60px;
    left: -100%;
    transition: 0.5s;
  }

  .navBox.on {
    left: 0;

  }

  .navBox ul {
    background: #f8f8f8;
    display: block;
    height: 100%;
    max-width: 100%;
    padding: 15px 30px;
    box-sizing: border-box;
  }

  .navBox ul li>a {
    padding: 0;
    line-height: 48px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
  }

  .nav-item {
    background: #fff;
    padding: 10px 20px;
    z-index: 2;
  }

  .nav-item a {
    font-size: 14px;
    line-height: 48px;
  }
}

/* 搜索模块样式 */
.search {
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: 0.5s;
  background: #000;
}

.search .box {
  box-sizing: border-box;
  max-width: 80%;
  width: 100%;
  height: 100%;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  margin: 0 auto;
}

.search.on {
  top: 0;
}

.search-close {
  cursor: pointer;
  line-height: 32px;
  text-align: center;
  color: #fff;

  font-size: 24px;
}



.search-sjk {
  width: calc(100% - 60px);
}

.search-sjk .input {
  width: calc(100% - 120px);
  border: 1px solid #ddd;
  background: #fff;
  padding: 0 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.search-sjk .input input {
  height: 32px;
  width: 90%;
  font-size: 18px;
}

.search-ss a {
  width: 100px;
  text-align: center;
  display: block;
  background: #f8f8f8;
  line-height: 36px;
  border-radius: 5px;
  font-size: 18px;
}

.search-ss a:hover {
  color: #fff;
  background: #1c1f88;
}

/* 搜索模块移动端适配 */
@media (max-width: 1200px) {
  .search .box {
    max-width: 94%;
  }
}

/* 手机头部汉堡按钮 */
.mob-nav {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
  background-size: auto 40%
}

.mob-nav::before,
.mob-nav::after,
.mob-nav span {
  content: "";
  position: absolute;
  left: 50%;
  height: 2px;
  width: 26px;
  margin-left: -13px;
  background: #fff;
  transition: all 0.5s ease
}

.mob-nav::before {
  top: 50%;
  margin-top: -8px
}

.mob-nav::after {
  top: 50%;
  margin-top: 6px
}

.mob-nav span {
  top: 50%;
  margin-top: -1px
}

.mob-nav.on::before {
  margin-top: -1px;
  transform: rotate(45deg)
}

.mob-nav.on::after {
  margin-top: -1px;
  transform: rotate(-45deg)
}

.mob-nav.on span {
  width: 0
}


@media (max-width: 1200px) {
  .mob-nav {
    display: block;
  }
}