@charset "UTF-8";
@keyframes soundWave {
  0% {
    transform-origin: right center;
    transform: scaleX(var(--sx));
  }
  50% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(var(--sx));
  }
}

@keyframes slideToR {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideToL {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideToLH {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideToRH {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes trackingInContract {
  0% {
    letter-spacing: 0.6em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: var(--els);
    opacity: 1;
  }
}

@keyframes scaleInCenter {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInBckCenter {
  0% {
    -webkit-transform: perspective(32vw) translateZ(10vw);
    transform: perspective(32vw) translateZ(10vw);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(32vw) translateZ(0);
    transform: perspective(32vw) translateZ(0);
    opacity: 1;
  }
}

.animate__trackingInContract {
  -webkit-animation-name: trackingInContract;
  animation-name: trackingInContract;
  white-space: nowrap;
}

.animate__scaleInCenter {
  -webkit-animation-name: scaleInCenter;
  animation-name: scaleInCenter;
}

.animate__slideInBckCenter {
  -webkit-animation-name: slideInBckCenter;
  animation-name: slideInBckCenter;
}

.page-index,
.page-inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
}

.head {
  width: 100vw;
  height: 16vw;
  border-bottom: 0.13vw solid rgba(255, 255, 255, 0.1581);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000001;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 3.2vw;
}

.head .logo {
  font-size: 7.47vw;
  width: 34.4vw;
  height: 7.47vw;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  margin-right: auto;
}

.head .logo::before, .head .logo::after {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}

.head .logo::before {
  content: '\e614';
}

.head .logo::after {
  content: '\e633';
  opacity: 0;
}

.head .search-box {
  width: 7.2vw;
  height: 6.4vw;
  box-sizing: border-box;
  padding: 0 1.15vw;
  border-radius: 3.2vw;
  overflow: hidden;
  transition: all 0.5s;
  flex-shrink: 0;
  animation-name: yyl_fadeindown;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
  animation-delay: 0.5s;
}

.head .search-box .search-ipt {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.head .search-box .icon {
  display: inline-flex;
  width: 4.8vw;
  height: 4.8vw;
  align-items: center;
  justify-content: center;
  font-size: 5.97vw;
  transition: all 0.4s;
  cursor: pointer;
  color: #fff;
}

.head .search-box input {
  width: calc(100% - 6.4vw);
  height: 4.8vw;
  color: #111A34;
  line-height: 4.8vw;
  background: transparent;
  margin-left: 1.6vw;
  font-size: 3.2vw;
  opacity: 0;
}

.head .search-box input::placeholder {
  color: #C5CAD5;
}

.head .search-box.open {
  width: 42.13vw;
  background: #F0F3F5;
}

.head .search-box.open .icon {
  color: #858B9C;
  cursor: default;
  transform: scale(0.9);
}

.head .search-box.open input {
  opacity: 1;
}

.head .menu-icon {
  width: 6.4vw;
  height: 6.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  margin-left: 5.47vw;
  position: relative;
}

.head .menu-icon i {
  display: inline-block;
  width: 5.07vw;
  height: .53vw;
  border-radius: .27vw;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.5s;
  animation-play-state: running;
}

.head .menu-icon i + i {
  margin-top: .73vw;
}

.head .menu-icon i:nth-child(1) {
  --sx: 1;
  animation: soundWave 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s infinite alternate;
}

.head .menu-icon i:nth-child(2) {
  --sx: 0.6;
  animation: soundWave 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s infinite alternate;
}

.head .menu-icon i:nth-child(3) {
  --sx: 0.8;
  animation: soundWave 0.9s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s infinite alternate;
}

.head .menu-icon::before, .head .menu-icon::after {
  content: '';
  width: 6.67vw;
  height: .53vw;
  border-radius: .27vw;
  background: #fff;
  position: absolute;
  transition: all 0.5s;
  opacity: 0;
}

.head .menu-icon::before {
  top: 1.68vw;
  left: 0;
}

.head .menu-icon::after {
  top: 4.23vw;
  left: 0;
}

.head .menu-icon.open i {
  background: transparent !important;
  animation-play-state: paused;
}

.head .menu-icon.open::before, .head .menu-icon.open::after {
  top: 47%;
  opacity: 1;
  background: #111A34;
}

.head .menu-icon.open::before {
  transform: rotate(45deg);
}

.head .menu-icon.open::after {
  transform: rotate(-45deg);
}

.head .menu-list,
.head .menu-2rd {
  width: 100vw;
  height: calc(100vh - 16vw);
  position: fixed;
  top: 16vw;
  left: 0;
  z-index: 1000000;
  background: #F9FAFB;
  transform: translateX(100%);
  box-sizing: border-box;
  padding: 5.87vw 5.33vw;
  overflow: hidden;
  overflow-y: auto;
}

.head .menu-list.slide-r,
.head .menu-2rd.slide-r {
  animation: slideToR 0.4s linear forwards;
}

.head .menu-list.slide-l,
.head .menu-2rd.slide-l {
  animation: slideToL 0.4s linear forwards;
}

.head .menu-list.slide-lh,
.head .menu-2rd.slide-lh {
  animation: slideToLH 0.4s linear forwards;
}

.head .menu-list.slide-rh,
.head .menu-2rd.slide-rh {
  animation: slideToRH 0.4s linear forwards;
}

.head .menu-list .fir-link {
  width: 100%;
  height: 16vw;
  border-bottom: .27vw solid #F0F3F5;
}

.head .menu-list .fir-link a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head .menu-list .fir-link a b {
  font-size: 4.27vw;
  color: #111A34;
}

.head .menu-list .fir-link a .icon {
  width: 5.33vw;
  height: 5.33vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.33vw;
  color: #666F83;
}

.head .menu-2rd .icon {
  font-size: 5.33vw;
  color: #858B9C;
}

.head .menu-2rd .name {
  margin-top: 5.33vw;
  height: 16vw;
  font-size: 4.27vw;
  color: #111A34;
  font-weight: bold;
}

.head .menu-2rd li {
  width: 100%;
  height: 16vw;
  border-bottom: .27vw solid #F0F3F5;
}

.head .menu-2rd li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head .menu-2rd li a span {
  font-size: 4.27vw;
  color: #41485D;
}

.head .menu-2rd li a .icon {
  font-size: 5.33vw;
  color: #666F83;
}

.head .menu-2rd li.act a span {
  font-weight: bolder;
}

.head.white, .head.fixed-white {
  background: #fff;
}

.head.white .logo::before, .head.fixed-white .logo::before {
  opacity: 0;
}

.head.white .logo::after, .head.fixed-white .logo::after {
  opacity: 1;
}

.head.white .search-box .icon, .head.fixed-white .search-box .icon {
  color: #858B9C;
}

.head.white .menu-icon i, .head.white .menu-icon::before, .head.white .menu-icon::after, .head.fixed-white .menu-icon i, .head.fixed-white .menu-icon::before, .head.fixed-white .menu-icon::after {
  background: #111A34;
}

.foot {
  width: 100vw;
  height: 121.33vw;
  background: #111A34;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
}

.foot p {
  font-size: 3.2vw;
  line-height: 5.33vw;
  color: #fff;
  text-align: center;
}

.foot p .icon {
  font-size: 3.73vw;
  margin-right: 2.13vw;
}

.foot .info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.foot .info a {
  color: #fff;
}

.foot .info + .info {
  margin-top: 3.73vw;
}

.foot .qrcode {
  margin-top: 5.33vw;
}

.foot .qrcode .fullimg {
  width: 21.33vw;
  height: 21.33vw;
  border-radius: 2.13vw;
  overflow: hidden;
  margin: 0 auto 5px;
}

.foot .foot-slogan {
  width: 100vw;
  height: 30.93vw;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5.33vw;
}

.foot .foot-slogan .icon-color {
  font-size: 7.47vw;
  margin-bottom: 2.13vw;
}

.foot .foot-slogan::before {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0.2931;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.0474) 0%, rgba(255, 255, 255, 0.1965) 57%, rgba(255, 255, 255, 0.1954) 83%, rgba(255, 255, 255, 0.0108) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* 侧边工具栏 */
.aside-tool {
  width: 21.33vw;
  position: fixed;
  top: 65%;
  right: 1.07vw;
  z-index: 10000;
  transform-origin: right center;
  transform: scale(0.65);
}

.aside-tool li {
  width: 21.33vw;
  height: 21.33vw;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #E6454E 0%, #C82126 100%);
  border: 0.96vw solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.07vw;
  cursor: pointer;
}

.aside-tool li .icon {
  font-size: 14.93vw;
}

.aside-tool li p {
  font-size: 3.73vw;
  line-height: 6.4vw;
  letter-spacing: .53vw;
  margin-top: .53vw;
}

.aside-tool li p span {
  font-family: 'AlibabaPuHuiTi';
  display: inline-block;
  text-shadow: 0.27vw 1.07vw .8vw #BD2328;
  animation: jump 1.2s infinite;
}

.aside-tool li p span:nth-child(2) {
  animation-delay: 0.2s;
}

.aside-tool li p span:nth-child(3) {
  animation-delay: 0.4s;
}

.aside-tool li.back-top {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(40%);
  transition: all 0.4s;
}

.aside-tool li.back-top .icon {
  transition: all 0.4s;
  font-size: 7.47vw;
}

.aside-tool li.back-top.show {
  transform: translateY(0);
  opacity: 1;
}

.main {
  width: 100vw;
  min-height: calc(100% - 137.33vw);
}

.main .inner-banner {
  width: 100vw;
  height: 76vw;
  position: relative;
  padding-bottom: 1.07vw;
  overflow: hidden;
}

.main .inner-banner .banner-img {
  width: 100%;
  height: 100%;
}

.main .inner-banner .banner-en,
.main .inner-banner .banner-cn {
  position: absolute;
  left: 50%;
}

.main .inner-banner .banner-en img,
.main .inner-banner .banner-cn img {
  width: 100%;
}

.main .inner-banner .banner-cn {
  width: 34.13vw;
  top: 33.6vw;
  margin-left: -17.07vw;
}

.main .inner-banner .breadcrumb {
  width: 100%;
  height: 5.33vw;
  font-size: 3.2vw;
  color: #fff;
  line-height: 5.33vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 47.2vw;
  left: 0;
}

.main .inner-banner .breadcrumb span {
  margin-right: .53vw;
}

.main .inner-banner .breadcrumb a {
  color: #FFFFFF;
}

.main .inner-banner::before {
  content: '';
  width: 100vw;
  height: 1.07vw;
  background: linear-gradient(270deg, #EECA6A 12%, #DEB750 27%, #E9C056 58%, #FFF2D6 82%, #CE8C2B 98%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.main .inner-menu {
  width: 100vw;
  height: 16vw;
  background: #FFFFFF;
  border-bottom: .13vw solid #F9FAFB;
  box-sizing: border-box;
  position: relative;
}

.main .inner-menu .inner-anchor-point {
  display: none;
}

.main .inner-menu-list {
  height: 100%;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-align: center;
}

.main .inner-menu-list li {
  width: 37.33vw;
  flex-shrink: 0;
  position: relative;
}

.main .inner-menu-list li a {
  width: 100%;
  display: inline-block;
  font-size: 4.27vw;
  line-height: 16vw;
  color: #666F83;
  position: relative;
  z-index: 1;
  text-align: center;
}

.main .inner-menu-list li.current a {
  font-weight: bold;
  color: #111A34;
}

.main .inner-menu-list li.current::before {
  content: "";
  width: 8.53vw;
  height: .53vw;
  border-radius: .27vw;
  background: #C82126;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -4.27vw;
}

.main .inner-menu-list.flex_sb {
  justify-content: space-between;
}

.main .inner-menu-list.flex_c {
  justify-content: center;
}

.page-box {
  width: 100%;
  height: 16vw;
  border-radius: 2.13vw;
  background: #fff;
  display: flex;
  align-items: center;
  margin-top: 3.2vw;
}

.page-box .page-list {
  width: calc(100% - 32vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.page-box .page-list::before, .page-box .page-list::after {
  content: '';
  width: 30.67vw;
  height: 16vw;
  position: absolute;
  top: 0;
  z-index: 1;
}

.page-box .page-list::before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #F9FAFB 89%);
  left: 0;
}

.page-box .page-list::after {
  background: linear-gradient(270deg, #F9FAFB 0%, rgba(255, 255, 255, 0) 89%);
  right: 0;
}

.page-box .page-item {
  width: 12.27vw;
  height: 16vw;
  position: relative;
}

.page-box .page-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 16vw;
  color: #BBBFC8;
}

.page-box .page-item.cur {
  z-index: 2;
}

.page-box .page-item.cur a {
  color: #C82126;
}

.page-box .prev,
.page-box .next {
  width: 16vw;
  height: 16vw;
}

.page-box .prev a,
.page-box .next a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-box .prev .icon,
.page-box .next .icon {
  display: inline-flex;
  width: 6.4vw;
  height: 6.4vw;
  border-radius: 50%;
  background: #EBEEF2;
  align-items: center;
  justify-content: center;
  font-size: 4vw;
  color: #858B9C;
}

.fullimg {
  overflow: hidden;
}

.fullimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circles {
  width: 4.8vw;
  height: 4.8vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.circles img {
  width: 100%;
}

/* 最多显示一行 */
.line-text--one {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 显示多行 */
.line-text--multiple {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* 字重 Thin */
.fw--100 {
  font-weight: 100 !important;
}

/* 字重 Extra Light | Ultra Light */
.fw--200 {
  font-weight: 200 !important;
}

/* 字重 Light */
.fw--300 {
  font-weight: 300 !important;
}

/* 字重 Regular | Book | Roman | Normal */
.fw--400 {
  font-weight: 400 !important;
}

/* 字重 Medium */
.fw--500 {
  font-weight: 500 !important;
}

/* 字重 Semi Bold | Demi Bold */
.fw--600 {
  font-weight: 600 !important;
}

/* 字重 Bold */
.fw--700 {
  font-weight: 700 !important;
}

/* 字重 Extra Bold | Ultra Bold */
.fw--800 {
  font-weight: 800 !important;
}

/* 字重 Black | Heavy */
.fw--900 {
  font-weight: 900 !important;
}
<!--0.00020098686218262-->