.pc-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: .8rem;
  line-height: .8rem;
  z-index: 99;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.pc-header .logo {
  float: left;
  max-width: 20%;
}
.pc-header .logo .logo2 {
  display: none;
}
.pc-header .searchBox {
  float: right;
  padding-top: 5px;
  margin-left: 2%;
  position: relative;
}
.pc-header .searchBox .search_btn, .pc-header .searchBox .open_search {
  display: inline-block;
  padding: 14px;
  background: url("../images/icon-search.png") no-repeat center center;
}
.pc-header .searchBox .open_search.open {
  background: url("../images/icon-close2.png") no-repeat center center;
}
.pc-header .searchBox .top_input {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 66;
  background-color: white;
  border-radius: 10px;
  padding-right: 50px;
  line-height: 1.5;
  overflow: hidden;
}
.pc-header .searchBox .top_input input {
  width: 250px;
  height: 40px;
  padding: 0 15px;
}
.pc-header .searchBox .top_input .search_btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-size: auto;
}
.pc-header .grodBox {
  float: right;
  color: white;
  font-size: 14px;
}
.pc-header .grodBox .txt {
  padding-right: 15px;
  cursor: pointer;
}
.pc-header .open_menu {
  display: none;
}
.pc-header .menuBox {
  float: left;
  width: 60%;
}
.pc-header .menuBox ul {
  font-size: 0;
  text-align: center;
  height: 80px;
  margin-bottom: 0;
}
.pc-header .menuBox ul li {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  margin-left: 7%;
}
.pc-header .menuBox ul li em {
  font-style: normal;
}
.pc-header .menuBox ul li a {
  color: #FFFFFF;
}

.pc-header.topDown {
  top: -150px;
}

