@import "fixed.css";
@import "aos.css";
@import "header.css";
@import "foot.css";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;300;400;500;700;900&display=swap');
body {
    font-family: "Noto Sans SC","Microsoft YaHei","PingFang SC",sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #333;
}

@-ms-viewport {
    width:device-width;
}
*,*::before,*::after {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
* {
    -webkit-font-smoothing:antialiased;
    -webkit-tap-highlight-color:transparent;
    margin:0;
    padding:0;
    outline:none;
}
ul,li,p,a{
    list-style: none;
}
::-webkit-scrollbar{width:0;}
a {
    outline:none;
    color:#333333;
    text-decoration:none;
    background-color:transparent;
    -webkit-transition:linear .15s color;
    -o-transition:linear .15s color;
    transition:linear .15s color;
    -webkit-text-decoration-skip:objects;
}
*{
    outline:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0) ;
}
#scroller-wrapper{
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.scrollbar-thumb{
    width:3px !important;
    background-color: #184B8A !important;
}
.scrollbar-track-y{
    width:3px !important;
}

.hasBg{
    background-color: rgba(0,0,0,.5) !important;
}
.home .banner .links{
display: none !important;
}


.pheader {
  display: none;
  position: fixed;
  top: 0;
  height: 60px;
  width: 100%;
  left: 0;
  z-index: 1002;
}
.pheader .menu {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
    background-color: rgba(0,0,0,.6);
    padding: 15px 0;
}
.pheader .menu a {
  margin-left: 20px;
}
.pheader .menu a img {
  width: 120px;
  object-fit: contain;
}
.pheader .menu .navbox {
  margin-right: 20px;
}
.pheader .menu .navbox .line {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  margin: 8px 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.pheader .menu .activeBox .line:nth-child(1) {
  transform: rotate(45deg) translateY(14px);
}
.pheader .menu .activeBox .line:nth-child(2) {
  transform: translateX(30px);
  opacity: 0;
}
.pheader .menu .activeBox .line:nth-child(3) {
  transform: rotate(-45deg) translateY(-14px);
}

.menuList {
  position: fixed;
  left: 0;
  top: 68px;
  width: 100%;
  padding: 3vh 10% 0 10%;
  height: 50vh;
  z-index: 1001;
  background-color: white;
  flex-wrap: wrap;
  transform: translateY(-100vh);
  transition: all 600ms;
}
.menuList .item {
  width: 100%;
  text-align: center;
  padding: 15px 0;
}
.menuList .item a {
  color: black;
  font-size: 16px;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.menuList .item .aList {
  display: flex;
  flex-direction: column;
}
.menuList .item .aList a {
  font-size: 14px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.8);
}

.activeList {
  transform: translateY(0);
}


@media screen and (max-width: 1024px){
.pheader{
display:block;
}
}


