@charset "UTF-8";

.headerDiv {
  width: 100%;
  height: 150px;
  background: url("../img/headBg.png") no-repeat;
  background-size: 100% 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.headerDiv.fixed {
  height: 100px;
  background: rgba(0, 0, 0, 0.5);
}
.header {
  width: 100%;
  max-width: 1920px;
  height: 150px;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 6.25% 0 6.25%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header .logo {
  overflow: hidden;
}
.header .logo img {
  width: 68.55%;
}
.header .menuBg {
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
}
.header ul {
  overflow: hidden;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header ul a {
  overflow: hidden;
}
.header ul a li {
  padding-bottom: 10px;
  display: inline-block;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}
.header ul a li:hover,
.header ul a li.active {
  font-weight: bold;
  border-bottom: 2px solid #fff;
}
.header .imgs {
  overflow: hidden;
  margin-top: 15px;
  text-align: right;
}
.header .imgs .en {
  cursor: pointer;
}
.header .imgs .search {
  margin-left: 20px;
  cursor: pointer;
}
.searchInputDiv {
  width: 100%;
  overflow: hidden;
  animation: fadeInUp;
  animation-duration: 1s;
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 101;
}
.searchInputDiv.none {
  display: none;
}
.searchInputDiv.block {
  display: block;
}
.searchInputDiv .searchInput {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 6.25%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.searchInputDiv .searchInput .jDiv {
  overflow: hidden;
}
.searchInputDiv .searchInput .jDiv div {
  width: 0px;
  margin-right: 10px;
  float: right;
  border-top: 10px solid rgba(255, 255, 255, 0);
  border-right: 10px solid rgba(255, 255, 255, 0);
  border-bottom: 10px solid #fff;
  border-left: 10px solid rgba(255, 255, 255, 0);
}
.searchInputDiv .searchInput .inputDiv {
  width: 100%;
  max-width: 333px;
  overflow: hidden;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
}
.searchInputDiv .searchInput .inputDiv input {
  width: 100%;
  overflow: hidden;
  padding: 5px;
  border-bottom: 1px solid #ccc;
}
.searchInputDiv .searchInput .inputDiv > .sou {
  width: 21px;
  height: 21px;
  background: url("../img/searchP.png");
  background-size: 100% 100%;
  cursor: pointer;
}

.header .menuBtn {
  width: 50px;
  overflow: hidden;
  margin: 0 15px 0 20px;
  display: none;
  cursor: pointer;
}
.header .menuBtn div {
  height: 3px;
  overflow: hidden;
  margin: 3px 0 5px;
  background-color: #fff;
  border-radius: 2px;
}

@media screen and (max-width: 980px) {
  .headerDiv {
    height: 50px;
    padding: 0;
    align-items: center;
  }
  .headerDiv.fixed {
    height: 60px;
  }
  .header .logo {
    width: 300px;
    padding: 10px 0 0 10px;
  }
  .header .imgs {
    margin-top: 0;
  }
  .header .menuBtn {
    display: block;
  }
  .header .menu {
    width: 80%;
    height: 100%;
    overflow: hidden;
    padding: 20px 30px;
    background: #f2f2f2;
    border-radius: 0 0 0 10px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
  }
  .header .menu.block {
    display: block !important;
  }
  .header .menu.none {
    display: none !important;
  }
  .header .menu .close {
    overflow: hidden;
    padding: 5px;
    text-align: right;
  }
  .header .menu .close img {
    width: 30px;
    height: 30px;
  }
  .header .menu ul {
    display: block;
  }
  .header .menu ul a {
    height: 50px;
    overflow: hidden;
    display: block;
    line-height: 50px;
    border-bottom: 1px solid #ccc;
    position: relative;
  }
  .header .menu ul a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    width: 30px;
    height: 50px;
    background: url("../img/menuIcon.png") no-repeat center;
  }
  .header .menu ul a li {
    padding-left: 10px;
    color: #333;
  }
}