.pc-header.bgon {
  background-color: white;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.pc-header.bgon .logo .logo1 {
  display: none;
}
.pc-header.bgon .logo .logo2 {
  display: inline;
}
.pc-header.bgon .searchBox .search_btn {
  background: url("../images/icon-search-gray.png") no-repeat center center;
}
.pc-header.bgon .searchBox .open_search {
  background: url("../images/icon-search-gray.png") no-repeat center center;
}
.pc-header.bgon .searchBox .open_search.open {
  background: url("../images/icon-close2.png") no-repeat center center;
}
.pc-header.bgon .grodBox {
  color: #333;
}
.pc-header.bgon .menuBox ul li a {
  color: #333;
  -webkit-animation: fade-out 1s;
  animation: fade-out 1s;
}

.pc-header:hover {
  background-color: white;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.pc-header:hover .logo .logo1 {
  display: none;
}
.pc-header:hover .logo .logo2 {
  display: inline;
}
.pc-header:hover .searchBox .search_btn {
  background: url("../images/icon-search-gray.png") no-repeat center center;
  -webkit-animation: fade-out 1s;
  animation: fade-out 1s;
}
.pc-header:hover .searchBox .open_search {
  background: url("../images/icon-search-gray.png") no-repeat center center;
}
.pc-header:hover .menuBox ul li a {
  color: #333;
}

.pc-header .grodBox {
  position: relative;
}

.pc-header .tow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: auto;
  background: #eaeef7;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .tow2 {
  width: 300px;
  padding: 0 18px;
}

.pc-header .grodBox:hover .tow2 {
  max-height: 300px;
}

.pc-header .grodBox .tow2 .div {
  width: 100%;
  padding-top: 26px;
}

.pc-header .grodBox .tow2 a {
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 26px;
  line-height: 1;
  padding-right: 25px;
  position: relative;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .grodBox .tow2 a::before {
  content: '';
  width: 21px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .grodBox .tow2 a:hover {
  color: #008d43;
}

.pc-header .grodBox .tow2 a:hover::before {
  right: 0;
  opacity: 1;
}

.pc-header .tow3 {
  width: 160px;
  top: 100%;
}

.pc-header .tow3 .div {
  padding: 0 18px;
  padding-bottom: 26px;
}

.pc-header .searchBox {
  width: 50px;
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
}

.pc-header .searchBox .open_search {
  padding: 0;
  width: 50px;
  height: 50px;
  float: left;
  background: url("../images/icon-search.png");
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.pc-header .searchBox .div {
  width: auto;
  height: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50px;
  overflow: hidden;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .searchBox .div1 {
  width: 0;
  height: 100%;
  float: left;
  padding-right: 37px;
  padding-left: 14px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .searchBox .div1 input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  padding: 0;
  display: block;
  background: rgba(0, 0, 0, 0);
  color: #c3c3c3;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  outline: 0;
  border: 0;
}

.pc-header .searchBox .div1 span {
  width: 50px;
  height: 100%;
  background-image: url("../images/icon-close2.png");
  background-size: 20px;
  background-position: 20% center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .top {
  position: relative;
}

.pc-header .menuBox li .tow1 {
  width: 100%;
  top: 100%;
}

.pc-header .menuBox li:hover .tow1 {
  max-height: 100px;
  line-height: 68px;
}

.pc-header .menuBox li .tow1 a {
  font-size: 14px;
  color: #555555;
  display: inline-block;
  line-height: 68px;
  margin: 0 18px;
  position: relative;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .menuBox li .tow1 a::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #008d43;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .menuBox li .tow1 a:hover {
  color: #008d43;
}

.pc-header .menuBox li .tow1 a:hover::before {
  width: 100%;
}

.pc-header .menuBox ul li:hover em a {
  color: #008d43;
}

.pc-header .menuBox ul li em::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #008d43;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.pc-header .menuBox ul li:hover em::before {
  width: 100%;
}

.pc-header .menuBox ul li em {
  display: block;
  position: relative;
}

@media (max-width: 1366px) {
  .pc-header .menuBox {
    width: 80%;
  }

  .pc-header .menuBox ul li {
    margin-left: 5%;
  }

  .pc-header .menuBox li .tow {
    display: none;
  }

  .pc-header .searchBox {
    display: none;
  }
}
@media (min-width: 1024px) {
  .pc-header .searchBox:hover .open_search {
    background: url("../images/icon-search-gray.png");
    background-position: center;
    background-repeat: no-repeat;
  }

  .pc-header .searchBox:hover .div {
    background: #f5f5f5;
    width: 250px;
    border-radius: 50px;
  }

  .pc-header .searchBox:hover .div1 {
    width: 200px;
  }
}
@media (max-width: 1024px) {
  .pc-header .searchBox.active .open_search {
    background: url("../images/icon-search-gray.png") no-repeat center !important;
    background-position: center;
    background-size: 22px;
  }

  .pc-header .menuBox {
    width: 80%;
  }

  .pc-header .menuBox ul li {
    margin-left: 5%;
  }

  .pc-header .menuBox li .tow {
    display: none;
  }

  .pc-header .searchBox {
    display: none;
  }

  .pc-header .searchBox.active .div {
    background: #f5f5f5;
    width: 155px;
    border-radius: 50px;
    padding: 0 5px;
  }

  .pc-header .searchBox.active .div1 {
    width: 113px;
    display: block !important;
  }
}
@media (max-width: 1100px) {
  .pc-header .menuBox ul li {
    margin-left: 2%;
  }

  .pc-header .menuBox .tow {
    position: static;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .pc-header .menuBox li .tow1 a {
    font-size: 14px;
    line-height: 40px;
  }

  .pc-header .menuBox li:hover .tow1 {
    max-height: 200px;
    line-height: 40px;
    padding: 10px 0;
  }

  .pc-header .menuBox ul li em::after {
    content: '';
    width: 9px;
    height: 6px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }

  .pc-header .menuBox li:hover em::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }

  .home .title .info {
    margin-bottom: 16px;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
    color: #fff;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
    color: #fff;
  }
  100% {
    opacity: 0;
  }
}

/*# sourceMappingURL=header.css.map */
