@import url("https://fonts.googleapis.com/css?family=Noto+Sans+SC:100,200,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Archivo:600,700,800,900");
@import url("//at.alicdn.com/t/c/font_4159461_frf3b04d2lp.css");
/***********************************************************************/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Noto Sans SC, Archivo, serif;
  color: #000;
  height: 100%;
  overflow: auto;
}

html, body, div, ul, li, dl, dt, dd, ol, input, form, p, a, img, em, span, figure, h1, h2, h3, h4, header, video {
  margin: 0;
  padding: 0;
}

ul, li, ol {
  list-style: none;
}

input, textarea, button, select {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

textarea {
  resize: none;
}

a, a:link, a:visited, a:hover, a:active {
  color: #000;
  outline: 0;
  border: 0;
  text-decoration: none;
}

a:hover, a:active {
  background-color: transparent;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  display: block;
}

/***********************************************************************/
.container-full {
  width: 100%;
  height: auto;
}

.container {
  width: auto;
  height: 100%;
  margin: 0 3.65%;
  overflow: hidden;
}

/***********************************************************************/
header {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url("../images/banner_bg_pc.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
header video {
  width: 100%;
}
header #index_banner {
  display: block;
}
header #index_banner_wap {
  display: none;
}
header .banner-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
header .banner-container .logo-language {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
header .banner-container .logo-language .language {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
header .banner-container .logo-language .language a {
  color: #fff;
}
header .banner-container .logo-language .language svg {
  width: 20px;
  display: block;
  margin-left: 10px;
}
header .banner-container .logo-language .language svg path {
  fill: #fff;
}
header .banner-container .text {
  display: flex;
  flex-direction: column;
  margin-top: 4%;
}
header .banner-container .text p {
  color: #fff;
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 100%;
}
header .banner-container .text p.cn {
  margin-top: 30px;
  font-size: 45px;
  font-weight: 500;
}
header .banner-container nav {
  position: absolute;
  left: 5%;
  bottom: -40px;
  width: 90%;
  height: 196px;
  padding: 0;
  z-index: 1;
  border-radius: 20px;
  opacity: 1;
}
header .banner-container nav::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 23px 0 rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  z-index: -1;
}
header .banner-container nav .swiper {
  display: none;
}
header .banner-container nav .box {
  margin: 0 80px;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
header .banner-container nav .box li.active a p, header .banner-container nav .box li:hover a p {
  color: #0CA1FD;
  border-bottom: 2px solid #0CA1FD;
}
header .banner-container nav .box li.active a svg, header .banner-container nav .box li:hover a svg {
  transform: rotate(-45deg);
}
header .banner-container nav .box li.active a svg path, header .banner-container nav .box li:hover a svg path {
  fill: #0CA1FD;
}
header .banner-container nav .box li a {
  height: 100%;
  display: flex;
  align-items: center;
}
header .banner-container nav .box li a p {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 2px solid transparent;
}
header .banner-container nav .box li a svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}
header .banner-container nav .box li a svg path {
  fill: #000;
}

/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
footer {
  margin-top: 50px;
  background-color: #154481;
}
footer .body {
  padding: 70px 0;
  color: #fff;
}
footer .body .logo-about {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .body .logo-about .about a {
  color: #fff;
}
footer .body .line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 40px 0;
}
footer .body .share {
  display: flex;
  align-items: center;
}
footer .body .share .item {
  margin-right: 40px;
}
footer .body .share .item img {
  height: 31px;
}

/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
@media screen and (max-width: 900px) {
  body {
    min-height: 100vh;
  }
  .container {
    margin: 0 10px;
  }
  header {
    background-image: url("../images/banner_bg_wap.png");
  }
  header #index_banner {
    display: none;
  }
  header #index_banner_wap {
    display: block;
  }
  header .banner-container .logo-language {
    margin-top: 30px;
  }
  header .banner-container .logo-language .logo {
    width: 40%;
  }
  header .banner-container .logo-language .language {
    padding: 0 10px;
    font-size: 14px;
  }
  header .banner-container .logo-language .language svg {
    width: 15px;
    margin-left: 5px;
  }
  header .banner-container .text {
    margin-top: 10%;
  }
  header .banner-container .text p {
    font-size: 30px;
  }
  header .banner-container .text p.cn {
    margin-top: 15px;
    font-size: 19px;
  }
  header .banner-container nav {
    left: 0;
    height: 67px;
    bottom: -15px;
    width: 95%;
  }
  header .banner-container nav::before {
    border-radius: 0 10px 10px 0;
  }
  header .banner-container nav .box {
    display: none;
  }
  header .banner-container nav .swiper {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    background-color: transparent;
  }
  header .banner-container nav .swiper .swiper-wrapper {
    width: auto;
    height: 100%;
    display: flex;
  }
  header .banner-container nav .swiper .swiper-wrapper .swiper-slide {
    width: 50%;
    text-align: center;
  }
  header .banner-container nav .swiper .swiper-wrapper .swiper-slide.active a {
    color: #0CA1FD;
  }
  header .banner-container nav .swiper .swiper-wrapper .swiper-slide.active svg {
    transform: rotate(-45deg);
  }
  header .banner-container nav .swiper .swiper-wrapper .swiper-slide.active svg path {
    fill: #0CA1FD;
  }
  header .banner-container nav .swiper .swiper-wrapper .swiper-slide a {
    display: flex;
    text-align: center;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  header .banner-container nav .swiper .swiper-wrapper .swiper-slide a p {
    font-size: 14px;
  }
  header .banner-container nav .swiper .swiper-wrapper .swiper-slide a svg {
    width: 15px;
  }
  header .banner-container nav .swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10;
    display: flex;
    justify-content: center;
  }
  header .banner-container nav .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 3px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.2);
  }
  header .banner-container nav .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0CA1FD;
  }
  header .banner-container nav .swiper .swiper-pagination .swiper-pagination-bullet:first-child {
    border-radius: 2px 0 0 2px;
  }
  header .banner-container nav .swiper .swiper-pagination .swiper-pagination-bullet:last-child {
    border-radius: 0 2px 2px 0;
  }
  footer {
    margin-top: 20px;
  }
  footer .body {
    padding: 30px;
  }
  footer .body .logo-about .logo {
    width: 40%;
  }
  footer .body .logo-about .about {
    font-size: 12px;
  }
  footer .body .line {
    margin: 20px 0;
  }
  footer .body .share .item {
    margin-right: 20px;
  }
  footer .body .share .item img {
    height: 15px;
  }
}
/***********************************************************************/
@media screen and (min-width: 750px) and (max-width: 1440px) {
  footer .copyright-menu .menu dd {
    padding-left: 10px;
  }
}
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/

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