﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "AlibabaPuHuiTi-3-85-Bold";
  src: url("../fonts/AlibabaPuHuiTi-3-45-light.woff2") format("woff2"), url("../fonts/AlibabaPuHuiTi-3-45-light.woff") format("woff"), url("../fonts/AlibabaPuHuiTi-3-45-light.ttf") format("truetype");
}
a {
  text-decoration: inherit;
  color: inherit;
}
@media (min-width: 768px) and (max-width: 1360px) {
    .website-container {
        padding: 0 80px !important;
    }
}
.website-container {
  width: 1280px;
  margin: 0 auto;
}

body {
  min-width: 1280px;
  font-family: "AlibabaPuHuiTi-3-85-Bold";
}

.view-banner {
padding-top:116px;
}

@media screen and (max-width: 768px) {
  .view-banner {
	padding-top: 0px !important;
	}
}

.website-swiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  --swiper-navigation-size: 32px;
}
.website-swiper .swiper-wrapper {
  height: 100vh;
}
.website-swiper .swiper-button-prev, .website-swiper .swiper-button-next {
  color: #ecf5f8;
}
.website-swiper .swiper-button-prev:active, .website-swiper .swiper-button-next:active {
  opacity: 0.5;
}
.website-swiper .swiper-pagination {
  text-align: left;
  padding-left: 120px;
}
.website-swiper .swiper-pagination-bullet {
  width: 22px;
  height: 3px;
  opacity: 1;
  border-radius: 12px 12px;
  background-color: #6d6d6d;
}
.website-swiper .swiper-pagination-bullet-active {
  background-color: #ecf5f8;
}

.swiper-text {
  position: absolute;
  text-align: center;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 12;
  color: white;
}
.swiper-text h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1px;
}
.swiper-text div {
  margin-top: 20px;
  letter-spacing: 5px;
  font-size: 24px;
  font-weight: 300;
}

.website-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 32;
}
.website-header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  height: 36px;
  color: #5f5f5f;
}
.website-header-top a {
  margin-right: 20px;
}
.website-header-top a:hover {
  color: #0380c7;
}
.website-header .icon-home {
  background: url("../images/icon-home.png") no-repeat center left;
  background-size: auto 13px;
  padding-left: 16px;
}
.website-header-search {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 50px 50px;
  padding: 0 8px;
  margin-left: 6px;
}
.website-header-search input {
  width: 108px;
  height: 22px;
  border: none;
  outline: none;
  background: none;
}
.website-header-search input::-moz-placeholder {
  font-size: 12px;
  color: #898989;
}
.website-header-search input::placeholder {
  font-size: 12px;
  color: #898989;
}
.website-header-search img {
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-left: 4px;
}
.website-header-search img:active {
  opacity: 0.7;
}
.website-header-search:focus-within {
  border-color: #0380c7;
}

.website-header-1 {
  background-color: white;
}

.website-header-2 {
  background-color: white;
  transition: background-color 0.3s;
}




.website-header.transparent .website-header-2 {
 /* background-color: transparent;*/
}

.website-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.website-navbar-logo {
  width: 360px;
}
.website-navbar-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.website-navbar-logo .white-logo {
  display: none;
}
.website-navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
}
.website-navbar-menu li {
  position: relative;
  height: 80px;
  line-height: 80px;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
}
.website-navbar-menu li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #0380c7;
  transform: translateX(-50%);
  transition: all 0.5s;
}
.website-navbar-menu .curr {
  color: #0380c7;
}
.website-navbar-menu .curr::after {
  width: 100%;
}

