@import "fixed.css";
@import "aos.css";
@import "header.css";
@import "foot.css";


@import url('css2.css');
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;
}

.dahle {
    display: none;
}

.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;
}
}

.drop-second-list {
    position: absolute;
    top: 0;
    left: 100%;
    min-height: 250px;
    padding-top: 46px;
    transform-origin: left center;
    transform: scaleX(0) translateX(50px);
    opacity: 0;
    z-index: -1;
    transition: opacity .2s ease, transform .3s cubic-bezier(0.88, -0.02, 0, 1.02)
}

.drop-second-list:before {
    content: '';
    position: absolute;
    display: block;
    left: -30px;
    right: -40px;
    height: 100%;
    top: 33px;
    z-index: -2;
    background-color: #ffffff;
}

.drop-second-list-item {
    margin-top: 11px;
    padding-left: 40px;
    padding-bottom: 7px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.drop-second-list-item:before {
    font-family: "iconfont" !important;
    font-size: 16px;
    color: #666;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e616";
    position: absolute;
    left: 0;
    top: 0;
    transition: ease all .2s;
    opacity: 0;
}

.drop-second-list-item:hover:before {
    transform: translateX(5px);
    color: #011A53;
    opacity: 1;
}

.drop-second-list-item:hover a {
    color: #011A53 !important;
}

.drop-second-list-item a {
    font-size: 16px;
    font-weight: 300;
    color: #666666 !important;
}

.drop-second-list-item a:hover {
    color: #011A53;
}

.has-second-drop:hover .drop-second-list {
    transform: scaleX(1) translateX(50px);
    opacity: 1;
}

