.home .pheader {
  display: none;
  position: fixed;
  top: 0;
  height: 60px;
  width: 100%;
  left: 0;
  z-index: 1000;
}
.home .pheader .menu {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(255, 255, 255);
}
.home .pheader .menu a {
  margin-left: 16%;
  width: 100%;
}
.home .pheader .menu a i {
  font-size: 30px;
}
.home .pheader .menu .himg {
  width: 70%;
}
.home .pheader .menu .navbox {
  margin-left: 5%;
}
.home .pheader .menu .navbox .line {
  width: 30px;
  height: 2px;
  background-color: #333;
  margin: 8px 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.home .pheader .menu .activeBox .line:nth-child(1) {
  transform: rotate(45deg) translateY(14px);
}
.home .pheader .menu .activeBox .line:nth-child(2) {
  transform: translateX(30px);
  opacity: 0;
}
.home .pheader .menu .activeBox .line:nth-child(3) {
  transform: rotate(-45deg) translateY(-14px);
}
.home .menuList {
  position: fixed;
  left: -180px;
  backdrop-filter: blur(10px);
  top: -40px;
  width: 130vh;
  padding: 5vh 10%;
  height: 130vh;
  border-radius: 50%;
  z-index: 100;
  background-color: rgb(48 88 174 / 30%);
  display: none;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  transform: translate(-100%, -100%);
  transition: all 600ms;
}
.home .menuList2 {
  position: fixed;
  left: 0px;
  top: 0;
  width: 80%;
  padding: 5vh 10%;
  height: 100vh;
  z-index: 100;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  transform: translateY(-150vh);
  transition: all 600ms;
}
.home .menuList2 .item {
  text-align: center;
  margin: 15% auto;
}
.home .menuList2 .item a {
  color: white;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .menuList2 .item .aList {
  line-height: 40px;
  display: flex;
  flex-direction: column;
}
.home .menuList2 .item .aList a {
  font-size: 14px;
  color: white;
}
.home .activeList {
  transform: translateY(0);
}
.home .activeHeader {
  background-color: white;
}
@media screen and (max-width: 1000px) {
  .home .pheader {
    display: flex;
  }
  .home .menuList {
    display: flex;
  }
  .home .menuList2 {
    display: flex;
  }
  .home .menuList2 .item .aList a {
    font-size: 18px;
  }
  .home .menuList2 .item .aList {
    line-height: 46px;
  }
}

/*# sourceMappingURL=header.css.map */