.website-navbar-submenu {
  position: absolute;
  top: 116px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 99;
}
.website-navbar-submenu .submenu-list {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 3em 0;
}
.website-navbar-submenu .submenu-list a {
  width: 160px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background-color: white;
  border: 1px solid #ecf5f8;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
.website-navbar-submenu .submenu-list a:hover {
  border-color: #0380c7;
}
.website-navbar-submenu .submenu-list a .__icon {
  height: 28px;
  width: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.website-navbar-submenu .submenu-list a .__text {
  margin-top: 12px;
}

.website-navbar-submenu.__active {
  opacity: 1;
  visibility: visible;
}

.website-footer {
  position: relative;
  font-size: 16px;
  color: #5f5f5f;
  z-index: 30;
  background-color: #f5f5f5;
}
.website-footer a:hover {
  color: #0380c7;
}
.website-footer-info {
  text-align: center;
  font-size: 14px;
  padding: 12px 0;
  border: 1px solid #e3e3e3;
}
.website-footer-main {
  display: flex;
  padding: 30px 0;
}
.website-footer-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.website-footer-links dt {
  font-size: 16px;
  font-weight: 500;
}
.website-footer-links dd {
  margin-top: 8px;
}
.website-footer-contact {
  width: 140px;
  flex-shrink: 0;
  text-align: center;
}
.website-footer-contact img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
}
.website-footer-contact p {
  font-size: 0.8em;
  margin-top: 8px;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
.mouse-scroll {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 24px;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse-scroll img {
  width: 100%;
  height: auto;
}

.banner-screen {
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.banner-screen .video-screen,
.banner-screen .image-screen {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-screen .video-screen {
  -o-object-fit: cover;
     object-fit: cover;
}

.about-screen {
  position: relative;
  width: 100%;
  min-width: 1220px;
  background: #f5f5f5;
}
.about-screen .about-view-background img {
  display: block;
  width: 100%;
  height: auto;
}
.about-screen .about-view {
  position: absolute;
  top: 12%;
  right: 47%;
}

.about-view-text {
  font-size: 16px;
  width: 606px;
  text-align: justify;
}
.about-view-text-cn {
  font-size: 24px;
  font-weight: 500;
  margin-top: 12px;
}
.about-view-text-content {
  line-height: 2;
  text-indent: 2em;
  margin-top: 20px;
}
.about-view-text-link {
  display: block;
  width: 110px;
  padding: 5px 12px;
  border: 1px solid #d5d5d5;
  background: url(../images/icon-arrow-gray.png) no-repeat 90% center;
  background-size: auto 12px;
  margin-top: 30px;
}
.about-view-text-link:hover {
  border-color: #0380c7;
}
.about-view-text-link:active {
  opacity: 0.7;
}

.about-screen2 {
  position: relative;
  background-color: #f5f5f5;
      height: 100vh;
}
.about-screen2 .about-view2 {
  position: relative;
  height: 100%;
}
.about-screen2 .about-view2-background {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.about-screen2 .about-view-text {
  position: absolute;
  top: 100px;
  left: 60px;
}

.module-screen {
  position: relative;
  background: white;
  z-index: 12;
}

.module-view {
  padding: 60px 0;
}
.module-view-row1 {
  display: grid;
  grid-template-columns: 1.04fr 2fr;
  gap: 20px;
}
.module-view-row2 {
  display: grid;
  grid-template-columns: 2fr 1.04fr;
  gap: 20px;
  margin-top: 20px;
}
.module-view-item {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 422px;
  overflow: hidden;
  border-radius: 20px;
}
.module-view-item img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.module-view-item img:hover {
  transform: scale(1.05);
}

.website-title {
  text-align: center;
  font-size: 16px;
}
.website-title h3 {
  font-size: 28px;
  font-weight: 400;
}
.website-title p {
  margin-top: 12px;
  color: #363636;
}
.website-title .subtitle {
  font-size: 15px;
  color: #a5a5a5;
  margin-top: 26px;
}
.website-title.is-border {
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
}

.institution-screen {
  position: relative;
  padding: 60px 0;
  background: #f5f5f5;
  z-index: 12;
}

.institution-view {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.institution-view .institution-view-item {
  position: relative;
  flex: 1;
  height: 422px;
  border-radius: 20px;
  overflow: hidden;
}
.institution-view .institution-view-item img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.institution-view .institution-view-item img:hover {
  transform: scale(1.05);
}
.institution-view .institution-view-item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  font-size: 28px;
  font-weight: 500;
  color: white;
  padding: 20px;
  letter-spacing: 3px;
}

.business-screen {
  position: relative;
  padding: 60px 0;
  background: white;
  z-index: 12;
}

.business-view {
  margin-top: 50px;
}
.business-view-row {
  display: flex;
  gap: 20px;
  box-sizing: border-box;
}
.business-view-row + .business-view-row {
  margin-top: 20px;
}
.business-view-item {
  position: relative;
  width: 305px;
  height: 446px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.3s;
}
.business-view-item-cover {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.35s;
}
.business-view-item-cover.__large {
  opacity: 0;
}
.business-view-item-text {
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 424px;
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.3s;
}
.business-view-item-text h3 {
  line-height: 50px;
  font-size: 24px;
  font-weight: 500;
}
.business-view-item-text h4 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 30px;
}
.business-view-item-text p {
  line-height: 1.5;
  font-size: 14px;
  margin-top: 12px;
  text-align: justify;
}
.business-view-item.is-hover {
  width: 40%;
}
.business-view-item.is-hover .business-view-item-cover.__mini {
  opacity: 0;
}
.business-view-item.is-hover .business-view-item-cover.__large {
  opacity: 1;
}
.business-view-item.is-hover .business-view-item-text {
  bottom: 0;
  transform: translateY(0px);
}
.business-view-item.is-hover .business-view-item-text h4 {
  margin-top: 0;
}

.side-button {
  position: fixed;
  right: 16px;
  bottom: 10%;
  z-index: 2025;
}
.side-button-contact {
  display: block;
  width: 46px;
  font-size: 16px;
  padding: 12px;
  line-height: 1.3;
  text-align: center;
  color: white;
  font-weight: 500;
  background-image: linear-gradient(to bottom, #69b2f5, #2a70f7);
  border-radius: 7px;
}
.side-button-wx, .side-button-arrow {
  position: relative;
}
.side-button-wx .__icon, .side-button-arrow .__icon {
  width: 46px;
  height: 46px;
  border: 1px solid #0380c7;
  border-radius: 7px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: white;
}
.side-button-wx .__icon img, .side-button-arrow .__icon img {
  display: block;
  width: auto;
  height: 24px;
}
.side-button-wx:hover .__abs {
  visibility: visible;
  opacity: 1;
  right: 42px;
}
.side-button .__abs {
  position: absolute;
  right: 60px;
  top: -72px;
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.side-button .__code {
  position: relative;
  width: 160px;
  height: 190px;
  background-color: white;
  padding: 6px;
  border: 1px solid #0380c7;
  border-radius: 12px;
  text-align: center;
}
.side-button .__code img {
  display: block;
  width: 100%;
  height: auto;
}
.side-button .__code p {
  font-size: 14px;
  color: #5f5f5f;
}
.side-button .__code::after {
  position: absolute;
  content: "";
  right: -24px;
  top: 50%;
  border-width: 12px;
  border-style: solid;
  border-color: transparent transparent transparent #0380c7;
  transform: translateY(-50%);
}
.side-button-arrow {
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.side-button-arrow.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.website-nofixed {
  position: relative;
}

.view-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.navigation {
  background-color: #f5f5f5;
  font-size: 14px;
}
.navigation .website-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation-path {
  flex-shrink: 0;
  width: 260px;
  list-style: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navigation-path li + li {
  padding-left: 5px;
}
.navigation-path li + li::before {
  content: ">";
  padding-right: 3px;
}
.navigation-path a[href]:hover {
  color: #0380c7;
}

.navigation-links {
  flex: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .navigation-links {
  	text-align: left !important;
  }
}
.navigation-links a {
  position: relative;
  display: inline-block;
  height: 60px;
  font-size: 16px;
  font-weight: 420;
  line-height: 60px;
  margin: 0 15px;
}
.navigation-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.navigation-links .is-active {
  color: #0380c7;
}
.navigation-links .is-active::after {
  background-color: #0380c7;
}

.view-container {
  background-color: white;
  min-height: 300px;
  padding: 60px 0;
}

.text-h3 {
  font-size: 28px;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

.text-format {
  line-height: 2;
  text-indent: 2em;
  text-align: justify;
}

.text-h3 + .text-format {
  margin-top: 20px;
}

.project-title {
  font-size: 24px;
  font-weight: 400;
  color: #0380c7;
  text-align: center;
  margin-top: 30px;
}
.project-title span {
  position: relative;
  padding-bottom: 20px;
}
.project-title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #0380c7;
}

.project-items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.project-item-cover {
  position: relative;
}
.project-item-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.project-item-cover p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
}
.project-item-text {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.75;
}

.team-items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
}
.team-items .team-item {
  text-align: center;
}
.team-items .team-item img {
  display: block;
  width: 100%;
  height: auto;
}
.team-items .team-item h4 {
  font-size: 20px;
  color: #0380c7;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.team-items .team-item p {
  font-size: 14px;
  color: #5f5f5f;
  margin-top: 6px;
}

.hire-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.hire-items .hire-item img {
  display: block;
  width: 100%;
  height: auto;
}

.border-left-title {
  position: relative;
  font-size: 16px;
  padding-left: 12px;
  line-height: 1;
  vertical-align: top;
}
.border-left-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0380c7;
}

.news-picture-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.news-picture-items .news-picture-item {
  height: 325px;
  background-color: #f3f3f3;
  border-radius: 12px;
  overflow: hidden;
}
.news-picture-items .news-picture-item-cover {
  height: 228px;
  overflow: hidden;
}
.news-picture-items .news-picture-item-cover img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.news-picture-items .news-picture-item-cover img:hover {
  transform: scale(1.2);
}
.news-picture-items .news-picture-item-text {
  padding: 16px;
}
.news-picture-items .news-picture-item-text h3 {
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-picture-items .news-picture-item-text span {
  display: block;
  color: #5f5f5f;
  margin-top: 8px;
  font-size: 12px;
}

.contact-us {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.contact-us-text {
  line-height: 2;
}
.contact-us-text h3 {
  font-size: 28px;
  font-weight: 450;
  padding-bottom: 12px;
}
.contact-us-text p + p, .contact-us-text div {
  margin-top: 8px;
}
.contact-us-map {
  width: 50%;
}
.contact-us-map img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-us + .contact-us {
  margin-top: 100px;
}

.qywh-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 30px;
  padding: 0 50px;
}
.qywh-items > div {
  position: relative;
}
.qywh-items > div img {
  display: block;
  width: 100%;
  height: auto;
}
.qywh-items > div div {
  position: absolute;
  top: 40px;
  left: 30px;
}
.qywh-items > div div h3 {
  font-size: 22px;
  font-weight: 500;
}
.qywh-items > div div p {
  color: #434247;
  margin-top: 30px;
  line-height: 1.75;
}

.qywh-hj {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.qywh-hj div {
  position: relative;
}
.qywh-hj div img {
  display: block;
  width: 100%;
  height: auto;
}

.image-block {
  display: block;
  width: 100%;
  height: auto;
}

.p-text {
  text-align: justify;
  text-indent: 2em;
  line-height: 1.75;
}

.text-left {
  text-align: left;
}

.website-title + .p-text {
  margin-top: 20px;
}

.ldtd {
  list-style: none;
  line-height: 3;
}
.ldtd strong {
  display: inline-block;
  width: 120px;
}

.news-content {
  padding: 40px 0;
}/*# sourceMappingURL=style.css.map */