@charset "UTF-8";
@font-face {
  font-family: "Montserrat-Regular";
  src: url(../fonts/Montserrat-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url(../fonts/Montserrat-Medium.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url(../fonts/Montserrat-Bold.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
 * 富文本初始化
 */
/* 全局样式变量 */
:root {
  --sk-font-Light: 'Plus Jakarta Sans';
  --sk-font-Regular: 'Plus Jakarta Sans';
  --sk-font-Medium: 'Plus Jakarta Sans Medium';
  --sk-font-Bold: 'Plus Jakarta Sans SemiBold';
  --sk-font-SemiBold: 'Plus Jakarta Sans SemiBold';
  --sk-font-Num: 'Plus Jakarta Sans Medium';
  --totalH: 0.72rem;
  /* 以下颜色根据设计稿的不同来设置 */
  --sk-global-color: #E60012;
  /* -------------- 主题色 ---------------*/
  --fcolor-default: #252A35;
  /* -------------- 字体默认色 ---------------*/
  --fcolor-black: #000000;
  --fz-h1: .56rem;
  /* -------------- 一级标题字号 ---------------*/
  --fz-h2: .48rem;
  /* -------------- 一级标题字号 ---------------*/
  --fz-context: .28rem;
  /* -------------- 正文字号 ------------------*/
  --lh-h1: .56rem;
  /* -------------- 一级标题行高 ---------------*/
  --lh-h2: .56rem;
  /* -------------- 二级标题行高 ---------------*/
  --lh-context: .56rem;
  /* -------------- 正文行高 -------------------*/
  /* 层级 */
  --sk-zIndex-1: 1;
  /* --------------页面元素层级 --*/
  --sk-zIndex-2: 2;
  /* --------------页面元素层级 --*/
  --sk-zIndex-3: 3;
  /* --------------页面元素层级 --*/
  --sk-zIndex-10: 10;
  /* --------------页面元素层级 --*/
  --sk-zIndex-100: 100;
  /* --------------头部导航层级 --*/
  --sk-zIndex-999: 999;
  /* --------------弹窗层级 ------*/
  --sk-zIndex-1000: 1000;
}

@media screen and (max-width: 800px) {
  :root {
    --totalH: 0.88rem;
  }
}
@-webkit-keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
            transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
            transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@media screen and (min-width: 800px) {
  .fadeInUpSmall {
    opacity: 0;
    -webkit-animation-name: fadeInUpSmall;
            animation-name: fadeInUpSmall;
  }
}
@media screen and (max-width: 800px) {
  .fadeInUpSmall {
    visibility: visible !important;
  }
}

.svg-ctx {
  object-fit: contain;
}
.svg-ctx path {
  fill: currentColor;
}
.svg-ctx ellipse {
  stroke: currentColor;
}

.fit-image {
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.fit-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topA {
  cursor: pointer;
  position: fixed;
  z-index: 9;
  right: 0.3rem;
  bottom: 0.6rem;
  border-radius: 50%;
  width: 0.48rem;
  height: 0.48rem;
  opacity: 0;
  visibility: hidden;
  background: url(../images/base/demoImg/topA.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topA.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .topA {
    right: 0.42rem;
    bottom: 1.2rem;
    width: 0.64rem;
    height: 0.64rem;
  }
}

.blocker {
  z-index: 100 !important;
}

.modal {
  width: 100% !important;
  max-width: 11rem !important;
  padding: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.modal-video .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal-video .video-container > video,
.modal-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-video .video-container iframe html body video {
  width: 100% !important;
  height: 100% !important;
}

.-scroll {
  max-height: 2rem;
  overflow: auto;
}
.-scroll::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #666666;
}
.-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #666666;
}
.-scroll::-webkit-scrollbar-width {
  width: 0.08rem;
}
.-scroll::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
@media screen and (max-width: 800px) {
  .-scroll {
    max-height: 2.4rem;
  }
}

.sk_select {
  --h: .48rem;
  position: relative;
  width: 1.8rem;
}
.sk_select.-full {
  width: 100%;
}
.sk_select.on {
  z-index: 2;
}
.sk_select.on .-select-front::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk_select .-select-front {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.12rem 0.16rem;
  height: var(--h);
  background: white;
}
.sk_select .-select-front input::-webkit-input-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front input::-moz-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front input:-moz-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front input:-ms-input-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front textarea::-webkit-input-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front textarea::-moz-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front textarea:-moz-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front textarea:-ms-input-placeholder {
  color: "#6E798F";
}
.sk_select .-select-front input {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  pointer-events: none;
  width: 100%;
  font-size: 0.14rem;
}
.sk_select .-select-front::after {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  background: url(../images/base/selectDown.svg) center center no-repeat;
  background-size: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.1rem;
  left: 0;
  box-shadow: 0px 0px 0.2rem 0px rgba(218, 218, 218, 0.25);
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
}
.sk_select .-select-layer .-inner {
  background-color: white;
  padding: 0.16rem 0.04rem 0.1rem 0.16rem;
}
.sk_select .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Medium);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.sk_select .-select-layer .-inner dl dd:hover {
  color: #000;
}
@media screen and (max-width: 800px) {
  .sk_select {
    --h: .9rem;
    width: 100%;
  }
  .sk_select .-select-front {
    padding: 0.24rem 0.32rem 0.24rem 0.32rem;
    height: var(--h);
  }
  .sk_select .-select-front input {
    font-size: 0.26rem;
  }
  .sk_select .-select-front::after {
    width: 0.48rem;
    height: 0.48rem;
  }
  .sk_select .-select-layer .-inner {
    border-radius: 0.08rem;
    padding: 0.24rem 0.2rem 0.3rem 0.24rem;
  }
  .sk_select .-select-layer .-inner dl dd {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}

.-sk-nav {
  position: -webkit-sticky;
  position: sticky;
  top: var(--headH);
  border-bottom: 0.01rem solid #E8E8E8;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.15rem);
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-sk-nav.-top0 {
  top: 0;
}
.-sk-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 0.6rem;
}
.-sk-nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.64rem;
}
.-sk-nav ul li:last-child {
  margin-right: 0;
}
.-sk-nav ul li.on a {
  color: #000;
  font-family: var(--sk-font-Bold);
}
.-sk-nav ul li.on a::before {
  opacity: 1;
  visibility: visible;
}
.-sk-nav ul li a {
  position: relative;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0.18rem 0;
}
.-sk-nav ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  width: 100%;
  height: 0.01rem;
  background: -webkit-linear-gradient(left, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
  background: linear-gradient(to right, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 800px) {
  .-sk-nav ul li a:hover {
    color: #000000;
  }
}
@media screen and (max-width: 800px) {
  .-sk-nav ul {
    position: relative;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 1rem;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 0.4rem;
  }
  .-sk-nav ul li {
    margin-right: 0.7rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .-sk-nav ul li a {
    position: relative;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.24rem;
    line-height: 0.24rem;
    padding: 0.38rem 0;
  }
  .-sk-nav ul li a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 100%;
    height: 2px;
    background: -webkit-linear-gradient(left, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
    background: linear-gradient(to right, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
    opacity: 0;
    visibility: hidden;
  }
}

.sk-list {
  --count: 1;
  --gapX: .32rem;
  --gapY: .32rem;
  --width: calc((100% - var(--gapX) * var(--count)) / var(--count));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: calc(-1 * var(--gapY) / 2) calc(-1 * var(--gapX) / 2);
}
.sk-list .sk-item {
  width: var(--width);
  margin: calc(var(--gapY) / 2) calc(var(--gapX) / 2);
}

.sk-swiper {
  overflow: hidden;
}
.sk-swiper .sk-swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.sk-swiper .sk-dots {
  margin-top: 0.32rem;
  margin-bottom: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sk-swiper .sk-dots.swiper-pagination-bullets span {
  width: 0.08rem;
  height: 0.08rem;
  margin-right: 0.05rem;
  border-radius: 50%;
  background-color: #00BEF2;
  opacity: 0.5;
}
.sk-swiper .sk-dots.swiper-pagination-bullets span.swiper-pagination-bullet-active {
  opacity: 1;
}
.sk-swiper .sk-dots.swiper-pagination-bullets span:last-child {
  margin-right: 0;
}
.sk-swiper .sk-dots.swiper-pagination-progressbar {
  position: relative;
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
}
.sk-swiper .sk-dots.swiper-pagination-progressbar span {
  background: #00BEF2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.sk-swiper .sk-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.32rem;
}
.sk-swiper .sk-arrow .prev,
.sk-swiper .sk-arrow .next {
  cursor: pointer;
  font-size: 0.2rem;
  color: #000000;
}
.sk-swiper .sk-arrow .prev {
  margin-right: 0.12rem;
}

/* 集合属性（主题样式） */
body.show a,
body.show .transition,
body.show :before,
body.show img {
  -webkit-transition: All 0.3s ease;
  transition: All 0.3s ease;
}

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

html {
  font-size: 100px;
  overflow-x: hidden;
}

body {
  font-family: var(--sk-font-Regular);
  font-size: 12px;
  color: var(--fcolor-default);
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  background-color: white;
}
body.show {
  opacity: 1;
}

a {
  color: var(--fcolor-default);
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:active {
  star: expression(this.onFocus=this.blur());
}
a:link {
  text-decoration: none;
  outline: none;
}
a:visited {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
  outline: none;
}

li {
  list-style: outside none;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  font-family: var(--sk-font-Bold);
}

textarea,
input {
  background: transparent;
  color: var(--fcolor-default);
  outline: none;
  border: 0;
  font-family: var(--sk-font-Regular);
}

em {
  font-style: normal;
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  object-fit: cover;
}

.demo-page {
  padding-bottom: 3rem;
}
.demo-page .bg-gray {
  background-color: #f5f5f5;
}
.demo-page .bg-wihte {
  background-color: #ffffff;
}
.demo-page img, .demo-page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-page .page-main {
  overflow: hidden;
}
.demo-page .page-main .wal {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.demo-page .page-main .wal .-container {
  margin-top: 0.64rem;
}
.demo-page .page-main .wal .-container:first-child {
  margin-top: 0;
}
.demo-page .page-main .wal .-container .-title {
  font-size: 0.28rem;
}
.demo-page .page-main .wal .-container .-body {
  padding: 0.2rem;
  border-radius: 0.08rem;
  margin-top: 0.32rem;
}
.demo-page .page-main .wal .-container .-body.nopading {
  padding: 0;
}

.wal {
  max-width: 15.2rem;
  width: 100%;
  margin: 0 auto;
}

.wal2 {
  max-width: 17.92rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1700px) {
  body {
    font-size: 16px;
  }
  html {
    font-size: 94px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }
  html {
    font-size: 82px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 68px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 70px;
  }
}
@media screen and (min-width: 800px) {
  .pc-show {
    display: block;
  }
  .phone-show {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 72px;
  }
  .wal {
    width: 100%;
    padding: 0 0.3rem 0 0.32rem;
  }
  .wal2 {
    width: 100%;
    padding: 0 0.3rem 0 0.32rem;
  }
  .phone-show {
    display: block;
  }
  .pc-show {
    display: none !important;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 62px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 50px;
  }
}
.__resource {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.__resource img,
.__resource video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mask__gradient__filter {
  position: relative;
}
.mask__gradient__filter::before {
  content: "";
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask: -webkit-linear-gradient(transparent, #000, #000);
          mask: linear-gradient(transparent, #000, #000);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .mask__gradient__filter::before {
    backdrop-filter: blur(6px);
  }
}

.g-text-hover {
  --color: #252A35;
}
.g-text-hover .text-underline {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(96%, transparent), color-stop(0, #0b5ace));
  background-image: -webkit-linear-gradient(top, transparent 96%, var(--color) 0);
  background-image: linear-gradient(to bottom, transparent 96%, var(--color) 0);
  background-repeat: no-repeat;
  background-size: 0 100%;
  text-decoration: none;
  -webkit-transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
}
@media screen and (min-width: 800px) {
  .g-text-hover:hover .text-underline {
    background-size: 100% 100%;
  }
}

@media screen and (max-width: 800px) {
  .default-btn {
    padding-bottom: 0.04rem;
  }
}
.default-btn .a {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 0.48rem;
  padding: 0 0.32rem;
  letter-spacing: 2px;
  color: var(--color, #fff);
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 800px) {
  .default-btn .a {
    height: 0.92rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.6rem;
  }
}
.default-btn .a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: calc(100% - 0.04rem);
  width: calc(100% - 0.04rem);
  --computed-border: var(--border, var(--color, #fff));
  border: 0.02rem solid var(--computed-border, #fff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .default-btn .a::before {
    border-width: 2px;
  }
}
.default-btn .a::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 0;
  opacity: 0;
}
.default-btn .a span {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .default-btn .a:hover {
    border-color: transparent;
  }
  .default-btn .a:hover::before {
    opacity: 0;
  }
  .default-btn .a:hover::after {
    opacity: 1;
  }
  .default-btn .a:hover span {
    color: #fff;
  }
}
.default-btn.black {
  --color: var(--fcolor-default);
}
.default-btn.hover .a {
  border-color: transparent;
}
.default-btn.hover .a::before {
  opacity: 0;
}
.default-btn.hover .a::after {
  opacity: 1;
}
.default-btn.hover .a span {
  color: #fff;
}
@media screen and (min-width: 800px) {
  .default-btn.hover .a:hover {
    opacity: 0.8;
  }
}
.default-btn.white {
  --color: #252A35;
  --border: #fff;
}
.default-btn.white .a {
  background-color: #fff;
}
.default-btn.bg-black {
  --color: var(--fcolor-default);
}
.default-btn.bg-black .a {
  color: #fff;
  background-color: var(--fcolor-default);
}

.default-label {
  color: #FFFFFF;
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
  display: inline-block;
  font-family: var(--sk-font-SemiBold);
  position: relative;
}
@media screen and (max-width: 800px) {
  .default-label {
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding-left: 0.32rem;
  }
}
.default-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.16rem;
  display: block;
  width: 0.06rem;
  height: 0.06rem;
  background: -webkit-linear-gradient(315deg, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(135deg, #00FFFF 0%, #0059FF 100%);
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  .default-label::before {
    width: 0.12rem;
    height: 0.12rem;
    left: 0;
  }
}
.default-label.black {
  color: #6E798F;
}

.privacy__policy__container {
  position: fixed;
  z-index: 80;
  bottom: 0.16rem;
  left: 0.16rem;
  width: 3.86rem;
  padding: 0.24rem 0.2rem 0.24rem 0.24rem;
  background: #FFFFFF;
  box-shadow: 0rem -0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .privacy__policy__container {
    width: calc(100vw - 0.46rem);
    left: 0.16rem;
    bottom: 0.32rem;
    padding: 0.48rem;
  }
}
.privacy__policy__container.show {
  opacity: 1;
  visibility: visible;
}
.privacy__policy__container .privacy__policy__text {
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .privacy__policy__container .privacy__policy__text {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.privacy__policy__container .privacy__policy__text a {
  font-size: 0.12rem;
  line-height: 0.24rem;
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .privacy__policy__container .privacy__policy__text a {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.privacy__policy__container .btn-s {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .privacy__policy__container .btn-s {
    margin-top: 0.48rem;
  }
}
.privacy__policy__container .btn-s .btn {
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .privacy__policy__container .btn-s .btn {
    margin-bottom: 0.16rem;
  }
  .privacy__policy__container .btn-s .btn .a {
    height: 0.76rem;
  }
  .privacy__policy__container .btn-s .btn .a::before {
    border-width: 0.02rem;
  }
}
.privacy__policy__container .btn-s .btn:last-child {
  margin-bottom: 0;
}
.privacy__policy__container .btn-s .btn .a {
  width: 100%;
}

.g-header {
  height: var(--headerHeight, var(--totalH));
}
.g-header::after {
  content: "";
  backdrop-filter: blur(10px);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 96;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.g-header .g-head {
  background-color: var(--g-head-bgColor, #fff);
  position: fixed;
  height: var(--totalH);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 0.1rem 0.13rem rgba(0, 0, 0, 0.02);
}
.g-header .g-head .g-head-main {
  height: var(--totalH);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g-header .g-head .g-head-main .logo-box .img-box {
  height: 0.4rem;
  display: block;
}
.g-header .g-head .g-head-main .logo-box .img-box .img {
  height: 0.4rem;
  display: var(--logo-img-display, block);
}
.g-header .g-head .g-head-main .logo-box .img-box .img.fff {
  display: var(--logo-img-display-fff, none);
}
.g-header .g-head .g-head-main .center-nav {
  height: 100%;
}
.g-header .g-head .g-head-main .center-nav > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item {
  height: 100%;
  padding: 0 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item.active .nav-a::after, .g-header .g-head .g-head-main .center-nav > ul .nav-item:hover .nav-a::after {
  opacity: 1;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .nav-a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  position: relative;
  letter-spacing: 1px;
  color: var(--font-color, #252A35);
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .nav-a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.02rem;
  left: 0;
  bottom: 0.16rem;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer {
  position: fixed;
  max-height: 80vh;
  top: var(--totalH);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #FFFFFF;
  width: 100%;
  left: 0;
  height: 0;
  overflow: hidden;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  height: 0;
  width: 100%;
  border-top: 0.01rem solid #E6E6E6;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp {
  padding-top: 0.48rem;
  padding-bottom: 0.64rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .default-label, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .default-label {
  color: #252A35;
  font-size: 0.2rem;
  line-height: 1;
  letter-spacing: 2px;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .default-label::before, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .default-label::before {
  left: -0.22rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 11.4rem;
  position: relative;
  row-gap: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box {
  width: 3.68rem;
  height: 2.08rem;
  position: relative;
  margin-right: 0.16rem;
  overflow: hidden;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box:nth-child(3n), .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box:last-child, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box:nth-child(3n), .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box:last-child {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box .bg-img, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box .con-box, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box .con-box {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box .con-box .cell-box, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box .con-box .cell-box {
  height: 0.56rem;
  padding: 0 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box .con-box .cell-box::before, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box .con-box .cell-box::before {
  opacity: 1;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box .con-box .cell-box .title, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box .con-box .cell-box .title {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #fff;
  --color: #fff;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box .con-box .cell-box .icon, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box .con-box .cell-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box .con-box:hover .cell-box .icon, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box .con-box:hover .cell-box .icon {
  opacity: 1;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.technology-wp .card-list .card-box:hover .bg-img, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.newsroom-wp .card-list .card-box:hover .bg-img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .default-label {
  top: 0;
  color: #252A35;
  font-size: 0.2rem;
  line-height: 1;
  letter-spacing: 2px;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .default-label::before {
  left: -0.22rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box {
  width: 4.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.16rem;
  border-left: 0.01rem solid #E6E6E6;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .cell-box {
  width: 2.72rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.16rem 0.32rem;
  font-family: var(--sk-font-SemiBold);
  font-size: 0.2rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .cell-box:hover {
  background: #F7F8FA;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .cell-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
  margin-left: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .cell-box .icon path {
  stroke: #252A35;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .link-box {
  display: block;
  padding: 0.16rem 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  position: relative;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .link-box:hover {
  background: #F7F8FA;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .link-box .icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .header-img-swiper {
  display: block;
  margin-left: 0.32rem;
  width: 3.68rem;
  height: 2.08rem;
  overflow: hidden;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .header-img-swiper .img-box {
  width: 100%;
  height: 100%;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .class-box .link-list .header-img-swiper .img-box .img {
  height: 100%;
  width: 100%;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.products-wp .class-list .pro-img {
  width: 2.24rem;
  height: 2.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .default-label, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .default-label {
  top: 0;
  color: #252A35;
  font-size: 0.2rem;
  line-height: 1;
  letter-spacing: 2px;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .default-label::before, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .default-label::before {
  left: -0.22rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box {
  width: 4.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 0.16rem;
  border-left: 0.01rem solid #E6E6E6;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .cell-box, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .cell-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.16rem 0.32rem;
  font-family: var(--sk-font-SemiBold);
  font-size: 0.2rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .cell-box:hover, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .cell-box:hover {
  background: #F7F8FA;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .cell-box .icon, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .cell-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
  margin-left: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .cell-box .icon path, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .cell-box .icon path {
  stroke: #252A35;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .link-box, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .link-box {
  display: block;
  padding: 0.16rem 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  position: relative;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .link-box:hover, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .link-box:hover {
  background: #F7F8FA;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .link-box .icon, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .link-box .icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .header-img-swiper, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .header-img-swiper {
  display: block;
  margin-left: 0.32rem;
  width: 3.68rem;
  height: 2.08rem;
  overflow: hidden;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .header-img-swiper .img-box, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .header-img-swiper .img-box {
  width: 100%;
  height: 100%;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .header-img-swiper .img-box .img, .g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.company-wp .class-list .class-box .header-img-swiper .img-box .img {
  height: 100%;
  width: 100%;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.solutions-wp .class-list .class-box .cell-box {
  letter-spacing: 2px;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.8rem;
  margin-right: 1.76rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box:last-child {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box .img-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  background: #F7F8FA;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box .img-box .img {
  width: 0.24rem;
  height: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box .img-box .img path {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box .text {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box:hover .img-box {
  background: #252A35;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box:hover .img-box .img path {
  fill: #ffffff;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.support-wp .link-list .link-box:hover .text {
  color: #002A35;
}
.g-header .g-head .g-head-main .g-head-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .g-head-right .contact-btn {
  height: 0.4rem;
  padding: 0 0.24rem 0 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  color: #FFFFFF;
  font-family: var(--sk-font-SemiBold);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
}
.g-header .g-head .g-head-main .g-head-right .contact-btn .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.g-header .g-head .g-head-main .g-head-right .contact-btn .text {
  margin-left: 0.08rem;
}
.g-header .g-head .g-head-main .g-head-right .contact-btn:hover {
  opacity: 0.8;
}
.g-header .g-head .g-head-main .g-head-right .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0.32rem;
}
.g-header .g-head .g-head-main .g-head-right .search-box .icon {
  width: 100%;
  height: 100%;
}
.g-header .g-head .g-head-main .g-head-right .search-box .icon path,
.g-header .g-head .g-head-main .g-head-right .search-box .icon circle {
  stroke: var(--font-color, #252A35);
}
.g-header .g-head .g-head-main .g-head-right .language-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0.32rem;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .language-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.g-header .g-head .g-head-main .g-head-right .language-box .icon ellipse,
.g-header .g-head .g-head-main .g-head-right .language-box .icon circle,
.g-header .g-head .g-head-main .g-head-right .language-box .icon line {
  stroke: var(--font-color, #252A35);
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-layer {
  position: absolute;
  right: -0.48rem;
  top: 0.24rem;
  padding-top: 0.4rem;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-layer .link-list-box {
  min-width: 1.84rem;
  padding: 0.16rem 0.08rem;
  background: #FFFFFF;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-layer .link-list-box .link-box {
  padding: 0.08rem 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-layer .link-list-box .link-box:hover {
  background: #F7F8FA;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-layer .link-list-box .link-box.on {
  background: #F7F8FA;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-layer .link-list-box .link-box.on span {
  background: -webkit-linear-gradient(right, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(-90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.g-header .g-head .g-head-main .g-head-right .language-box:hover .language-layer {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.g-header.bg-transparent {
  --headerHeight: 0;
  --g-head-bgColor: transparent;
  --logo-img-display: none;
  --logo-img-display-fff: block;
  --font-color: #FFFFFF;
  --language-link-color: rgba(255, 255, 255, 0.6);
  --language-link-on-color: #FFFFFF;
}
.g-header.bg-transparent::before {
  content: "";
  z-index: 10;
  position: absolute;
  width: 100%;
  height: var(--totalH);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.g-header.isScroll {
  --g-head-bgColor: #fff;
  --logo-img-display: block;
  --logo-img-display-fff: none;
  --font-color: #252A35;
  --language-link-color: #BEC6D9;
  --language-link-on-color: #252A35;
}
.g-header.hide .g-head,
.g-header.hide .g-head-phone {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.g-header.dialog__wrapper {
  --g-head-bgColor: #fff;
  --logo-img-display: block;
  --logo-img-display-fff: none;
  --font-color: #252A35;
}
.g-header.dialog__wrapper::after {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .g-header {
    --totalH: 0.88rem;
    height: var(--totalH);
  }
  .g-header .g-head-phone {
    height: var(--totalH);
    width: 100%;
    position: fixed;
    z-index: 100;
    background-color: #fff;
    border-bottom: 0.02rem solid #E6E6E6;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .g-header .g-head-phone .head-wal {
    height: 100%;
    width: 100%;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .logo-box .img-box {
    display: block;
    height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .logo-box .img-box .img {
    height: 100%;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-box {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-box .icon {
    height: 100%;
    width: 100%;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .tree-box {
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.32rem;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .tree-box .img {
    height: 100%;
    width: 100%;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .tree-box .img.tree-img {
    display: block;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .tree-box .img.close-img {
    display: none;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .tree-box.active .tree-img {
    display: none;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .tree-box.active .close-img {
    display: block;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper {
    position: fixed;
    left: 0;
    top: var(--totalH);
    height: calc(100vh - var(--totalH));
    width: 100vw;
    background: #FFFFFF;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    -webkit-transform: translateX(110%);
        -ms-transform: translateX(110%);
            transform: translateX(110%);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper.show {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box {
    padding-top: 0.64rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li {
    margin-bottom: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .nav-li-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .nav-li-head .text {
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
    letter-spacing: 1px;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .nav-li-head .img-box {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .nav-li-head .img-box .img {
    width: 100%;
    height: 100%;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    background: #FFFFFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow-y: auto;
    padding: 0.64rem 0.3rem 0.64rem 0.32rem;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages.show {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .return-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .return-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .return-btn .text {
    margin-left: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .detail-title {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.48rem;
    letter-spacing: 2px;
    font-family: var(--sk-font-SemiBold);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list {
    margin-top: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box {
    margin-bottom: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .cell-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0.32rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .cell-box .text {
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .cell-box .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .link-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0.16rem 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .link-box:active {
    background: #F7F8FA;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .link-box .icon {
    display: block;
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.32rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .header-img-swiper {
    display: block;
    width: 100%;
    height: 3.84rem;
    overflow: hidden;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .header-img-swiper .img-box {
    width: 100%;
    height: 100%;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .cell-link-list .class-list .class-box .header-img-swiper .img-box .img {
    height: 100%;
    width: 100%;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list {
    margin-top: 0.96rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list .icon-link {
    width: 50%;
    padding: 0 0.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.8rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list .icon-link .img-box {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: #F7F8FA;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list .icon-link .img-box .img {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list .icon-link .text {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list .icon-link:active .img-box {
    background: #252A35;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list .icon-link:active .img-box .img path {
    fill: #ffffff;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .icon-link-list .icon-link:active .text {
    color: #002A35;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .link-list-box {
    margin-top: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .link-list-box .link-box {
    display: block;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .nav-list-box .nav-li .detail-pages .link-list-box .link-box:active {
    background: #F7F8FA;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-box {
    position: absolute;
    bottom: 0.56rem;
    left: 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-box .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-box .icon circle,
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-box .icon ellipse,
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-box .icon line {
    stroke: #252A35;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-box .text {
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 2px;
    font-family: var(--sk-font-SemiBold);
    margin-left: 0.32rem;
    margin-right: 0.16rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    background: #FFFFFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow-y: auto;
    padding: 0.64rem 0.3rem 0.64rem 0.32rem;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail.show {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .return-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .return-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .return-btn .text {
    margin-left: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .detail-title {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.48rem;
    letter-spacing: 2px;
    font-family: var(--sk-font-SemiBold);
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .link-list-box {
    margin-top: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .link-list-box .link-box {
    display: block;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .link-list-box .link-box.on {
    background: #F7F8FA;
  }
  .g-header .g-head-phone .head-wal .nav-list__wrapper .language-detail .link-list-box .link-box.on span {
    background: -webkit-linear-gradient(right, #00FFFF 0%, #0059FF 100%);
    background: linear-gradient(-90deg, #00FFFF 0%, #0059FF 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
}
.g-header .switch-language-dialog__wrapper {
  position: fixed;
  z-index: 200;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.g-header .switch-language-dialog__wrapper.show {
  opacity: 1;
  visibility: visible;
}
.g-header .switch-language-dialog__wrapper .dialog_box {
  width: 7.52rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box {
    width: calc(100vw - 0.62rem);
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .header-box {
  height: 0.72rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .header-box {
    height: 1.44rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .header-box .close-img {
  cursor: pointer;
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  top: 0.24rem;
  right: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .header-box .close-img {
    width: 0.48rem;
    height: 0.48rem;
    top: 0.48rem;
    right: 0.32rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .header-box .title {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .header-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body {
  max-height: 4.86rem;
  overflow-y: auto;
  padding: 0.24rem 0.32rem 0.48rem;
  scrollbar-width: thin;
  scrollbar-color: #BEC6D9 transparent;
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body {
    max-height: calc(100vh - 3.48rem);
    padding: 0.32rem 0.32rem 0.6rem;
    padding-right: 0.12rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body::-webkit-scrollbar-track {
  background: transparent;
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body::-webkit-scrollbar-thumb {
  background: #BEC6D9;
  border-radius: 0;
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box {
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box {
    margin-top: 0.48rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box:first-child {
  margin-top: 0;
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .label {
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .label {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list {
  margin-top: 0.14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list {
    margin-top: 0.32rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card {
  width: calc(50% - 0.08rem);
  min-height: 0.52rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #F7F8FA;
  padding: 0.1rem 0.12rem;
  cursor: pointer;
  margin-top: 0.16rem;
  margin-right: 0.16rem;
  border: 0.02rem solid #F7F8FA;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card {
    width: 100%;
    min-height: 0.96rem;
    padding: 0.18rem 0.32rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card:hover, .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card.on {
  border: 0.02rem solid #252A35;
}
@media screen and (min-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card:hover, .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card.on {
    border: 0.03rem solid #252A35;
  }
}
@media screen and (min-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card:nth-child(2n) {
    margin-right: 0;
  }
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card:first-child {
    margin-top: 0;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card .left-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card .left-box .flag-img {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card .left-box .flag-img {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card .left-box .name {
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card .left-box .name {
    margin-left: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card .value {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #6E798F;
}
@media screen and (max-width: 800px) {
  .g-header .switch-language-dialog__wrapper .dialog_box .dialog__body .item-box .language-list .language-card .value {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}

.index-page .main {
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .index-page .main {
    padding-bottom: 1.28rem;
  }
}
.index-page .__g_banner {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.index-page .__g_banner .banner-swiper-container {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .banner-swiper-container {
    height: 9.6rem;
  }
}
.index-page .__g_banner .banner-swiper-container .__pp_con {
  height: 100%;
}
.index-page .__g_banner .banner-swiper-container .__pp_con .__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .banner-swiper-container .__pp_con .__container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.index-page .__g_banner .banner-swiper-container .__pp_con .__container .class {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  letter-spacing: 2px;
}
.index-page .__g_banner .banner-swiper-container .__pp_con .__container .title {
  margin-top: 0.08rem;
  font-size: 0.64rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .banner-swiper-container .__pp_con .__container .title {
    margin-top: 0.96rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.index-page .__g_banner .banner-swiper-container .__pp_con .__container .tag {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.index-page .__g_banner .banner-swiper-container .__pp_con .__container .btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .banner-swiper-container .__pp_con .__container .btn {
    margin-top: 0.48rem;
  }
}
.index-page .__g_banner .pagination_custom {
  position: absolute;
  z-index: 10;
  bottom: 0.64rem;
  left: 2rem;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .pagination_custom {
    max-width: calc(100vw - 0.8rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.index-page .__g_banner .pagination_custom .pagination_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.index-page .__g_banner .pagination_custom .pagination_con .pagination_custom_item {
  cursor: pointer;
  height: 0.02rem;
  width: 0.56rem;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 0.08rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .pagination_custom .pagination_con .pagination_custom_item {
    height: 0.04rem;
    width: 1.12rem;
    margin-right: 0.16rem;
  }
}
.index-page .__g_banner .pagination_custom .pagination_con .pagination_custom_item.active {
  width: 1.12rem;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .pagination_custom .pagination_con .pagination_custom_item.active {
    width: 2.24rem;
  }
}
.index-page .__g_banner .pagination_custom .pagination_con .pagination_custom_item.active .progress_bar {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.index-page .__g_banner .dots {
  position: absolute;
  z-index: 10;
  bottom: 0.64rem;
  right: 0.64rem;
  cursor: pointer;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #252A35;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .dots {
    height: 0.96rem;
    width: 0.96rem;
    right: 0.3rem;
    bottom: 0.96rem;
  }
}
.index-page .__g_banner .dots .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.42rem;
  height: 0.42rem;
  --size: 0.42rem;
  --border-width: 0.02rem;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .dots .svg {
    width: 0.8rem;
    height: 0.8rem;
    --size: 0.8rem;
    --border-width: 0.04rem;
  }
}
.index-page .__g_banner .dots .svg circle {
  width: 100%;
  height: 100%;
  cx: calc(var(--size) / 2);
  cy: calc(var(--size) / 2);
  r: calc((var(--size) - var(--border-width)) / 2);
  fill: transparent;
  stroke: transparent;
  stroke-width: var(--border-width);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotateZ(270deg);
      -ms-transform: rotate(270deg);
          transform: rotateZ(270deg);
}
.index-page .__g_banner .dots .svg circle:nth-child(2) {
  stroke: #fff;
  stroke-dasharray: calc(6.283 * (var(--size) - var(--border-width)) / 2 * var(--percent) / 100), 1000;
}
.index-page .__g_banner .dots .pause-start .img {
  width: 0.24rem;
  height: 0.24rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .index-page .__g_banner .dots .pause-start .img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.index-page .__g_banner .dots .pause-start .img.on {
  display: block;
}
.index-page .about-section {
  height: 10.48rem;
  color: #fff;
  padding: 0.64rem 0.64rem 0 0.64rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section {
    padding: 0;
    height: auto;
    background: -webkit-linear-gradient(top, #2290C9 0%, #459ED3 100%);
    background: linear-gradient(180deg, #2290C9 0%, #459ED3 100%);
  }
}
.index-page .about-section .about_box {
  position: relative;
  height: 100%;
}
.index-page .about-section .about_box .bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .bg-img {
    height: auto;
    bottom: 0;
    top: auto;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.index-page .about-section .about_box .container {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .container {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding-bottom: 8.8rem;
  }
}
.index-page .about-section .about_box .container .label {
  margin-top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .container .label {
    margin-top: 0.64rem;
  }
}
.index-page .about-section .about_box .container .h2 {
  margin-top: 0.16rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  max-width: 7.52rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .container .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
    max-width: 100%;
  }
}
.index-page .about-section .about_box .container .text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-width: 7.52rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .container .text {
    max-width: 100%;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.index-page .about-section .about_box .container .btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .container .btn {
    margin-top: 0.96rem;
    width: 100%;
  }
  .index-page .about-section .about_box .container .btn .a {
    width: 100%;
  }
}
.index-page .about-section .about_box .data-container {
  position: absolute;
  z-index: 10;
  width: 3.76rem;
  height: 8.64rem;
  bottom: 0.32rem;
  right: 0.64rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.24rem), calc(100% - 0.24rem) 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.24rem), calc(100% - 0.24rem) 100%, 0% 100%);
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container {
    bottom: 0.16rem;
    left: 0.16rem;
    height: auto;
    width: calc(100% - 0.3rem);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.16rem), calc(100% - 0.16rem) 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.16rem), calc(100% - 0.16rem) 100%, 0% 100%);
  }
}
.index-page .about-section .about_box .data-container::before {
  content: "";
  z-index: 10;
  position: absolute;
  top: 0.32rem;
  right: 0.32rem;
  height: 1.36rem;
  width: 0.01rem;
  background-color: #ffffff;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container::before {
    height: 0.64rem;
    top: 0.16rem;
    right: 0.16rem;
  }
}
.index-page .about-section .about_box .data-container .data-bg {
  position: absolute;
  height: 100%;
  width: 100%;
}
.index-page .about-section .about_box .data-container .data_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container .data_wrapper {
    padding: 0.16rem 0.16rem 0.32rem;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.index-page .about-section .about_box .data-container .data_wrapper .data-label {
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #0F0563;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container .data_wrapper .data-label {
    font-size: 0.16rem;
    line-height: 0.32rem;
  }
}
.index-page .about-section .about_box .data-container .data_wrapper .data-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container .data_wrapper .data-list {
    margin-top: 0.96rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item {
    margin-top: 0;
  }
}
.index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item .data-value {
  font-size: 0.64rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item .data-value {
    font-size: 0.8rem;
    line-height: 0.96rem;
    text-align: center;
  }
}
.index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item .data-value span {
  font-size: 0.24rem;
  line-height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item .data-value span {
    font-size: 0.32rem;
    line-height: 0.64rem;
    margin-left: 0.06rem;
  }
}
.index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item .data-title {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .about-section .about_box .data-container .data_wrapper .data-list .data-item .data-title {
    font-size: 0.24rem;
    line-height: 0.32rem;
    color: #FFFFFF;
    text-align: center;
  }
}
.index-page .text-section {
  padding: 1.2rem 0;
}
@media screen and (max-width: 800px) {
  .index-page .text-section {
    padding: 0.96rem 0.3rem;
  }
}
.index-page .text-section .top-txt {
  width: 15.2rem;
  margin: 0 auto;
  font-size: 0.4rem;
  line-height: 0.64rem;
  font-family: var(--sk-font-SemiBold);
  text-align: center;
}
@media screen and (max-width: 800px) {
  .index-page .text-section .top-txt {
    width: 100%;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.index-page .text-section .top-txt img {
  height: 0.8rem;
  margin-top: -0.08rem;
  margin-bottom: -0.08rem;
}
.index-page .r-d-strength-section {
  position: relative;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section {
    margin-bottom: 0;
  }
}
.index-page .r-d-strength-section .bg_wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .bg_wrapper {
    padding-bottom: 0;
  }
}
.index-page .r-d-strength-section .bg_wrapper .pager_wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  text-align: right;
}
.index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box {
  position: -webkit-sticky;
  position: sticky;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  top: 0.16rem;
  margin-right: 0.16rem;
  margin-top: 0.16rem;
  margin-bottom: calc(100vh - 1.2rem);
  bottom: calc(100vh - 1.2rem);
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box {
    margin-top: 0.64rem;
    margin-right: 0.3rem;
  }
}
.index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box .pager-text {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box .pager-text {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box .process-box {
  height: 0.72rem;
  width: 0.01rem;
  background: rgba(255, 255, 255, 0.47);
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box .process-box {
    height: 1.44rem;
    width: 0.02rem;
  }
}
.index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box .process-box::after {
  content: "";
  position: absolute;
  height: var(--process-height, 0);
  width: 0.02rem;
  right: 0;
  top: 0;
  background: #FFFFFF;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .bg_wrapper .pager_wrapper .pager-box .process-box::after {
    width: 0.04rem;
  }
}
.index-page .r-d-strength-section .bg_wrapper .bg-box {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}
.index-page .r-d-strength-section .bg_wrapper .bg-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}
.index-page .r-d-strength-section .bg_wrapper .bg-box .bg-img .img {
  width: 100%;
  height: 100%;
}
.index-page .r-d-strength-section .bg_wrapper .bg-box .bg-img.on {
  opacity: 1;
}
.index-page .r-d-strength-section .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container {
    padding: 0;
  }
}
.index-page .r-d-strength-section .container .label-box .label {
  position: -webkit-sticky;
  position: sticky;
  margin-top: calc(50vh - 0.08rem);
  margin-bottom: calc(50vh - 0.08rem);
  top: calc(50vh - 0.08rem);
  bottom: calc(50vh - 0.08rem);
  font-size: 0.16rem;
}
.index-page .r-d-strength-section .container .content-list {
  padding-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list {
    width: 100%;
  }
  .index-page .r-d-strength-section .container .content-list .label {
    position: absolute;
    top: 0.64rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.index-page .r-d-strength-section .container .content-list .content-box:nth-child(2) {
  height: 100vh;
}
.index-page .r-d-strength-section .container .content-list .content-box:nth-child(2) .card-list {
  margin-top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box:nth-child(2) .card-list {
    margin-top: 0.64rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box:nth-child(2) .card-list .card-box:first-child::after {
  display: block;
}
.index-page .r-d-strength-section .container .content-list .content-box:nth-child(2) .card-list .card-box .data-box::after {
  display: block;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box {
    width: 100%;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .content-text {
  width: 7.24rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .content-text {
    width: 100%;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 7.52rem;
  padding-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list {
    width: 100%;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box {
  width: 3.68rem;
  height: 2.48rem;
  backdrop-filter: blur(0.4rem);
  background: rgba(0, 0, 0, 0.04);
  padding: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box {
    height: 3.68rem;
    width: calc(50% - 0.08rem);
    padding: 0.32rem 0.24rem 0.32rem 0.32rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box:first-child::after {
  display: none;
  content: "";
  position: absolute;
  width: 0.057rem;
  height: 0.057rem;
  rotate: 45deg;
  background: rgba(255, 255, 255, 0.6);
  top: -0.12rem;
  left: -0.12rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box:first-child::after {
    width: 0.08rem;
    height: 0.08rem;
    top: -0.16rem;
    left: -0.16rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box:first-child::before {
  content: "";
  position: absolute;
  width: 0.057rem;
  height: 0.057rem;
  rotate: 45deg;
  background: rgba(255, 255, 255, 0.6);
  bottom: -0.12rem;
  left: -0.12rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box:first-child::before {
    width: 0.08rem;
    height: 0.08rem;
    bottom: -0.16rem;
    left: -0.16rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box::after {
  display: none;
  content: "";
  position: absolute;
  width: 0.057rem;
  height: 0.057rem;
  rotate: 45deg;
  background: rgba(255, 255, 255, 0.6);
  top: -0.12rem;
  right: -0.12rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box::after {
    width: 0.08rem;
    height: 0.08rem;
    top: -0.16rem;
    right: -0.16rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box::before {
  content: "";
  position: absolute;
  width: 0.057rem;
  height: 0.057rem;
  rotate: 45deg;
  background: rgba(255, 255, 255, 0.6);
  bottom: -0.12rem;
  right: -0.12rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box::before {
    width: 0.08rem;
    height: 0.08rem;
    bottom: -0.16rem;
    right: -0.16rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box .num {
  font-size: 0.64rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box .num {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box .num span {
  font-size: 0.16rem;
  line-height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .data-box .num span {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .infor .title {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .infor .title {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .infor .desc {
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .index-page .r-d-strength-section .container .content-list .content-box .card-list .card-box .infor .desc {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.index-page .technology-section {
  position: relative;
  z-index: 10;
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section {
    margin-bottom: 0.96rem;
  }
}
.index-page .technology-section .title-label {
  text-align: center;
  margin: 0 auto;
}
.index-page .technology-section .h2 {
  margin-top: 0.16rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  text-align: center;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.index-page .technology-section .flex-box {
  margin-top: 0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.64rem;
  }
}
.index-page .technology-section .flex-box .left-key {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .left-key {
    overflow-x: auto;
    padding-left: 0.32rem;
    width: calc(100% + 0.62rem);
    margin-left: -0.32rem;
    padding-bottom: 0.8rem;
  }
}
.index-page .technology-section .flex-box .left-key .cell-list {
  margin-right: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .left-key .cell-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-right: 0;
  }
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box {
  padding: 0.24rem 0;
  border-top: 0.01rem solid;
  cursor: pointer;
  -webkit-border-image: -webkit-linear-gradient(left, rgb(230, 230, 230), rgba(230, 230, 230, 0)) 1;
          border-image: linear-gradient(90deg, rgb(230, 230, 230), rgba(230, 230, 230, 0)) 1;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .left-key .cell-list .cell-box {
    padding: 0;
    border: none;
    margin-right: 0.48rem;
  }
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box:last-child {
  border-bottom: 0.01rem solid;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .left-key .cell-list .cell-box:last-child {
    border: none;
  }
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box .cell_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: -0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .left-key .cell-list .cell-box .cell_wrapper {
    left: 0;
  }
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box .cell_wrapper .icon {
  width: 0.08rem;
  height: 0.16rem;
  background: -webkit-linear-gradient(265deg, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(185deg, #00FFFF 0%, #0059FF 100%);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.24rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .left-key .cell-list .cell-box .cell_wrapper .icon {
    position: absolute;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 0.16rem;
    height: 0.32rem;
    left: calc(50% - 0.16rem);
    bottom: -0.48rem;
  }
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box .cell_wrapper .title {
  color: rgba(37, 42, 53, 0.3);
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .left-key .cell-list .cell-box .cell_wrapper .title {
    font-size: 0.28rem;
    line-height: 0.48rem;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 2rem;
  }
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box.on .cell_wrapper {
  left: 0;
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box.on .cell_wrapper .icon {
  opacity: 1;
}
.index-page .technology-section .flex-box .left-key .cell-list .cell-box.on .cell_wrapper .title {
  color: #252A35;
}
.index-page .technology-section .flex-box .right-value {
  width: 15.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .right-value {
    width: 100%;
  }
}
.index-page .technology-section .flex-box .right-value .value-box {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  grid-area: stack;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  --slide-card-height: 6.4rem;
}
.index-page .technology-section .flex-box .right-value .value-box.on {
  opacity: 1;
  visibility: visible;
}
.index-page .technology-section .flex-box .right-value .value-box .swiper_container {
  position: relative;
}
.index-page .technology-section .flex-box .right-value .value-box .swiper_container .swiper-btn-prev {
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .right-value .value-box .swiper_container .swiper-btn-prev {
    height: 0.8rem;
    width: 0.8rem;
  }
}
.index-page .technology-section .flex-box .right-value .value-box .swiper_container .swiper-btn-prev.swiper-button-disabled {
  display: none;
}
.index-page .technology-section .flex-box .right-value .value-box .swiper_container .swiper-btn-next {
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .index-page .technology-section .flex-box .right-value .value-box .swiper_container .swiper-btn-next {
    height: 0.8rem;
    width: 0.8rem;
  }
}
.index-page .technology-section .flex-box .right-value .value-box .swiper_container .lower__flex-box {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: normal;
  -webkit-justify-content: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}
.index-page .products-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .products-section {
    margin-top: 0.96rem;
  }
}
.index-page .products-section .h2 {
  margin-top: 0.16rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .products-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.index-page .products-section .wal2 .products-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.58rem;
}
@media screen and (max-width: 800px) {
  .index-page .products-section .wal2 .products-list {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.index-page .products-section .wal2 .products-list .products-card {
  width: calc(50% - 0.09rem);
  height: 5.04rem;
  position: relative;
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .products-section .wal2 .products-list .products-card {
    width: 100%;
    height: 7.36rem;
    margin-top: 0.32rem;
  }
}
.index-page .products-section .wal2 .products-list .products-card .bg-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.index-page .products-section .wal2 .products-list .products-card .products-con {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.index-page .products-section .wal2 .products-list .products-card .products-con .pro-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
}
.index-page .products-section .wal2 .products-list .products-card .products-con .text-con {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.index-page .products-section .wal2 .products-list .products-card .products-con .text-con::before {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 800px) {
  .index-page .products-section .wal2 .products-list .products-card .products-con .text-con {
    padding: 0.32rem 0.32rem 0.48rem;
  }
}
.index-page .products-section .wal2 .products-list .products-card .products-con .text-con .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  color: #FFFFFF;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .index-page .products-section .wal2 .products-list .products-card .products-con .text-con .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.index-page .products-section .wal2 .products-list .products-card .products-con .text-con .btn {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .products-section .wal2 .products-list .products-card .products-con .text-con .btn {
    margin-top: 0.32rem;
  }
}
.index-page .applications-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .applications-section {
    overflow: hidden;
    margin-top: 0.96rem;
  }
}
.index-page .applications-section .h2 {
  margin-top: 0.16rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.index-page .applications-section .gallery_wrapper {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .gallery_wrapper {
    margin-top: 0.48rem;
  }
}
.index-page .applications-section .gallery_wrapper .galler-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li {
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .gallery_wrapper .galler-flex .galler-li {
    margin-right: 0.32rem;
  }
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li:last-child {
  margin-right: 0;
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li .num {
  font-size: 0.12rem;
  line-height: 0.24rem;
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card {
  width: 10.08rem;
  height: 5.6rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card {
    width: 6.4rem;
    height: 9.92rem;
  }
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 112%;
  -webkit-transform: translateX(-10%);
      -ms-transform: translateX(-10%);
          transform: translateX(-10%);
  max-width: none;
  -webkit-transition: 0s;
  transition: 0s;
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #FFFFFF;
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box .text-con {
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box .text-con {
    padding: 0.64rem 0.32rem 0.32rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box .text-con .right-box {
    margin-top: 0.64rem;
  }
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box .text-con .left-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box .text-con .left-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
  }
}
.index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box .text-con .left-box .text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .gallery_wrapper .galler-flex .galler-li .galler-card .galler-text-box .text-con .left-box .text {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.index-page .applications-section .gallery_wrapper .schedule {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .applications-section .gallery_wrapper .schedule {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.index-page .news-events {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .news-events {
    padding-top: 0.96rem;
  }
}
.index-page .news-events .h2 {
  margin-top: 0.16rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .news-events .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.index-page .news-events .flex-box {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.index-page .news-events .flex-box .left-box {
  width: 7.52rem;
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .left-box {
    width: 100%;
  }
}
.index-page .news-events .flex-box .left-box .img-box {
  height: 4.32rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .left-box .img-box {
    height: 3.84rem;
  }
}
.index-page .news-events .flex-box .left-box .img-box .img {
  width: 100%;
  height: 100%;
}
.index-page .news-events .flex-box .left-box .text-con {
  background: #F7F8FA;
  padding: 0.32rem;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .left-box .text-con {
    padding: 0.32rem 0.32rem 0.48rem;
  }
}
.index-page .news-events .flex-box .left-box .text-con .data {
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .left-box .text-con .data {
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 2px;
  }
}
.index-page .news-events .flex-box .left-box .text-con .title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  height: 0.64rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .left-box .text-con .title {
    margin-top: 0.16rem;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.index-page .news-events .flex-box .left-box .text-con .content-text {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .left-box .text-con .content-text {
    margin-top: 0.32rem;
    height: auto;
    font-size: 0.24rem;
    line-height: 0.48rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
@media screen and (min-width: 800px) {
  .index-page .news-events .flex-box .left-box:hover .img-box .img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.index-page .news-events .flex-box .right-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .right-list {
    margin-top: 0.32rem;
  }
}
.index-page .news-events .flex-box .right-list .ne-card {
  height: calc((100% - 0.32rem) / 3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .right-list .ne-card {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.96rem;
  }
  .index-page .news-events .flex-box .right-list .ne-card:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .index-page .news-events .flex-box .right-list .ne-card:hover .img-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.index-page .news-events .flex-box .right-list .ne-card:nth-child(n+4) {
  display: none;
}
.index-page .news-events .flex-box .right-list .ne-card .img-box {
  height: 100%;
  width: 3.68rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .right-list .ne-card .img-box {
    width: 100%;
    height: 3.84rem;
  }
}
.index-page .news-events .flex-box .right-list .ne-card .img-box .img {
  height: 100%;
  width: 100%;
}
.index-page .news-events .flex-box .right-list .ne-card .con-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.index-page .news-events .flex-box .right-list .ne-card .con-box .data {
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .right-list .ne-card .con-box .data {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.index-page .news-events .flex-box .right-list .ne-card .con-box .title {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .flex-box .right-list .ne-card .con-box .title {
    margin-top: 0.16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.index-page .news-events .btn {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .index-page .news-events .btn {
    margin-top: 0.96rem;
  }
}
.index-page .support-section {
  margin-top: 0.96rem;
}
.index-page .support-section .h2 {
  margin-top: 0.16rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .support-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.index-page .support-section .card-list {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index-page .support-section .card-list .card-box {
  margin-top: 0.16rem;
  width: calc(50% - 0.08rem);
  height: 4.32rem;
  position: relative;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 800px) {
  .index-page .support-section .card-list .card-box {
    width: 100%;
    height: 6.88rem;
  }
}
.index-page .support-section .card-list .card-box .bg-img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.index-page .support-section .card-list .card-box .con-box {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .index-page .support-section .card-list .card-box .con-box {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.24rem), calc(100% - 0.24rem) 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.24rem), calc(100% - 0.24rem) 100%, 0% 100%);
  }
}
.index-page .support-section .card-list .card-box .con-box .text-box {
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.index-page .support-section .card-list .card-box .con-box .text-box::before {
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .index-page .support-section .card-list .card-box .con-box .text-box::before {
    opacity: 1;
  }
}
.index-page .support-section .card-list .card-box .con-box .text-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .support-section .card-list .card-box .con-box .text-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
  }
}
.index-page .support-section .card-list .card-box .con-box .text-box .text-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-height: 0;
  padding-top: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .support-section .card-list .card-box .con-box .text-box .text-link {
    opacity: 1;
    max-height: none;
  }
}
.index-page .support-section .card-list .card-box .con-box .text-box .text-link .text {
  width: 5.92rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .index-page .support-section .card-list .card-box .con-box .text-box .text-link .text {
    width: 100%;
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.index-page .support-section .card-list .card-box .con-box .text-box .text-link .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .support-section .card-list .card-box .con-box .text-box .text-link .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.index-page .support-section .card-list .card-box:hover {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.24rem), calc(100% - 0.24rem) 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.24rem), calc(100% - 0.24rem) 100%, 0% 100%);
}
.index-page .support-section .card-list .card-box:hover .bg-img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.index-page .support-section .card-list .card-box:hover .con-box .text-box::before {
  opacity: 1;
}
.index-page .support-section .card-list .card-box:hover .con-box .text-box .text-link {
  max-height: 0.72rem;
  height: auto;
  padding-top: 0.08rem;
  opacity: 1;
}

.g__footer {
  background: #252A35;
  color: #FFFFFF;
}
.g__footer .contact__us-btn {
  position: fixed;
  z-index: 10;
  bottom: 0.56rem;
  right: 0.16rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  right: -0.64rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .g__footer .contact__us-btn {
    height: 0.96rem;
    width: 0.96rem;
    right: -1.12rem;
  }
}
.g__footer .contact__us-btn .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g__footer .contact__us-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.g__footer .contact__us-btn.show {
  right: 0.16rem;
}
.g__footer .logo-nav {
  padding: 0.64rem 0 0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0.64rem 0 0.48rem;
  }
}
.g__footer .logo-nav .left-logo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 3.58rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .left-logo {
    width: 2.86rem;
    margin-top: 0.48rem;
  }
}
.g__footer .logo-nav .left-logo .logo-link {
  width: 100%;
  display: block;
}
.g__footer .logo-nav .left-logo .logo-link .logo-img {
  width: 100%;
}
.g__footer .logo-nav .left-logo .link-icon-list {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .left-logo .link-icon-list {
    margin-top: 0.48rem;
  }
}
.g__footer .logo-nav .left-logo .link-icon-list .icon-box {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.01rem solid rgba(255, 255, 255, 0.6);
  margin-right: 0.16rem;
  margin-top: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .left-logo .link-icon-list .icon-box {
    width: 0.64rem;
    height: 0.64rem;
    margin-top: 0;
  }
}
.g__footer .logo-nav .left-logo .link-icon-list .icon-box .svg {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .left-logo .link-icon-list .icon-box .svg {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.g__footer .logo-nav .left-logo .link-icon-list .icon-box .qr-code-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 0.16rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .left-logo .link-icon-list .icon-box .qr-code-wrap {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: auto;
    bottom: 100%;
    padding-top: 0;
    padding-bottom: 0.16rem;
  }
}
.g__footer .logo-nav .left-logo .link-icon-list .icon-box .qr-code-wrap .qr-code-box {
  background: #FFFFFF;
  width: 1.28rem;
  height: 1.28rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .left-logo .link-icon-list .icon-box .qr-code-wrap .qr-code-box {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.g__footer .logo-nav .left-logo .link-icon-list .icon-box .qr-code-wrap .qr-code-box .qr-code-img {
  width: 100%;
  height: 100%;
}
.g__footer .logo-nav .left-logo .link-icon-list .icon-box:hover .qr-code-wrap {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 800px) {
  .g__footer .logo-nav .left-logo .link-icon-list .icon-box:hover {
    border: 0.01rem solid #FFFFFF;
    background: #FFFFFF;
  }
  .g__footer .logo-nav .left-logo .link-icon-list .icon-box:hover .svg path {
    fill: #252A35;
    fill-opacity: 1;
  }
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav {
    padding-bottom: 0.48rem;
    border-bottom: 0.02rem solid rgba(255, 255, 255, 0.1);
  }
}
.g__footer .logo-nav .right-nav .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g__footer .logo-nav .right-nav .nav-list .ft_link {
  width: 2.56rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list .ft_link {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list dl {
    margin-right: 0;
    margin-bottom: 0.48rem;
  }
  .g__footer .logo-nav .right-nav .nav-list dl:last-child {
    margin-bottom: 0;
  }
}
.g__footer .logo-nav .right-nav .nav-list dl dt {
  color: #fff;
  font-size: 0.16rem;
  line-height: 0.21rem;
  text-align: left;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list dl dt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .g__footer .logo-nav .right-nav .nav-list dl dt .arrows {
    width: 0.48rem;
  }
  .g__footer .logo-nav .right-nav .nav-list dl dt .arrows .sub {
    display: none;
  }
  .g__footer .logo-nav .right-nav .nav-list dl dt.active .arrows .add {
    display: none;
  }
  .g__footer .logo-nav .right-nav .nav-list dl dt.active .arrows .sub {
    display: block;
  }
}
.g__footer .logo-nav .right-nav .nav-list dl dt .a {
  font-family: var(--sk-font-Medium);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 3px;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list dl dt .a {
    font-size: 0.28rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
    color: #FFFFFF;
  }
}
.g__footer .logo-nav .right-nav .nav-list dl dt .a:hover {
  color: #FFFFFF;
}
.g__footer .logo-nav .right-nav .nav-list dl dd {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list dl dd {
    margin-top: 0;
    height: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.g__footer .logo-nav .right-nav .nav-list dl dd .layer__wp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.g__footer .logo-nav .right-nav .nav-list dl dd .layer__wp .a {
  font-family: var(--sk-font-Light);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-top: 0.16rem;
}
.g__footer .logo-nav .right-nav .nav-list dl dd .layer__wp .a:first-child {
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list dl dd .layer__wp .a {
    font-size: 0.24rem;
    line-height: 0.48rem;
    margin-top: 0.16rem;
  }
  .g__footer .logo-nav .right-nav .nav-list dl dd .layer__wp .a:first-child {
    padding-top: 0.16rem;
  }
}
@media screen and (min-width: 800px) {
  .g__footer .logo-nav .right-nav .nav-list dl dd .layer__wp .a:hover {
    color: #FFFFFF;
    -moz-text-decoration-line: underline;
         text-decoration-line: underline;
  }
}
.g__footer .language-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.g__footer .language-wrapper .language-box {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
.g__footer .language-wrapper .language-box .expand {
  width: 0.24rem;
  height: 0.24rem;
}
.g__footer .language-wrapper .language-box .link {
  margin-left: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}
.g__footer .language-wrapper .language-box .link:hover, .g__footer .language-wrapper .language-box .link.on {
  color: #FFFFFF;
}
.g__footer .language-wrapper .language-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.g__footer .language-wrapper .language-box .icon path {
  fill: #A8AAAE;
}
.g__footer .language-wrapper .language-box .language-layer {
  position: absolute;
  right: 0;
  bottom: 0.24rem;
  padding-bottom: 0.16rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g__footer .language-wrapper .language-box .language-layer .link-list-box {
  min-width: 1.84rem;
  padding: 0.16rem 0.08rem;
  background: #FFFFFF;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.g__footer .language-wrapper .language-box .language-layer .link-list-box .link-box {
  padding: 0.08rem 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g__footer .language-wrapper .language-box .language-layer .link-list-box .link-box:hover {
  background: #F7F8FA;
}
.g__footer .language-wrapper .language-box .language-layer .link-list-box .link-box.on {
  background: #F7F8FA;
}
.g__footer .language-wrapper .language-box .language-layer .link-list-box .link-box.on span {
  background: -webkit-linear-gradient(right, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(-90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.g__footer .language-wrapper .language-box:hover .language-layer {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.g__footer .foot-box {
  margin-top: 0.16rem;
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  border-top: 0.01rem solid rgba(255, 255, 255, 0.1);
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g__footer .foot-box {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    padding-bottom: 0.64rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g__footer .foot-box .link {
  margin-left: 0.16rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g__footer .foot-box .link {
    font-size: 0.24rem;
    line-height: 0.48rem;
    margin-left: 0;
    margin-right: 0.64rem;
    display: inline-block;
  }
}
@media screen and (min-width: 800px) {
  .g__footer .foot-box .link:hover {
    color: #ffffff;
  }
}

.case-studies-page .container-section {
  padding-top: 0.64rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section {
    padding-top: 0.48rem;
    padding-bottom: 1.28rem;
  }
}
.case-studies-page .container-section .con-box .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .search-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case-studies-page .container-section .con-box .search-box .sk_select {
  width: 2.4rem;
  height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .search-box .sk_select {
    height: 0.96rem;
    width: 100%;
  }
}
.case-studies-page .container-section .con-box .search-box .sk_select .-select-front {
  border: 0.01rem solid #BEC6D9;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .search-box .sk_select .-select-front {
    padding: 0.24rem 0.32rem;
  }
  .case-studies-page .container-section .con-box .search-box .sk_select .-select-front input {
    font-size: 0.28rem;
  }
}
.case-studies-page .container-section .con-box .search-box .input-box {
  margin-left: 0.16rem;
  width: 4.96rem;
  height: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .search-box .input-box {
    margin-left: 0;
    width: 100%;
    height: 0.96rem;
    margin-top: 0.16rem;
  }
}
.case-studies-page .container-section .con-box .search-box .input-box .input {
  height: 100%;
  width: 100%;
  border: 0.01rem solid #BEC6D9;
  padding: 0.12rem 0.46rem 0.12rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .search-box .input-box .input {
    padding: 0.24rem 0.96rem 0.24rem 0.32rem;
  }
}
.case-studies-page .container-section .con-box .search-box .input-box .input::-webkit-input-placeholder {
  color: #6E798F;
}
.case-studies-page .container-section .con-box .search-box .input-box .input::-moz-placeholder {
  color: #6E798F;
}
.case-studies-page .container-section .con-box .search-box .input-box .input:-ms-input-placeholder {
  color: #6E798F;
}
.case-studies-page .container-section .con-box .search-box .input-box .input::placeholder {
  color: #6E798F;
}
.case-studies-page .container-section .con-box .search-box .input-box .search-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .search-box .input-box .search-icon {
    right: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.case-studies-page .container-section .con-box .search-box .input-box .search-icon .img {
  height: 100%;
  width: 100%;
}
.case-studies-page .container-section .con-box .tag-list {
  margin-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .tag-list .tag_c {
    overflow-x: auto;
    width: 100vw;
    margin-left: -0.32rem;
    padding-left: 0.32rem;
    padding-right: 0.32rem;
  }
}
.case-studies-page .container-section .con-box .tag-list .tag_c .tag-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .tag-list .tag_c .tag-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.case-studies-page .container-section .con-box .tag-list .tag_c .tag-container .tag-li {
  padding: 0.16rem;
  position: relative;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #6E798F;
  cursor: pointer;
  margin-right: 0.16rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .tag-list .tag_c .tag-container .tag-li {
    padding: 0.16rem 0.32rem;
    padding-top: 0;
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
    margin-right: 0;
  }
}
.case-studies-page .container-section .con-box .tag-list .tag_c .tag-container .tag-li:last-child {
  margin-right: 0;
}
.case-studies-page .container-section .con-box .tag-list .tag_c .tag-container .tag-li::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 0.03rem;
  width: 0;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .tag-list .tag_c .tag-container .tag-li::after {
    height: 0.04rem;
  }
}
.case-studies-page .container-section .con-box .tag-list .tag_c .tag-container .tag-li.on {
  color: #252A35;
  font-family: var(--sk-font-SemiBold);
}
.case-studies-page .container-section .con-box .tag-list .tag_c .tag-container .tag-li.on::after {
  width: 100%;
}
.case-studies-page .container-section .con-box .flex-box {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .flex-box {
    margin-top: 0.48rem;
  }
}
.case-studies-page .container-section .con-box .flex-box .card-box {
  width: calc((100% - 0.32rem) / 3);
  margin-bottom: 0.64rem;
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .flex-box .card-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.96rem;
  }
}
.case-studies-page .container-section .con-box .flex-box .card-box:nth-child(3n) {
  margin-right: 0;
}
.case-studies-page .container-section .con-box .flex-box .card-box .img-box {
  width: 100%;
  height: 2.8rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .flex-box .card-box .img-box {
    height: 3.84rem;
  }
}
.case-studies-page .container-section .con-box .flex-box .card-box .img-box .img {
  width: 100%;
  height: 100%;
}
.case-studies-page .container-section .con-box .flex-box .card-box .address-text {
  margin-top: 0.32rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .flex-box .card-box .address-text {
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
  }
}
.case-studies-page .container-section .con-box .flex-box .card-box .title-box {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .con-box .flex-box .card-box .title-box {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .case-studies-page .container-section .con-box .flex-box .card-box:hover .img-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.case-studies-page .container-section .pagination__box {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-studies-page .container-section .pagination__box {
    margin-top: 0;
  }
}

.pagination__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination__box .btn-prev {
  cursor: pointer;
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .pagination__box .btn-prev {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.pagination__box .btn-prev .img {
  height: 100%;
  width: 100%;
}
.pagination__box .btn-prev.on .img path {
  stroke: #252A35;
}
.pagination__box .num-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.16rem;
}
@media screen and (max-width: 800px) {
  .pagination__box .num-list {
    margin: 0 0.32rem;
  }
}
.pagination__box .num-list .num {
  width: 0.24rem;
  height: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
  cursor: pointer;
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .pagination__box .num-list .num {
    margin-right: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.pagination__box .num-list .num:last-child {
  margin-right: 0;
}
.pagination__box .num-list .num.on {
  background: #252A35;
  color: #FFFFFF;
}
.pagination__box .btn-next {
  cursor: pointer;
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .pagination__box .btn-next {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.pagination__box .btn-next .img {
  height: 100%;
  width: 100%;
}
.pagination__box .btn-next.on .img path {
  stroke: #252A35;
}

.case-studies-detail-page .main {
  padding-top: 0.32rem;
  padding-bottom: 1.2rem;
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
}
.case-studies-detail-page .main .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box {
    position: relative;
    padding: 0;
  }
  .case-studies-detail-page .main .flex-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3.84rem;
    left: 0;
    bottom: 0;
    background: #F7F8FA;
  }
}
.case-studies-detail-page .main .flex-box .link-button {
  width: 2.4rem;
  -webkit-transform: translateX(-0.32rem);
      -ms-transform: translateX(-0.32rem);
          transform: translateX(-0.32rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .link-button {
    width: auto;
    position: absolute;
    z-index: 1;
    bottom: 0.64rem;
    left: 0;
    -webkit-transform: translateX(0.32rem);
        -ms-transform: translateX(0.32rem);
            transform: translateX(0.32rem);
  }
}
.case-studies-detail-page .main .flex-box .link-button .navigation {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 50vh;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .link-button .navigation {
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.case-studies-detail-page .main .flex-box .link-button .navigation .img-box {
  width: 100%;
  height: 1.36rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .link-button .navigation .img-box {
    height: 1.92rem;
    width: 44.8vw;
  }
}
.case-studies-detail-page .main .flex-box .link-button .navigation .img-box .img {
  width: 100%;
  height: 100%;
}
.case-studies-detail-page .main .flex-box .link-button .navigation .name {
  color: #6E798F;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin: 0.16rem 0.32rem 0;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .link-button .navigation .name {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.case-studies-detail-page .main .flex-box .link-button.right-box {
  -webkit-transform: translateX(0.32rem);
      -ms-transform: translateX(0.32rem);
          transform: translateX(0.32rem);
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .link-button.right-box {
    -webkit-transform: translateX(-0.32rem);
        -ms-transform: translateX(-0.32rem);
            transform: translateX(-0.32rem);
    left: auto;
    right: 0;
  }
}
.case-studies-detail-page .main .flex-box .link-button.right-box .navigation .name {
  text-align: right;
}
@media screen and (min-width: 800px) {
  .case-studies-detail-page .main .flex-box .link-button:hover {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.case-studies-detail-page .main .flex-box .content-box {
  width: 10.08rem;
  background: #FFFFFF;
  padding: 0.64rem 1.28rem 0.96rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box {
    width: 100%;
    padding: 0.48rem 0.3rem 4.8rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .back-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.case-studies-detail-page .main .flex-box .content-box .back-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .back-box .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .back-box .text {
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .back-box .text {
    margin-left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .h1 {
  margin-top: 0.32rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .h1 {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .infor-link {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .infor-link {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.case-studies-detail-page .main .flex-box .content-box .infor-link .date {
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
  color: #252A35;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .infor-link .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 2px;
  }
}
.case-studies-detail-page .main .flex-box .content-box .infor-link .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.32rem;
}
.case-studies-detail-page .main .flex-box .content-box .infor-link .link-list .link {
  margin-right: 0.16rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: 0.01rem solid #252A35;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .infor-link .link-list .link {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .infor-link .link-list .link .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .infor-link .link-list .link .icon {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .infor-link .link-list .link .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .infor-link .link-list .link:hover {
    background: #252A35;
  }
  .case-studies-detail-page .main .flex-box .content-box .infor-link .link-list .link:hover .icon path {
    fill: #FFFFFF;
  }
}
.case-studies-detail-page .main .flex-box .content-box .card-box {
  margin-top: 0.32rem;
  background: #F7F8FA;
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .card-box {
    margin-top: 0.48rem;
    padding: 0.48rem 0.32rem 0.32rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case-studies-detail-page .main .flex-box .content-box .card-box .infor-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case-studies-detail-page .main .flex-box .content-box .card-box .infor-list .infor-item {
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .card-box .infor-list .infor-item {
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-bottom: 0.16rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .card-box .infor-list .infor-item .title {
  font-family: var(--sk-font-SemiBold);
}
.case-studies-detail-page .main .flex-box .content-box .card-box .infor-list:nth-child(2n) {
  margin-left: 0.8rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .card-box .infor-list:nth-child(2n) {
    margin-left: 0;
  }
}
.case-studies-detail-page .main .flex-box .content-box .html-box {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .html-box {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .html-box p {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .html-box p {
    margin-top: 0.48rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .html-box img {
  margin-bottom: 0.32rem;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .html-box img {
    margin-bottom: 0.48rem;
  }
}
.case-studies-detail-page .main .flex-box .content-box .btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .btn {
    margin-top: 0.48rem;
    text-align: center;
  }
}
.case-studies-detail-page .main .flex-box .content-box .btn .a {
  padding: 0 0.4rem;
}
@media screen and (max-width: 800px) {
  .case-studies-detail-page .main .flex-box .content-box .btn .a {
    padding: 0 0.8rem;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.about-page .about-dintoSolar-section {
  margin-top: 0.96rem;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-dintoSolar-section {
    margin-top: 0.64rem;
    margin-bottom: 0.96rem;
  }
}
.about-page .about-dintoSolar-section .about-dintoSolar-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .about-page .about-dintoSolar-section .about-dintoSolar-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-page .about-dintoSolar-section .about-dintoSolar-box .img-box {
  width: 11.44rem;
  height: 6.4rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .about-page .about-dintoSolar-section .about-dintoSolar-box .img-box {
    width: 100%;
    height: 3.84rem;
  }
}
.about-page .about-dintoSolar-section .about-dintoSolar-box .img-box .img {
  height: 100%;
  width: 100%;
}
.about-page .about-dintoSolar-section .about-dintoSolar-box .con-box {
  padding: 0.64rem;
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .about-page .about-dintoSolar-section .about-dintoSolar-box .con-box {
    width: 100%;
    padding: 0.48rem 0.48rem 0.96rem;
  }
}
.about-page .about-dintoSolar-section .about-dintoSolar-box .con-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .about-page .about-dintoSolar-section .about-dintoSolar-box .con-box .h2 {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.about-page .about-dintoSolar-section .about-dintoSolar-box .con-box .content {
  margin-top: 0.32rem;
}
.about-page .about-dintoSolar-section .about-dintoSolar-box .con-box .content .text {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-dintoSolar-section .about-dintoSolar-box .con-box .content .text {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.about-page .about-dintoSolar-section .about-dintoSolar-box .con-box .content .btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-dintoSolar-section .about-dintoSolar-box .con-box .content .btn {
    margin-top: 0.48rem;
  }
}
.about-page .about-spic-section {
  margin-top: 0.16rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section {
    margin-top: 0.96rem;
    margin-bottom: 0.96rem;
  }
}
.about-page .about-spic-section .about-spic-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about-page .about-spic-section .about-spic-box .con-box {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box {
    width: 100%;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box {
  height: 6.4rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box {
    height: 12.8rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .img {
    height: auto;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding-left: 1.28rem;
  padding-top: 1.36rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box {
    padding: 0.24rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .rmb {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .rmb {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row {
  margin-right: 1.1rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 {
  margin-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 {
    width: 50%;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .num-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .num-box .num {
  font-size: 0.64rem;
  line-height: 0.72rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .num-box .num {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .num-box .sub {
  margin-left: 0.14rem;
  font-size: 0.16rem;
  line-height: 0.34rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .num-box .sub {
    font-size: 0.28rem;
    line-height: 0.54rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .label {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .label .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .label .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .label .text {
  margin-left: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .img-box .card-box .flex-box .row .col2 .label .text {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .text-box {
  padding: 0.64rem 1.36rem 0.64rem 1.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .text-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.48rem 0.48rem 0.96rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .text-box .title {
  width: 4.36rem;
  margin-right: 0.76rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .text-box .title {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
    max-width: none;
    margin-right: 0;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .text-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .text-box .right-box {
    margin-top: 0.32rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .text-box .right-box .text {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .text-box .right-box .text {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.about-page .about-spic-section .about-spic-box .con-box .text-box .right-box .btn {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .about-page .about-spic-section .about-spic-box .con-box .text-box .right-box .btn {
    margin-top: 0.64rem;
  }
}
.about-page .mvv-section {
  height: 10rem;
  max-height: 100vh;
}
@media screen and (max-width: 800px) {
  .about-page .mvv-section {
    height: 100vh;
  }
}
.about-page .mvv-section .con-box {
  height: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .mvv-section .con-box {
    padding: 0;
  }
}
.about-page .mvv-section .con-box .img-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about-page .mvv-section .con-box .img-box .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.about-page .mvv-section .con-box .img-box .img.on {
  opacity: 1;
  visibility: visible;
}
.about-page .mvv-section .con-box .content-box {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about-page .mvv-section .con-box .content-box .content_wrapper {
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .about-page .mvv-section .con-box .content-box .content_wrapper {
    padding: 0.48rem 0.3rem;
  }
}
.about-page .mvv-section .con-box .content-box .content_wrapper .text-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-page .mvv-section .con-box .content-box .content_wrapper .text-box .left-box {
  border-right: 0.01rem solid rgba(255, 255, 255, 0.4);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .about-page .mvv-section .con-box .content-box .content_wrapper .text-box .left-box {
    border-width: 0.02rem;
  }
}
.about-page .mvv-section .con-box .content-box .content_wrapper .text-box .left-box .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  text-align: right;
  padding-right: 0.3rem;
  border-right: 0.02rem solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(0.01rem);
      -ms-transform: translateX(0.01rem);
          transform: translateX(0.01rem);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .about-page .mvv-section .con-box .content-box .content_wrapper .text-box .left-box .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
    border-width: 0.04rem;
  }
}
.about-page .mvv-section .con-box .content-box .content_wrapper .text-box .left-box .title.on {
  color: #FFFFFF;
  border-right: 0.02rem solid #fff;
}
@media screen and (max-width: 800px) {
  .about-page .mvv-section .con-box .content-box .content_wrapper .text-box .left-box .title.on {
    border-width: 0.04rem;
  }
}
.about-page .mvv-section .con-box .content-box .content_wrapper .text-box .right-box {
  padding-left: 0.33rem;
}
.about-page .mvv-section .con-box .content-box .content_wrapper .text-box .right-box .text {
  width: 4.96rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #FFFFFF;
  display: none;
}
@media screen and (max-width: 800px) {
  .about-page .mvv-section .con-box .content-box .content_wrapper .text-box .right-box .text {
    width: auto;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.about-page .mvv-section .con-box .content-box .content_wrapper .text-box .right-box .text.on {
  display: block;
}
.about-page .development-history-section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section {
    margin-bottom: 1.28rem;
  }
}
.about-page .development-history-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.about-page .development-history-section .flex-box {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-page .development-history-section .flex-box .progress-num {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
.about-page .development-history-section .flex-box .left-box {
  width: 3.52rem;
  border-right: 0.01rem solid #E6E6E6;
  height: 4.24rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .left-box {
    width: 100%;
    height: auto;
    border-right: none;
    padding-bottom: 0.56rem;
    border-bottom: 0.02rem solid #E6E6E6;
  }
}
.about-page .development-history-section .flex-box .left-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.06rem;
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  background: -webkit-linear-gradient(315deg, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(135deg, #00FFFF 0%, #0059FF 100%);
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .left-box::before {
    bottom: -0.13rem;
    top: auto;
    right: 50%;
    width: 0.24rem;
    height: 0.24rem;
    -webkit-transform: translateX(50%) rotate(45deg);
        -ms-transform: translateX(50%) rotate(45deg);
            transform: translateX(50%) rotate(45deg);
  }
}
.about-page .development-history-section .flex-box .left-box .swiper-year {
  height: 100%;
  overflow: hidden;
}
.about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.2rem 0;
  height: auto;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide {
    padding: 0;
    width: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-prev {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-next {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-active {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-active ~ .swiper-slide {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide .year {
  display: inline-block;
  font-size: 0.32rem;
  line-height: 0.48rem;
  color: #E4E9F4;
  font-family: var(--sk-font-SemiBold);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide .year {
    font-size: 0.24rem;
    line-height: 0.64rem;
    color: #BEC6D9;
  }
}
.about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-active .year {
  font-size: 0.64rem;
  line-height: 0.72rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-active .year {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-prev .year, .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-next .year {
  font-size: 0.4rem;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-prev .year, .about-page .development-history-section .flex-box .left-box .swiper-year .swiper-wrapper .swiper-slide.swiper-slide-next .year {
    font-size: 0.32rem;
  }
}
.about-page .development-history-section .flex-box .center-box {
  width: 4.16rem;
  height: 4.12rem;
  padding-left: 0.32rem;
  padding-right: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .center-box {
    height: auto;
    display: -ms-grid;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 3.12rem;
    padding: 0.72rem 0 0.48rem;
  }
}
.about-page .development-history-section .flex-box .center-box .text-bpx {
  position: absolute;
  width: 3.36rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .center-box .text-bpx {
    position: relative;
    top: 0;
    grid-area: stack;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 100%;
  }
}
.about-page .development-history-section .flex-box .center-box .text-bpx.on {
  opacity: 1;
  visibility: visible;
}
.about-page .development-history-section .flex-box .center-box .text-bpx .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .center-box .text-bpx .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
    text-align: center;
  }
}
.about-page .development-history-section .flex-box .center-box .text-bpx .text {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .center-box .text-bpx .text {
    font-size: 0.32rem;
    line-height: 0.48rem;
    text-align: center;
  }
}
.about-page .development-history-section .flex-box .center-box .text-bpx .text span {
  font-family: var(--sk-font-SemiBold);
}
.about-page .development-history-section .flex-box .right-box {
  width: 7.52rem;
  height: 5.12rem;
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .right-box {
    overflow: hidden;
    height: 3.84rem;
    width: 100%;
  }
}
.about-page .development-history-section .flex-box .right-box .img-swiper {
  height: 100%;
  position: relative;
}
.about-page .development-history-section .flex-box .right-box .img-swiper::before {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 0.72rem;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
@media screen and (max-width: 800px) {
  .about-page .development-history-section .flex-box .right-box .img-swiper::before {
    display: none;
  }
}
.about-page .development-history-section .flex-box .right-box .img-swiper.remove::before {
  opacity: 0;
}
.about-page .development-history-section .flex-box .right-box .img-swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.about-page .development-history-section .flex-box .right-box .img-swiper .swiper-wrapper .swiper-slide .img-box .img {
  width: 100%;
}
.about-page .global-partners-section {
  margin-top: 1.2rem;
  margin-bottom: 0.96rem;
  position: relative;
  background: #F7F8FA;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section {
    margin-top: 1.28rem;
  }
}
.about-page .global-partners-section .bg-map-img {
  position: absolute;
  top: 0.96rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 4.8rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section .bg-map-img {
    top: 1.6rem;
    width: 100%;
    height: auto;
  }
}
.about-page .global-partners-section .global_wrapper {
  z-index: 10;
  padding-top: 0.96rem;
  padding-bottom: 2.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section .global_wrapper {
    padding-bottom: 2.4rem;
  }
}
.about-page .global-partners-section .global_wrapper .h2 {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section .global_wrapper .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.about-page .global-partners-section .global_wrapper .partners-swiper {
  margin-top: 0.96rem;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section .global_wrapper .partners-swiper {
    margin-top: 1.28rem;
  }
}
.about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: marquee var(--animation-duration, 10s) linear infinite;
          animation: marquee var(--animation-duration, 10s) linear infinite;
}
.about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide {
  width: 1.36rem;
  padding-top: 0.08rem;
  padding-bottom: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide {
    width: 1.12rem;
    padding-top: 0.16rem;
    padding-bottom: 0.16rem;
  }
}
.about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide:nth-child(2n) {
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
}
.about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide .card-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide .card-box {
    width: 1.92rem;
    height: 1.92rem;
  }
}
.about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide .card-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide .card-box .logo-img {
  position: relative;
  z-index: 2;
  height: 1.12rem;
  width: 1.12rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .about-page .global-partners-section .global_wrapper .partners-swiper .swiper-wrapper .swiper-slide .card-box .logo-img {
    height: 0.96rem;
    width: 0.96rem;
  }
}
.about-page .global-business-section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section {
    margin-bottom: 1.2rem;
    overflow: hidden;
  }
}
.about-page .global-business-section .h2 {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.about-page .global-business-section .global-businessb-box {
  margin-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box {
    margin-top: 0.48rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box {
  margin-right: 0.24rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3.68rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box {
    position: relative;
    width: 100%;
    margin-top: 0.48rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .label {
  position: absolute;
  left: 0;
  top: -0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .label {
    position: relative;
    top: 0;
    left: 0;
    font-size: 0.28rem;
    color: #6E798F;
    line-height: 0.48rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .label .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .label .icon {
    width: 0.48rem;
    height: 0.48rem;
    display: block;
    margin-right: 0.16rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list {
    height: auto;
    margin-top: 0.16rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box {
  display: block;
  padding: 0.24rem;
  border: 0.01rem solid #E6E6E6;
  margin-bottom: 0.16rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box {
    padding: 0.32rem;
    border-width: 0.02rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list {
    margin-top: 0.32rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box {
    margin-bottom: 0.16rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box:last-child {
  margin-bottom: 0;
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box .key-iocn {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box .key-iocn {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box .value {
  margin-left: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box .value {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .left-cell-box .card-list .card-box .infor-list .item-box .value .b {
  font-family: var(--sk-font-SemiBold);
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box {
  margin-left: 3.92rem;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 14rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .global-business-section .global-businessb-box .flex-box .map-box {
    width: 100%;
    margin-left: 0;
    width: 100vw;
    margin-left: -0.32rem;
  }
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .map-img {
  width: 100%;
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .canvas {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .anchor-list .anchor-box {
  position: absolute;
  top: var(--top);
  left: var(--left);
  z-index: 5;
  width: 0;
  height: 0;
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .anchor-list .anchor-box.on .before {
  width: 0.24rem;
  height: 0.24rem;
  background: -webkit-linear-gradient(bottom, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(0deg, #00FFFF 0%, #0059FF 100%);
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .anchor-list .anchor-box.on .text {
  left: 0.2rem;
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .anchor-list .anchor-box.on .text::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: -0.04rem;
  left: -0.4rem;
  width: calc(100% + 0.57rem);
  height: calc(100% + 0.08rem);
  background: #FFFFFF;
  -webkit-clip-path: polygon(0.16rem 0%, calc(100% - 0.16rem) 0%, 100% 0.16rem, 100% calc(100% - 0.16rem), calc(100% - 0.16rem) 100%, 0.16rem 100%, 0% calc(100% - 0.16rem), 0% 0.16rem);
          clip-path: polygon(0.16rem 0%, calc(100% - 0.16rem) 0%, 100% 0.16rem, 100% calc(100% - 0.16rem), calc(100% - 0.16rem) 100%, 0.16rem 100%, 0% calc(100% - 0.16rem), 0% 0.16rem);
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .anchor-list .anchor-box .before {
  position: absolute;
  z-index: 5;
  height: 100%;
  width: 0.16rem;
  height: 0.16rem;
  background: #252A35;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.about-page .global-business-section .global-businessb-box .flex-box .map-box .anchor-list .anchor-box .text {
  position: absolute;
  left: 0.12rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.about-page .related__news__section {
  margin-top: 1.2rem;
  margin-bottom: 0.56rem;
}
@media screen and (max-width: 800px) {
  .about-page .related__news__section {
    margin-top: 1.28rem;
    margin-bottom: 1.28rem;
    overflow: hidden;
  }
  .about-page .related__news__section .flex-box {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .about-page .related__news__section .flex-box .card-box {
    width: 6.08rem;
    margin-top: 0;
    margin-right: 0;
    padding-right: 0.32rem;
  }
  .about-page .related__news__section .btn {
    text-align: center;
  }
}

.banner__section {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 800px) {
  .banner__section {
    height: 4.48rem;
  }
}
.banner__section .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
}
.banner__section .banner-content {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner__section .banner-content .h1 {
  font-size: 0.64rem;
  line-height: 0.72rem;
  min-height: 1.44rem;
  letter-spacing: 3px;
  font-family: var(--sk-font-SemiBold);
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .banner__section .banner-content .h1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}

.banner__section_v2 {
  height: 5.44rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .banner__section_v2 {
    height: 4.48rem;
  }
}
.banner__section_v2 .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.banner__section_v2 .con-box {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.24rem;
}
@media screen and (max-width: 800px) {
  .banner__section_v2 .con-box {
    padding-bottom: 0;
  }
}
.banner__section_v2 .con-box .h1 {
  color: #FFFFFF;
  font-size: 0.64rem;
  line-height: 0.72rem;
  letter-spacing: 3px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .banner__section_v2 .con-box .h1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}

.honors-page .award-section {
  position: relative;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section {
    overflow: hidden;
  }
}
.honors-page .award-section .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.honors-page .award-section .award-content {
  padding-top: 1.92rem;
  padding-bottom: 1.52rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content {
    padding-top: 0.64rem;
    padding-bottom: 0.32rem;
  }
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .award-swiper {
    width: 5.6rem;
    margin: 0 auto;
  }
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  -webkit-transform: translateY(-0.32rem);
      -ms-transform: translateY(-0.32rem);
          transform: translateY(-0.32rem);
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide:nth-child(2n) {
  -webkit-transform: translateY(0.32rem);
      -ms-transform: translateY(0.32rem);
          transform: translateY(0.32rem);
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide:nth-child(2n) {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box {
  min-height: 6.4rem;
  padding: 0.64rem 0.62rem;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.2rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box {
    min-height: 8.64rem;
    height: 100%;
    padding: 0.64rem 0.32rem 0.48rem;
  }
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(bottom, #0059FF, #00FFFF);
  background: linear-gradient(0deg, #0059FF, #00FFFF);
  padding: 0.01rem;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box::before {
    padding: 0.02rem;
  }
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
  width: 2.4rem;
  min-height: 2.4rem;
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box .title {
  margin-top: 0.32rem;
  color: #FFFFFF;
  font-size: 0.2rem;
  line-height: 0.32rem;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box .title {
    margin-top: 0.48rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box .text {
  margin-top: 0.32rem;
  color: #FFFFFF;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .award-swiper .swiper-wrapper .swiper-slide .card-box .text {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.honors-page .award-section .award-content .schedule-navigation {
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .schedule-navigation {
    margin-top: 0.32rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.honors-page .award-section .award-content .schedule-navigation .schedule {
  color: #ffffff;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .schedule-navigation .schedule {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.honors-page .award-section .award-content .schedule-navigation .navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.honors-page .award-section .award-content .schedule-navigation .navigation .btn {
  width: 0.48rem;
  height: 0.48rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .schedule-navigation .navigation .btn {
    width: 0.96rem;
    height: 0.96rem;
  }
}
.honors-page .award-section .award-content .schedule-navigation .navigation .btn.prev {
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .honors-page .award-section .award-content .schedule-navigation .navigation .btn.prev {
    margin-right: 0.32rem;
  }
}
.honors-page .award-section .award-content .schedule-navigation .navigation .btn .icon {
  width: 100%;
  height: 100%;
}
.honors-page .related__news__section {
  padding-top: 0.96rem;
  padding-bottom: 0.56rem;
}
@media screen and (max-width: 800px) {
  .honors-page .related__news__section {
    padding-bottom: 1.28rem;
  }
}

.related__news__section {
  overflow: hidden;
}
.related__news__section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .related__news__section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.related__news__section .flex-box {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .related__news__section .flex-box {
    margin-top: 0.48rem;
  }
}
.related__news__section .flex-box .card-box {
  width: calc((100% - 0.32rem) / 3);
  margin-right: 0.16rem;
  margin-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .related__news__section .flex-box .card-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.96rem;
  }
}
.related__news__section .flex-box .card-box:nth-child(3n) {
  margin-right: 0;
}
.related__news__section .flex-box .card-box .img-box {
  width: 100%;
  height: 2.8rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .related__news__section .flex-box .card-box .img-box {
    height: 3.84rem;
  }
}
.related__news__section .flex-box .card-box .img-box .img {
  width: 100%;
  height: 100%;
}
.related__news__section .flex-box .card-box .date {
  margin-top: 0.32rem;
  letter-spacing: 1px;
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .related__news__section .flex-box .card-box .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.related__news__section .flex-box .card-box .title {
  margin-top: 0.08rem;
  padding-right: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .related__news__section .flex-box .card-box .title {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 800px) {
  .related__news__section .flex-box .card-box:hover .img-box img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.videos-page .h1 {
  padding-top: 0.96rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .videos-page .h1 {
    padding-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.videos-page .videos-content {
  margin-top: 0.32rem;
  padding-bottom: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .videos-page .videos-content {
    margin-top: 0.48rem;
    padding-bottom: 0.32rem;
  }
}
.videos-page .videos-content .video-item {
  width: calc((100% - 0.32rem) / 3);
  margin-right: 0.16rem;
  margin-bottom: 0.64rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .videos-page .videos-content .video-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.96rem;
  }
}
.videos-page .videos-content .video-item:nth-child(3n) {
  margin-right: 0;
}
.videos-page .videos-content .video-item .img-box {
  width: 100%;
  height: 2.8rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .videos-page .videos-content .video-item .img-box {
    height: 3.84rem;
  }
}
.videos-page .videos-content .video-item .img-box .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.videos-page .videos-content .video-item .img-box .duration {
  position: absolute;
  z-index: 2;
  bottom: 0.08rem;
  right: 0.08rem;
  padding: 0.04rem;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.12rem;
  line-height: 0.16rem;
  font-family: var(--sk-font-SemiBold);
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .videos-page .videos-content .video-item .img-box .duration {
    right: 0.16rem;
    bottom: 0.16rem;
    padding: 0.08rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.videos-page .videos-content .video-item .img-box .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.48rem;
  height: 0.48rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .videos-page .videos-content .video-item .img-box .play-icon {
    opacity: 1;
    width: 0.96rem;
    height: 0.96rem;
  }
}
.videos-page .videos-content .video-item .date {
  margin-top: 0.32rem;
  letter-spacing: 2px;
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .videos-page .videos-content .video-item .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.videos-page .videos-content .video-item .name {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  padding-right: 0.32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .videos-page .videos-content .video-item .name {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 800px) {
  .videos-page .videos-content .video-item:hover .img-box .img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
  .videos-page .videos-content .video-item:hover .img-box .play-icon {
    opacity: 1;
  }
}
.videos-page .video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(0.1rem);
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal {
    overflow: hidden;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.videos-page .video-modal.show {
  opacity: 1;
  visibility: visible;
}
.videos-page .video-modal .video-container {
  width: 100%;
}
.videos-page .video-modal .video-container .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box {
    padding: 0;
  }
}
.videos-page .video-modal .video-container .flex-box .link-button {
  width: 2.4rem;
  -webkit-transform: translateX(-0.32rem);
      -ms-transform: translateX(-0.32rem);
          transform: translateX(-0.32rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .link-button {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    position: absolute;
    bottom: 0.56rem;
    left: 0.32rem;
    width: 44.8vw;
  }
}
.videos-page .video-modal .video-container .flex-box .link-button .navigation {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 50%;
}
.videos-page .video-modal .video-container .flex-box .link-button .navigation .img-box {
  width: 100%;
  height: 1.36rem;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .link-button .navigation .img-box {
    height: 1.92rem;
    width: 44.8vw;
  }
}
.videos-page .video-modal .video-container .flex-box .link-button .navigation .img-box .img {
  width: 100%;
  height: 100%;
}
.videos-page .video-modal .video-container .flex-box .link-button .navigation .name {
  color: #6E798F;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin: 0.16rem 0.32rem 0;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .link-button .navigation .name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.videos-page .video-modal .video-container .flex-box .link-button.right-box {
  -webkit-transform: translateX(0.32rem);
      -ms-transform: translateX(0.32rem);
          transform: translateX(0.32rem);
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .link-button.right-box {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: auto;
    right: 0.32rem;
  }
}
.videos-page .video-modal .video-container .flex-box .link-button.right-box .navigation .name {
  text-align: right;
}
.videos-page .video-modal .video-container .flex-box .link-button:hover {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.videos-page .video-modal .video-container .flex-box .content-box {
  padding-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box {
    padding-top: 2.08rem;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box {
  width: 10.08rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box {
    width: 100%;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .close-btn {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .close-btn {
    right: 0.3rem;
    top: -0.84rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .close-btn .img {
  height: 100%;
  width: 100%;
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .video {
  width: 100%;
  object-fit: contain;
  height: 5.68rem;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .video {
    height: 4.16rem;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .name {
  color: #FFFFFF;
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .name {
    margin-top: 0.48rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding: 0 0.3rem 0 0.32rem;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .date {
  margin-top: 0.16rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #FFFFFF;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.3rem 0 0.32rem;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list {
  margin-top: 0.32rem;
  font-size: 0.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list {
    padding: 0 0.3rem 0 0.32rem;
    margin-top: 0.48rem;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list .link {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 0.4rem;
  width: 0.4rem;
  margin-right: 0.16rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list .link {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list .link .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list .link .icon {
    width: 0.32rem;
    height: 0.32rem;
  }
}
@media screen and (min-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list .link:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
  }
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .link-list .link:hover .icon path {
    fill: #252A35;
    fill-opacity: 1;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .btn {
  margin-top: 0.32rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .btn {
    width: calc(100vw - 0.6rem);
    margin: 0.64rem auto 0;
  }
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .btn .a {
  width: 100%;
}
.videos-page .video-modal .video-container .flex-box .content-box .video-box .btn .a .icon {
  position: relative;
  z-index: 2;
  width: 0.24rem;
  height: 0.24rem;
  display: block;
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .videos-page .video-modal .video-container .flex-box .content-box .video-box .btn .a .icon {
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.16rem;
  }
}

.esg-page .report-section {
  padding-top: 0.96rem;
  padding-bottom: 0.96rem;
  background: #252A35;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .esg-page .report-section {
    padding-bottom: 1.28rem;
  }
}
.esg-page .report-section .report-text {
  width: 10.08rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .esg-page .report-section .report-text {
    width: 100%;
    padding: 0 0.46rem 0 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.esg-page .report-section .btn {
  margin-top: 0.32rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .esg-page .report-section .btn {
    margin-top: 0.64rem;
  }
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section {
    overflow: hidden;
  }
}
.esg-page .sustainability-section .title-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.96rem;
  padding-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .title-top {
    padding-top: 0.64rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.esg-page .sustainability-section .title-top .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .title-top .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.esg-page .sustainability-section .title-top .text {
  width: 7.52rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .title-top .text {
    width: 100%;
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.esg-page .sustainability-section .con_wrapper {
  height: 10rem;
  max-height: 100vh;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper {
    height: 100vh;
    position: relative;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box {
  height: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box {
    padding: 0;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .img-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.esg-page .sustainability-section .con_wrapper .con-box .img-box .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.esg-page .sustainability-section .con_wrapper .con-box .img-box .img.on {
  opacity: 1;
  visibility: visible;
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper {
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper {
    padding-bottom: 0.32rem;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .left-box {
  padding-left: 0.12rem;
  border-right: 0.01rem solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .left-box {
    position: absolute;
    right: 0.32rem;
    top: 0.48rem;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .left-box .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  text-align: right;
  padding-right: 0.3rem;
  border-right: 0.02rem solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .left-box .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
    border-right: 0.04rem solid transparent;
    -webkit-transform: translateX(0.01rem);
        -ms-transform: translateX(0.01rem);
            transform: translateX(0.01rem);
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .left-box .title.on {
  color: #FFFFFF;
  border-right: 0.02rem solid #fff;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .left-box .title.on {
    border-right: 0.04rem solid #fff;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box {
  padding-left: 1.44rem;
  width: 10.08rem;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box {
    width: 6.56rem;
    padding-left: 0.32rem;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box {
  display: none;
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box.on {
  display: block;
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .tit {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .tit {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .txt {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .txt {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list {
    margin-top: 0.96rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li {
  width: calc(50% - 0.08rem);
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li {
    width: 100%;
    margin-bottom: 0.64rem;
  }
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li:last-child {
    margin-bottom: 0;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li .num-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 0.64rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li .num-box {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li .num-box .sub {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.36rem;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li .num-box .sub {
    font-size: 0.28rem;
    line-height: 0.56rem;
    padding-left: 0.08rem;
  }
}
.esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li .label {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .esg-page .sustainability-section .con_wrapper .con-box .content-box .content_wrapper .text-box .right-box .text-box .num-list .num-li .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.esg-page .esg-reports-section {
  padding-top: 0.96rem;
  padding-bottom: 0.88rem;
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section {
    padding-bottom: 1.28rem;
  }
}
.esg-page .esg-reports-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.esg-page .esg-reports-section .card-list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section .card-list {
    margin-top: 0.48rem;
  }
}
.esg-page .esg-reports-section .card-list .card-box {
  width: calc((100% - 0.32rem) / 3);
  margin-bottom: 0.32rem;
  margin-right: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section .card-list .card-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.16rem;
  }
}
.esg-page .esg-reports-section .card-list .card-box:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width: 800px) {
  .esg-page .esg-reports-section .card-list .card-box:hover .con-box {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.72rem), calc(100% - 0.72rem) 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.72rem), calc(100% - 0.72rem) 100%, 0% 100%);
  }
}
.esg-page .esg-reports-section .card-list .card-box .con-box {
  position: relative;
  z-index: 5;
  padding: 0.48rem 0.32rem;
  background: #F7F8FA;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section .card-list .card-box .con-box {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.96rem), calc(100% - 0.96rem) 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.96rem), calc(100% - 0.96rem) 100%, 0% 100%);
    padding: 0.64rem 0.54rem;
  }
}
.esg-page .esg-reports-section .card-list .card-box .con-box .img-box {
  width: 100%;
  height: 3.36rem;
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section .card-list .card-box .con-box .img-box {
    height: 6.72rem;
  }
}
.esg-page .esg-reports-section .card-list .card-box .con-box .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.esg-page .esg-reports-section .card-list .card-box .con-box .title {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section .card-list .card-box .con-box .title {
    margin-top: 0.48rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.esg-page .esg-reports-section .card-list .card-box .link {
  position: absolute;
  z-index: 2;
  bottom: 0.08rem;
  right: 0.08rem;
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .esg-page .esg-reports-section .card-list .card-box .link {
    bottom: 0;
    right: 0;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.esg-page .esg-reports-section .card-list .card-box .link .icon {
  width: 100%;
  height: 100%;
}

.news-page .breaking-news-section {
  padding-top: 0.96rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section {
    padding-top: 0.48rem;
    padding-bottom: 0.96rem;
  }
}
.news-page .breaking-news-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.news-page .breaking-news-section .swiper-img-box {
  margin-top: 0.64rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box {
    margin-top: 0.48rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide {
  height: 4.32rem;
  display: block;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .left-box {
  width: 7.52rem;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .left-box {
    width: 100%;
    height: 3.84rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .left-box .img {
  width: 100%;
  height: 100%;
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box {
  margin-left: 0.16rem;
  padding: 0.32rem;
  background: #F7F8FA;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box {
    margin-left: 0;
    margin-top: 0.16rem;
    min-height: 6.56rem;
    padding: 0.32rem 0.32rem 0.9rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .date {
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .title {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .title {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .text {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .text {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .btn {
  margin-top: 0.64rem;
}
@media screen and (min-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide:hover .flex-box .left-box .img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.news-page .breaking-news-section .swiper-img-box .pagination_custom {
  position: absolute;
  z-index: 10;
  bottom: 0.32rem;
  left: 8rem;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .pagination_custom {
    left: 0.32rem;
    bottom: 0.48rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item {
  width: 0.56rem;
  height: 0.02rem;
  background: rgba(37, 42, 53, 0.2);
  margin-right: 0.08rem;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item {
    width: 1.12rem;
    height: 0.04rem;
    margin-right: 0.16rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item.active {
  width: 1.12rem;
}
@media screen and (max-width: 800px) {
  .news-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item.active {
    width: 2.24rem;
  }
}
.news-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item .progress_bar {
  background-color: #252A35;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.news-page .all-news-section {
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section {
    padding-bottom: 1.28rem;
  }
}
.news-page .all-news-section .title-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .title-search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-page .all-news-section .title-search .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .title-search .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.news-page .all-news-section .title-search .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .title-search .search-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.32rem;
  }
}
.news-page .all-news-section .title-search .search-box .sk_select {
  width: 2.4rem;
  height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .title-search .search-box .sk_select {
    width: 100%;
    height: 0.96rem;
  }
}
.news-page .all-news-section .title-search .search-box .sk_select .-select-front {
  border: 0.01rem solid #BEC6D9;
}
.news-page .all-news-section .title-search .search-box .input-box {
  margin-left: 0.16rem;
  width: 4.96rem;
  height: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .title-search .search-box .input-box {
    margin-left: 0;
    margin-top: 0.16rem;
    width: 100%;
    height: 0.96rem;
  }
}
.news-page .all-news-section .title-search .search-box .input-box .input {
  height: 100%;
  width: 100%;
  border: 0.01rem solid #BEC6D9;
  padding: 0.12rem 0.46rem 0.12rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .title-search .search-box .input-box .input {
    padding: 0.24rem 0.96rem 0.24rem 0.32rem;
  }
}
.news-page .all-news-section .title-search .search-box .input-box .input::-webkit-input-placeholder {
  color: #6E798F;
}
.news-page .all-news-section .title-search .search-box .input-box .input::-moz-placeholder {
  color: #6E798F;
}
.news-page .all-news-section .title-search .search-box .input-box .input:-ms-input-placeholder {
  color: #6E798F;
}
.news-page .all-news-section .title-search .search-box .input-box .input::placeholder {
  color: #6E798F;
}
.news-page .all-news-section .title-search .search-box .input-box .search-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .title-search .search-box .input-box .search-icon {
    right: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.news-page .all-news-section .title-search .search-box .input-box .search-icon .img {
  height: 100%;
  width: 100%;
}
.news-page .all-news-section .flex-box {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .flex-box {
    margin-top: 0.48rem;
  }
}
.news-page .all-news-section .flex-box .card-box {
  width: calc((100% - 0.32rem) / 3);
  margin-bottom: 0.64rem;
  margin-right: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .flex-box .card-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.96rem;
  }
}
.news-page .all-news-section .flex-box .card-box:nth-child(3n) {
  margin-right: 0;
}
.news-page .all-news-section .flex-box .card-box .img-box {
  height: 2.8rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .flex-box .card-box .img-box {
    height: 3.84rem;
  }
}
.news-page .all-news-section .flex-box .card-box .img-box .img {
  width: 100%;
  height: 100%;
}
.news-page .all-news-section .flex-box .card-box .date {
  margin-top: 0.32rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .flex-box .card-box .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.news-page .all-news-section .flex-box .card-box .title-box {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  padding-right: 0.32rem;
}
@media screen and (max-width: 800px) {
  .news-page .all-news-section .flex-box .card-box .title-box {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 800px) {
  .news-page .all-news-section .flex-box .card-box:hover .img-box .img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.news-detail-page .main {
  padding-top: 0.32rem;
  padding-bottom: 1.2rem;
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
}
.news-detail-page .main .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box {
    position: relative;
    padding: 0;
  }
  .news-detail-page .main .flex-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3.84rem;
    left: 0;
    bottom: 0;
    background: #F7F8FA;
  }
}
.news-detail-page .main .flex-box .link-button {
  width: 2.4rem;
  -webkit-transform: translateX(-0.32rem);
      -ms-transform: translateX(-0.32rem);
          transform: translateX(-0.32rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .link-button {
    width: auto;
    position: absolute;
    z-index: 1;
    bottom: 0.64rem;
    left: 0;
    -webkit-transform: translateX(0.32rem);
        -ms-transform: translateX(0.32rem);
            transform: translateX(0.32rem);
  }
}
.news-detail-page .main .flex-box .link-button .navigation {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 50vh;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .link-button .navigation {
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.news-detail-page .main .flex-box .link-button .navigation .img-box {
  width: 100%;
  height: 1.36rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .link-button .navigation .img-box {
    height: 1.92rem;
    width: 44.8vw;
  }
}
.news-detail-page .main .flex-box .link-button .navigation .img-box .img {
  width: 100%;
  height: 100%;
}
.news-detail-page .main .flex-box .link-button .navigation .name {
  color: #6E798F;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin: 0.16rem 0.32rem 0;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .link-button .navigation .name {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.news-detail-page .main .flex-box .link-button.right-box {
  -webkit-transform: translateX(0.32rem);
      -ms-transform: translateX(0.32rem);
          transform: translateX(0.32rem);
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .link-button.right-box {
    -webkit-transform: translateX(-0.32rem);
        -ms-transform: translateX(-0.32rem);
            transform: translateX(-0.32rem);
    left: auto;
    right: 0;
  }
}
.news-detail-page .main .flex-box .link-button.right-box .navigation .name {
  text-align: right;
}
@media screen and (min-width: 800px) {
  .news-detail-page .main .flex-box .link-button:hover {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.news-detail-page .main .flex-box .content-box {
  width: 10.08rem;
  background: #FFFFFF;
  padding: 0.64rem 1.28rem 0.88rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box {
    width: 100%;
    padding: 0.48rem 0.3rem 4.8rem;
  }
}
.news-detail-page .main .flex-box .content-box .back-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.news-detail-page .main .flex-box .content-box .back-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .back-box .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.news-detail-page .main .flex-box .content-box .back-box .text {
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .back-box .text {
    margin-left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.news-detail-page .main .flex-box .content-box .h1 {
  margin-top: 0.32rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .h1 {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .date {
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
  color: #252A35;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 2px;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list .link {
  margin-right: 0.16rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: 0.01rem solid #252A35;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list .link {
    margin-left: 0;
    margin-right: 0.16rem;
    width: 0.64rem;
    height: 0.64rem;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list .link .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list .link .icon {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list .link .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list .link:hover {
    background: #252A35;
  }
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .link-list .link:hover .icon path {
    fill: #FFFFFF;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0.4rem;
  padding: 0 0.24rem;
  border-radius: 0.4rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  position: relative;
  overflow: hidden;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn {
    margin-top: 0.46rem;
    height: 0.8rem;
    padding: 0 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn:hover {
    border-width: 0;
  }
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn:hover .icon rect,
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn:hover .icon path {
    stroke: #fff;
  }
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn:hover .text {
    color: #fff;
  }
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn:hover::after {
    opacity: 0;
  }
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn:hover::before {
    opacity: 1;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn .icon {
  position: relative;
  z-index: 2;
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn .icon rect,
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn .text {
  position: relative;
  z-index: 2;
  margin-left: 0.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn .text {
    margin-left: 0.16rem;
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn::after {
  content: "";
  position: absolute;
  height: calc(100% - 0.02rem);
  width: calc(100% - 0.02rem);
  top: 0;
  left: 0;
  border-radius: 0.4rem;
  border: 0.01rem solid #252A35;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn::after {
    border-width: 0.02rem;
    height: calc(100% - 0.04rem);
    width: calc(100% - 0.04rem);
  }
}
.news-detail-page .main .flex-box .content-box .infor-link .link-list_wrapper .copy-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-detail-page .main .flex-box .content-box .html-box {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .html-box {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.news-detail-page .main .flex-box .content-box .html-box p {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .html-box p {
    margin-top: 0.48rem;
  }
}
.news-detail-page .main .flex-box .content-box .html-box img {
  margin-bottom: 0.32rem;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .news-detail-page .main .flex-box .content-box .html-box img {
    margin-bottom: 0.48rem;
  }
}
.news-detail-page .main .flex-box .content-box .html-box video {
  max-width: 100%;
}

.events-page .breaking-news-section {
  padding-top: 0.64rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section {
    padding-top: 0.48rem;
    padding-bottom: 0.8rem;
    overflow: hidden;
  }
}
.events-page .breaking-news-section .class-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.events-page .breaking-news-section .class-list .class-li {
  cursor: pointer;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0 0.16rem 0.16rem;
  position: relative;
  letter-spacing: 1px;
  color: #6E798F;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .class-list .class-li {
    margin-right: 0;
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.34rem 0.16rem;
  }
}
.events-page .breaking-news-section .class-list .class-li:last-child {
  margin-right: 0;
}
.events-page .breaking-news-section .class-list .class-li::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 0.03rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .class-list .class-li::after {
    height: 0.04rem;
  }
}
.events-page .breaking-news-section .class-list .class-li.on {
  color: #252A35;
  font-family: var(--sk-font-SemiBold);
}
.events-page .breaking-news-section .class-list .class-li.on::after {
  opacity: 1;
}
.events-page .breaking-news-section .swiper-img-box {
  margin-top: 0.64rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box {
    margin-top: 0.48rem;
    overflow: visible;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide {
  height: 4.32rem;
  display: block;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .left-box {
  width: 7.52rem;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .left-box {
    width: 100%;
    height: 3.84rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .left-box .img {
  width: 100%;
  height: 100%;
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box {
  margin-left: 0.16rem;
  padding: 0.32rem;
  background: #F7F8FA;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box {
    margin-left: 0;
    margin-top: 0.16rem;
    min-height: 6.56rem;
    padding-bottom: 0.96rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .tag {
  position: absolute;
  top: 0.16rem;
  left: -0.08rem;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .tag {
    top: 0.32rem;
    left: -0.16rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .tag .text {
  color: #FFFFFF;
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  padding: 0 0.16rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.04rem), calc(100% - 0.04rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.04rem), calc(100% - 0.04rem) 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .tag .text {
    font-size: 0.16rem;
    line-height: 0.32rem;
    letter-spacing: 1px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .tag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.08rem;
  height: 0.04rem;
  background-color: #0059FF;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .tag::before {
    width: 0.16rem;
    height: 0.08rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .title {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .title {
    margin-top: 0.64rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box {
  margin-top: 0.32rem;
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item {
    margin-bottom: 0.32rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item:last-child {
  margin-bottom: 0;
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item .key {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item .key {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item .key .svg {
  width: 100%;
  height: 100%;
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item .value {
  padding-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .list-box .obj-item .value {
    padding-left: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .bectangle {
  position: relative;
  margin-top: 0.32rem;
  height: 0.4rem;
  border: 0.02rem solid #252A35;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.1rem), calc(100% - 0.1rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.1rem), calc(100% - 0.1rem) 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .bectangle {
    margin-top: 0.48rem;
    height: 0.8rem;
    padding: 0 0.32rem;
    border-width: 0.04rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%);
  }
}
.events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .bectangle::after {
  content: "";
  position: absolute;
  width: 0.14rem;
  height: 0.02rem;
  background: #252A35;
  bottom: 0.02rem;
  right: 0.02rem;
  -webkit-transform: rotate(-45deg) translate(0.04rem, 0.03rem);
      -ms-transform: rotate(-45deg) translate(0.04rem, 0.03rem);
          transform: rotate(-45deg) translate(0.04rem, 0.03rem);
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide .flex-box .right-box .bectangle::after {
    width: 0.26rem;
    height: 0.04rem;
    bottom: 0.04rem;
    right: 0;
  }
}
@media screen and (min-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .swiper-wrapper .swiper-slide:hover .flex-box .left-box .img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.events-page .breaking-news-section .swiper-img-box .pagination_custom {
  position: absolute;
  z-index: 10;
  bottom: 0.32rem;
  left: 8rem;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .pagination_custom {
    bottom: 0.48rem;
    left: 0.32rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.events-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item {
  width: 0.56rem;
  height: 0.02rem;
  background: rgba(37, 42, 53, 0.2);
  margin-right: 0.08rem;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item {
    width: 1.12rem;
    height: 0.04rem;
    margin-right: 0.16rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item.active {
  width: 1.12rem;
}
@media screen and (max-width: 800px) {
  .events-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item.active {
    width: 2.24rem;
  }
}
.events-page .breaking-news-section .swiper-img-box .pagination_custom .pagination_con .pagination_custom_item .progress_bar {
  background-color: #252A35;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.events-page .all-events-section {
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section {
    padding-bottom: 1.28rem;
  }
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .tag-list {
    overflow-x: auto;
    width: 100vw;
    padding-left: 0.32rem;
    padding-right: 0.32rem;
    margin-left: -0.32rem;
  }
}
.events-page .all-events-section .tag-list .tag_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .tag-list .tag_wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.events-page .all-events-section .tag-list .tag_wrapper .tag-item {
  border: 0.01rem solid #252A35;
  cursor: pointer;
  height: 0.4rem;
  padding: 0 0.32rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin-right: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .tag-list .tag_wrapper .tag-item {
    border: 0.02rem solid #252A35;
    height: 0.64rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.events-page .all-events-section .tag-list .tag_wrapper .tag-item.active {
  background-color: #252A35;
  color: #fff;
}
.events-page .all-events-section .tag-list .tag_wrapper .tag-item:hover {
  background-color: #252A35;
  color: #fff;
}
.events-page .all-events-section .card-list {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list {
    margin-top: 0.8rem;
  }
}
.events-page .all-events-section .card-list .card-box {
  display: block;
  height: 2.8rem;
  position: relative;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box {
    height: auto;
    margin-bottom: 0.96rem;
  }
}
.events-page .all-events-section .card-list .card-box:last-child {
  margin-bottom: 0;
}
.events-page .all-events-section .card-list .card-box .tag {
  position: absolute;
  z-index: 4;
  top: 0.16rem;
  left: -0.08rem;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .tag {
    left: -0.16rem;
  }
}
.events-page .all-events-section .card-list .card-box .tag .text {
  color: #FFFFFF;
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  padding: 0 0.16rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.04rem), calc(100% - 0.04rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.04rem), calc(100% - 0.04rem) 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .tag .text {
    font-size: 0.16rem;
    line-height: 0.32rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
  }
}
.events-page .all-events-section .card-list .card-box .tag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.08rem;
  height: 0.04rem;
  background-color: #0059FF;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .tag::before {
    width: 0.16rem;
    height: 0.08rem;
  }
}
.events-page .all-events-section .card-list .card-box .flex-box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.events-page .all-events-section .card-list .card-box .flex-box .left-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 4.96rem;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .flex-box .left-box {
    width: 100%;
    height: 3.84rem;
  }
}
.events-page .all-events-section .card-list .card-box .flex-box .left-box .img {
  height: 100%;
  width: 100%;
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box {
  padding-left: 0.48rem;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .flex-box .right-box {
    padding: 0;
    margin-top: 0.32rem;
  }
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box .title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .flex-box .right-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box {
  margin-top: 0.32rem;
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item {
    margin-bottom: 0.32rem;
  }
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item:last-child {
  margin-bottom: 0;
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item .key {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item .key {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item .key .svg {
  width: 100%;
  height: 100%;
}
.events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item .value {
  padding-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .card-list .card-box .flex-box .right-box .list-box .obj-item .value {
    padding-left: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .events-page .all-events-section .card-list .card-box:hover .flex-box .left-box .img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.events-page .all-events-section .pagination__box {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .events-page .all-events-section .pagination__box {
    margin-top: 0.96rem;
  }
}

.events-detail-page .main {
  padding-top: 0.32rem;
  padding-bottom: 1.2rem;
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
}
.events-detail-page .main .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box {
    position: relative;
    padding: 0;
  }
  .events-detail-page .main .flex-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3.84rem;
    left: 0;
    bottom: 0;
    background: #F7F8FA;
  }
}
.events-detail-page .main .flex-box .link-button {
  width: 2.4rem;
  -webkit-transform: translateX(-0.32rem);
      -ms-transform: translateX(-0.32rem);
          transform: translateX(-0.32rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .link-button {
    width: auto;
    position: absolute;
    z-index: 1;
    bottom: 0.64rem;
    left: 0;
    -webkit-transform: translateX(0.32rem);
        -ms-transform: translateX(0.32rem);
            transform: translateX(0.32rem);
  }
}
.events-detail-page .main .flex-box .link-button .navigation {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 50vh;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .link-button .navigation {
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.events-detail-page .main .flex-box .link-button .navigation .img-box {
  width: 100%;
  height: 1.36rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .link-button .navigation .img-box {
    height: 1.92rem;
    width: 44.8vw;
  }
}
.events-detail-page .main .flex-box .link-button .navigation .img-box .img {
  width: 100%;
  height: 100%;
}
.events-detail-page .main .flex-box .link-button .navigation .name {
  color: #6E798F;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin: 0.16rem 0.32rem 0;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .link-button .navigation .name {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.events-detail-page .main .flex-box .link-button.right-box {
  -webkit-transform: translateX(0.32rem);
      -ms-transform: translateX(0.32rem);
          transform: translateX(0.32rem);
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .link-button.right-box {
    -webkit-transform: translateX(-0.32rem);
        -ms-transform: translateX(-0.32rem);
            transform: translateX(-0.32rem);
    left: auto;
    right: 0;
  }
}
.events-detail-page .main .flex-box .link-button.right-box .navigation .name {
  text-align: right;
}
@media screen and (min-width: 800px) {
  .events-detail-page .main .flex-box .link-button:hover {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.events-detail-page .main .flex-box .content-box {
  width: 10.08rem;
  background: #FFFFFF;
  padding: 0.64rem 1.28rem 0.88rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box {
    width: 100%;
    padding: 0.48rem 0.3rem 4.8rem;
  }
}
.events-detail-page .main .flex-box .content-box .back-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.events-detail-page .main .flex-box .content-box .back-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .back-box .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .back-box .text {
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .back-box .text {
    margin-left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .h1 {
  margin-top: 0.32rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .h1 {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.events-detail-page .main .flex-box .content-box .list-box {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .list-box {
    margin-top: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .list-box .obj-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .list-box .obj-item {
    margin-bottom: 0.32rem;
  }
}
.events-detail-page .main .flex-box .content-box .list-box .obj-item:last-child {
  margin-bottom: 0;
}
.events-detail-page .main .flex-box .content-box .list-box .obj-item .key {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .list-box .obj-item .key {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .list-box .obj-item .key .svg {
  width: 100%;
  height: 100%;
}
.events-detail-page .main .flex-box .content-box .list-box .obj-item .value {
  padding-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .list-box .obj-item .value {
    padding-left: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .bectangle {
  position: relative;
  margin-top: 0.32rem;
  height: 0.4rem;
  border: 0.02rem solid #252A35;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.1rem), calc(100% - 0.1rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.1rem), calc(100% - 0.1rem) 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .bectangle {
    margin-top: 0.48rem;
    height: 0.8rem;
    padding: 0 0.32rem;
    border-width: 0.04rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%);
  }
}
.events-detail-page .main .flex-box .content-box .bectangle::after {
  content: "";
  position: absolute;
  width: 0.14rem;
  height: 0.02rem;
  background: #252A35;
  bottom: 0.02rem;
  right: 0.02rem;
  -webkit-transform: rotate(-45deg) translate(0.04rem, 0.03rem);
      -ms-transform: rotate(-45deg) translate(0.04rem, 0.03rem);
          transform: rotate(-45deg) translate(0.04rem, 0.03rem);
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .bectangle::after {
    width: 0.26rem;
    height: 0.04rem;
    bottom: 0.04rem;
    right: 0;
  }
}
.events-detail-page .main .flex-box .content-box .infor-link {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .infor-link {
    margin-top: 0.64rem;
    padding-bottom: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .infor-link .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.events-detail-page .main .flex-box .content-box .infor-link .link-list .link {
  margin-right: 0.16rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: 0.01rem solid #252A35;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .infor-link .link-list .link {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.events-detail-page .main .flex-box .content-box .infor-link .link-list .link .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .infor-link .link-list .link .icon {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.events-detail-page .main .flex-box .content-box .infor-link .link-list .link .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .events-detail-page .main .flex-box .content-box .infor-link .link-list .link:hover {
    background: #252A35;
  }
  .events-detail-page .main .flex-box .content-box .infor-link .link-list .link:hover .icon path {
    fill: #FFFFFF;
  }
}
.events-detail-page .main .flex-box .content-box .html-box {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .html-box {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .html-box p {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .html-box p {
    margin-top: 0.48rem;
  }
}
.events-detail-page .main .flex-box .content-box .html-box img {
  margin-bottom: 0.32rem;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .events-detail-page .main .flex-box .content-box .html-box img {
    margin-bottom: 0.48rem;
  }
}

.support-page .downloads-section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section {
    margin-top: 0.48rem;
    margin-bottom: 0.8rem;
  }
}
.support-page .downloads-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.support-page .downloads-section .p {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .p {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.support-page .downloads-section .card-list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  --clip-width: 0.2rem;
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .card-list {
    margin-top: 0.48rem;
    --clip-width: 0.16rem;
  }
}
.support-page .downloads-section .card-list .card-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(50% - 0.08rem);
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  background: #F7F8FA;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  -webkit-clip-path: polygon(var(--clip-width) 0, calc(100% - var(--clip-width)) 0, 100% var(--clip-width), 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)), 0 var(--clip-width));
          clip-path: polygon(var(--clip-width) 0, calc(100% - var(--clip-width)) 0, 100% var(--clip-width), 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)), 0 var(--clip-width));
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .card-list .card-box {
    width: 100%;
    margin-right: 0;
  }
  .support-page .downloads-section .card-list .card-box:first-child {
    -webkit-clip-path: polygon(0 0, calc(100% - var(--clip-width)) 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)), 0 var(--clip-width));
            clip-path: polygon(0 0, calc(100% - var(--clip-width)) 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)), 0 var(--clip-width));
  }
  .support-page .downloads-section .card-list .card-box:last-child {
    -webkit-clip-path: polygon(var(--clip-width) 0, calc(100% - var(--clip-width)) 0, 100% var(--clip-width), 100% 100%, 0 100%, 0 var(--clip-width));
            clip-path: polygon(var(--clip-width) 0, calc(100% - var(--clip-width)) 0, 100% var(--clip-width), 100% 100%, 0 100%, 0 var(--clip-width));
  }
}
@media screen and (min-width: 800px) {
  .support-page .downloads-section .card-list .card-box:nth-child(2n) {
    margin-right: 0;
  }
  .support-page .downloads-section .card-list .card-box:nth-child(1), .support-page .downloads-section .card-list .card-box:nth-child(2) {
    -webkit-clip-path: polygon(0 0, calc(100% - var(--clip-width)) 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)), 0 var(--clip-width));
            clip-path: polygon(0 0, calc(100% - var(--clip-width)) 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)), 0 var(--clip-width));
  }
  .support-page .downloads-section .card-list .card-box:nth-last-child(1), .support-page .downloads-section .card-list .card-box:nth-last-child(2) {
    -webkit-clip-path: polygon(var(--clip-width) 0, calc(100% - var(--clip-width)) 0, 100% var(--clip-width), 100% 100%, 0 100%, 0 var(--clip-width));
            clip-path: polygon(var(--clip-width) 0, calc(100% - var(--clip-width)) 0, 100% var(--clip-width), 100% 100%, 0 100%, 0 var(--clip-width));
  }
}
.support-page .downloads-section .card-list .card-box::before {
  content: "";
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top, #F7F8FA 0%, #E4E9F4 100%);
  background: linear-gradient(180deg, #F7F8FA 0%, #E4E9F4 100%);
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .card-list .card-box::before {
    opacity: 1;
  }
}
@media screen and (min-width: 800px) {
  .support-page .downloads-section .card-list .card-box:hover::before {
    opacity: 1;
  }
  .support-page .downloads-section .card-list .card-box:hover .left-box .icon-box {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.support-page .downloads-section .card-list .card-box .left-box {
  padding: 0.32rem 0.16rem 0.32rem 0.32rem;
  position: relative;
  z-index: 5;
}
.support-page .downloads-section .card-list .card-box .left-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .card-list .card-box .left-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.support-page .downloads-section .card-list .card-box .left-box .desc {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .card-list .card-box .left-box .desc {
    font-size: 0.24rem;
    line-height: 0.32rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
.support-page .downloads-section .card-list .card-box .left-box .icon-box {
  position: absolute;
  bottom: 0.32rem;
  left: 0.32rem;
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transform: translateY(0.6rem) scale(0.5);
      -ms-transform: translateY(0.6rem) scale(0.5);
          transform: translateY(0.6rem) scale(0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .card-list .card-box .left-box .icon-box {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    width: 0.32rem;
    height: 0.32rem;
    bottom: 0.4rem;
    left: 0.4rem;
  }
}
.support-page .downloads-section .card-list .card-box .left-box .icon-box .icon {
  height: 100%;
  width: 100%;
}
.support-page .downloads-section .card-list .card-box .right-box {
  z-index: 5;
  width: 3.68rem;
  height: 3.68rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .support-page .downloads-section .card-list .card-box .right-box {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.support-page .downloads-section .card-list .card-box .right-box .img {
  width: 100%;
  height: 100%;
}
.support-page .convenient-services-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section {
    margin-top: 0;
    margin-bottom: 0.8rem;
  }
}
.support-page .convenient-services-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.support-page .convenient-services-section .card-list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .card-list {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.support-page .convenient-services-section .card-list .card-box {
  width: calc(50% - 0.08rem);
  height: 4.32rem;
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .card-list .card-box {
    width: 100%;
    margin-bottom: 0.32rem;
    margin-right: 0;
  }
}
.support-page .convenient-services-section .card-list .card-box:nth-child(2n) {
  margin-right: 0;
}
.support-page .convenient-services-section .card-list .card-box .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.support-page .convenient-services-section .card-list .card-box .con-box {
  position: relative;
  z-index: 5;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.32rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.support-page .convenient-services-section .card-list .card-box .con-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .card-list .card-box .con-box .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.support-page .convenient-services-section .card-list .card-box .con-box .row-btn {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .card-list .card-box .con-box .row-btn {
    margin-top: 0.32rem;
  }
}
.support-page .convenient-services-section .card-list .card-box .con-box .row-btn .a {
  width: 100%;
}
.support-page .convenient-services-section .card-list .card-box .con-box .input-box {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .card-list .card-box .con-box .input-box {
    margin-top: 0.32rem;
  }
}
.support-page .convenient-services-section .card-list .card-box .con-box .input-box .input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 0.08rem;
  height: 0.48rem;
  border: 0.01rem solid #FFFFFF;
  padding: 0.12rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .card-list .card-box .con-box .input-box .input {
    height: 0.8rem;
    border-width: 0.02rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.support-page .convenient-services-section .card-list .card-box .con-box .input-box .input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.support-page .convenient-services-section .card-list .card-box .con-box .input-box .input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.support-page .convenient-services-section .card-list .card-box .con-box .input-box .input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.support-page .convenient-services-section .card-list .card-box .con-box .input-box .input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .support-page .convenient-services-section .card-list .card-box .con-box .input-box .btn .a {
    padding: 0 0.24rem;
    letter-spacing: 1px;
    height: 0.8rem;
  }
  .support-page .convenient-services-section .card-list .card-box .con-box .input-box .btn .a::before {
    display: none;
  }
}
.support-page .contact-us-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section {
    margin-top: 0.8rem;
    margin-bottom: 1.28rem;
  }
}
.support-page .contact-us-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.support-page .contact-us-section .card-list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list {
    margin-top: 0.48rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.support-page .contact-us-section .card-list .card-box {
  width: calc((100% - 0.32rem) / 3);
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  padding: 0.32rem 0.32rem 0.48rem;
  background: #F7F8FA;
  position: relative;
  overflow: hidden;
}
.support-page .contact-us-section .card-list .card-box:hover .qr_wrapper {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list .card-box {
    width: 100%;
    margin-right: 0;
    padding: 0.48rem;
  }
}
.support-page .contact-us-section .card-list .card-box:nth-child(3n) {
  margin-right: 0;
}
.support-page .contact-us-section .card-list .card-box .icon-box {
  width: 0.48rem;
  height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list .card-box .icon-box {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.support-page .contact-us-section .card-list .card-box .icon-box .icon {
  height: 100%;
  width: 100%;
}
.support-page .contact-us-section .card-list .card-box .title {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list .card-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.support-page .contact-us-section .card-list .card-box .desc {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list .card-box .desc {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.support-page .contact-us-section .card-list .card-box .link-box {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list .card-box .link-box {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.support-page .contact-us-section .card-list .card-box .link-box .link-icon {
  margin-left: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list .card-box .link-box .link-icon {
    margin-left: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.support-page .contact-us-section .card-list .card-box .link-box .link-icon .icon {
  width: 100%;
  height: 100%;
}
.support-page .contact-us-section .card-list .card-box .qr_wrapper {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.2rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.support-page .contact-us-section .card-list .card-box .qr_wrapper .qr-img {
  width: 1.28rem;
  height: 1.28rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .support-page .contact-us-section .card-list .card-box .qr_wrapper .qr-img {
    width: 2.26rem;
    height: 2.26rem;
  }
}

.downloads-page .downloads-section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section {
    margin-top: 0.48rem;
    margin-bottom: 1.28rem;
  }
}
.downloads-page .downloads-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .downloads-page .downloads-section .flex-box .filter-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0.32rem;
    border-bottom: 0.02rem solid #E6E6E6;
  }
  .downloads-page .downloads-section .flex-box .filter-btn .left-text-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .downloads-page .downloads-section .flex-box .filter-btn .left-text-icon .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .downloads-page .downloads-section .flex-box .filter-btn .left-text-icon .txt {
    margin-left: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
  .downloads-page .downloads-section .flex-box .filter-btn .right-icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-right: 0.32rem;
  margin-right: 0.64rem;
  border-right: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.6);
    border-right: none;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .downloads-page .downloads-section .flex-box .left_wrapper.show {
    opacity: 1;
    visibility: visible;
  }
  .downloads-page .downloads-section .flex-box .left_wrapper.show .left-box {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .downloads-page .downloads-section .flex-box .left_wrapper .clonse-btn {
    position: absolute;
    z-index: 10;
    bottom: 0.56rem;
    left: 4.46rem;
    width: 0.8rem;
    height: 0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 0.01rem solid #252A35;
    background: #fff;
  }
  .downloads-page .downloads-section .flex-box .left_wrapper .clonse-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper .left-box {
    width: 5.76rem;
    position: absolute;
    height: 100%;
    background: #FFFFFF;
    top: 0;
    left: 0;
    padding: 0.88rem 0.32rem 1.4rem 0.16rem;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0.3s;
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple {
  width: 2.88rem;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple {
    width: 100%;
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent {
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent {
    margin-bottom: 0.16rem;
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.08rem 0 0.08rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header {
    padding: 0.16rem 0 0.16rem 0.16rem;
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header .text {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header .text {
    font-size: 0.32rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header .tree-toggle {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header .tree-toggle {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header.on {
  background: #252A35;
  color: #ffffff;
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header.show .tree-toggle {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-header.show ~ .tree-content {
  height: auto;
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-content {
  height: 0;
  overflow: hidden;
  padding: 0 0 0 0.16rem;
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-content .tree-child {
  margin-top: 0.08rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-content .tree-child {
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0.16rem;
    padding: 0.16rem 0.16rem 0.16rem 0.32rem;
  }
}
.downloads-page .downloads-section .flex-box .left_wrapper .left-box .tree-menu-simple .tree-parent .tree-content .tree-child.on {
  background: #252A35;
  color: #ffffff;
}
.downloads-page .downloads-section .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box {
    margin-top: 0.48rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .search-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box {
  margin-left: auto;
  margin-bottom: 0.2rem;
  width: 4.96rem;
  height: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .search-box .input-box {
    margin-left: 0;
    width: 100%;
    height: 0.96rem;
    margin-top: 0.16rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box .input {
  height: 100%;
  width: 100%;
  border: 0.01rem solid #BEC6D9;
  padding: 0.12rem 0.46rem 0.12rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .search-box .input-box .input {
    padding: 0.24rem 0.96rem 0.24rem 0.32rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box .input::-webkit-input-placeholder {
  color: #6E798F;
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box .input::-moz-placeholder {
  color: #6E798F;
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box .input:-ms-input-placeholder {
  color: #6E798F;
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box .input::placeholder {
  color: #6E798F;
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box .search-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .search-box .input-box .search-icon {
    right: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .search-box .input-box .search-icon .img {
  height: 100%;
  width: 100%;
}
.downloads-page .downloads-section .flex-box .right-box .results-found {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .results-found {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .link-list {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .link-list {
    margin-top: 0.48rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .link-list .link-item {
  padding: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F7F8FA;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .link-list .link-item {
    padding: 0.32rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .link-list .link-item:last-child {
  margin-bottom: 0;
}
.downloads-page .downloads-section .flex-box .right-box .link-list .link-item .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: 0;
      -ms-flex-direction: 0;
          flex-direction: 0;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .link-list .link-item .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .link-list .link-item .text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .link-list .link-item .text {
    margin-left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.downloads-page .downloads-section .flex-box .right-box .pagination-box {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .downloads-page .downloads-section .flex-box .right-box .pagination-box {
    margin-top: 0.96rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.distributors-page .map-section {
  padding-top: 0.96rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section {
    padding-top: 0.48rem;
    padding-bottom: 1.28rem;
  }
}
.distributors-page .map-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .distributors-page .map-section .flex-box .filter-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0.32rem;
    border-bottom: 0.02rem solid #E6E6E6;
  }
  .distributors-page .map-section .flex-box .filter-btn .left-text-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .distributors-page .map-section .flex-box .filter-btn .left-text-icon .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .distributors-page .map-section .flex-box .filter-btn .left-text-icon .txt {
    margin-left: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
  .distributors-page .map-section .flex-box .filter-btn .right-icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .left_wrapper {
  width: 2.56rem;
  padding-right: 0.16rem;
  border-right: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.6);
    border-right: none;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .distributors-page .map-section .flex-box .left_wrapper.show {
    opacity: 1;
    visibility: visible;
  }
  .distributors-page .map-section .flex-box .left_wrapper.show .cell_wrapper {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .distributors-page .map-section .flex-box .left_wrapper .cell_wrapper {
    width: 5.76rem;
    position: absolute;
    height: 100%;
    background: #FFFFFF;
    top: 0;
    left: 0;
    padding: 0.88rem 0.32rem 1.4rem;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0.3s;
  }
  .distributors-page .map-section .flex-box .left_wrapper .clonse-btn {
    position: absolute;
    z-index: 10;
    bottom: 0.56rem;
    left: 4.46rem;
    width: 0.8rem;
    height: 0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 0.01rem solid #252A35;
    background: #fff;
  }
  .distributors-page .map-section .flex-box .left_wrapper .clonse-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list {
    height: 100%;
    width: 100%;
    overflow-y: auto;
  }
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link {
    margin-bottom: 0.64rem;
  }
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box.active .arrows .add {
  display: none;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box.active .arrows .del {
  display: block;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box .cell-name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box .cell-name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box .arrows {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box .arrows {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box .arrows img {
  width: 100%;
  height: 100%;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box .arrows .add {
  display: block;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .cell-box .arrows .del {
  display: none;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box {
  padding-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box {
    padding-top: 0.64rem;
  }
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box .layer__item {
  margin-top: 0.32rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box .layer__item {
    margin-top: 0.64rem;
  }
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box .layer__item:first-child {
  margin-top: 0;
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box .layer__item .icon {
  width: 0.36rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box .layer__item .icon {
    width: 0.72rem;
  }
}
.distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box .layer__item .txt {
  margin-left: 0.12rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .left_wrapper .cell-list .ft_link .layer__wp .layer-box .layer__item .txt {
    margin-left: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .right-box {
  margin-left: 1.28rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .right-box {
    margin-left: 0;
    margin-top: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .right-box .map-box {
  width: 7.52rem;
  height: 7.52rem;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .right-box .map-box {
    height: 6.88rem;
    width: 100%;
  }
}
.distributors-page .map-section .flex-box .right-box .map-box .map {
  width: 100%;
  height: 100%;
}
.distributors-page .map-section .flex-box .information-dialog-box {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  width: 4.96rem;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box {
    position: relative;
    margin-top: 0.97rem;
    width: 100%;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .header_box {
  position: relative;
  padding: 0.24rem;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .header_box {
    padding: 0.16rem 0.32rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .header_box .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.distributors-page .map-section .flex-box .information-dialog-box .header_box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .header_box .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box {
  padding: 0.24rem;
  border: 0.01rem solid #E6E6E6;
  border-top: none;
  max-height: 6rem;
  overflow-y: auto;
  scrollbar-width: thin;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .body_box {
    max-height: none;
    padding: 0.32rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box {
  padding-bottom: 0.24rem;
  padding-top: 0.24rem;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box {
    padding-bottom: 0.32rem;
    padding-top: 0.32rem;
    border-width: 0.02rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box:first-child {
  padding-top: 0;
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box:last-child {
  border: none;
  padding-bottom: 0;
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list {
    margin-top: 0.32rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box {
  margin-bottom: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box {
    margin-bottom: 0.16rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box:last-child {
  margin-bottom: 0;
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box .key-iocn {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box .key-iocn {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box .value {
  margin-left: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box .value {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.distributors-page .map-section .flex-box .information-dialog-box .body_box .card-box .infor-list .item-box .value .b {
  font-family: var(--sk-font-SemiBold);
}

.contact-us-page .contact-us__section {
  scroll-margin-top: 0.8rem;
  margin-top: 0.96rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section {
    margin-top: 0.48rem;
    margin-bottom: 1.28rem;
  }
}
.contact-us-page .contact-us__section .con-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-us-page .contact-us__section .con-box .left-box {
  width: 4.96rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box {
    width: 100%;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box {
    margin-bottom: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box:last-child {
  margin-bottom: 0;
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .label {
  font-size: 0.16rem;
  color: #6E798F;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  position: relative;
  padding-left: 0.32rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding-left: 0.64rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.08rem;
  display: block;
  width: 0.06rem;
  height: 0.06rem;
  background: -webkit-linear-gradient(315deg, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(135deg, #00FFFF 0%, #0059FF 100%);
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .label::before {
    left: 0.16rem;
    width: 0.1rem;
    height: 0.1rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list {
  margin-top: 0.16rem;
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box {
  display: block;
  padding: 0.24rem;
  margin-bottom: 0.16rem;
  border: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box {
    padding: 0.32rem;
    border-width: 0.02rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list {
    margin-top: 0.32rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text {
    margin-bottom: 0.16rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text:last-child {
  margin-bottom: 0;
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text .text {
  margin-left: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text .text {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .left-box .item-box .card-list .card-box .icon-text-list .icon-text .text .b {
  font-family: var(--sk-font-SemiBold);
}
.contact-us-page .contact-us__section .con-box .right-box {
  width: 7.52rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box {
    width: 100%;
    margin-top: 0.96rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .h2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .top-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .top-text {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box {
    margin-top: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item {
    margin-top: 0.32rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item:first-child {
  margin-top: 0;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input {
  padding: 0.32rem 0.16rem 0.08rem;
  width: 100%;
  font-size: 0.14rem;
  line-height: 0.24rem;
  background: #F7F8FA;
  border-bottom: 0.01rem solid #252A35;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input {
    padding: 0.48rem 0.32rem 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    border-width: 0.02rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input.textarea {
  padding-bottom: 0.32rem;
  min-height: 1.28rem;
  height: auto;
  resize: none;
  overflow-y: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input.textarea {
    min-height: 2.24rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-moz-placeholder) {
  border: 0.01rem solid #252A35;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-ms-input-placeholder) {
  border: 0.01rem solid #252A35;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:focus, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:placeholder-shown), .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:valid, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input.has-value {
  border: 0.01rem solid #252A35;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-moz-placeholder) {
    border-width: 0.02rem;
  }
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-ms-input-placeholder) {
    border-width: 0.02rem;
  }
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:focus, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:placeholder-shown), .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:valid, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input.has-value {
    border-width: 0.02rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-moz-placeholder) + .label {
  top: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-ms-input-placeholder) + .label {
  top: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:focus + .label, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:placeholder-shown) + .label, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:valid + .label, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input.has-value + .label {
  top: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-moz-placeholder) + .label {
    top: 0;
    font-size: 0.2rem;
    line-height: 0.48rem;
  }
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:-ms-input-placeholder) + .label {
    top: 0;
    font-size: 0.2rem;
    line-height: 0.48rem;
  }
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:focus + .label, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:not(:placeholder-shown) + .label, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input:valid + .label, .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .input.has-value + .label {
    top: 0;
    font-size: 0.2rem;
    line-height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .label {
  position: absolute;
  top: 0.2rem;
  left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .label {
    top: 0.32rem;
    left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .input-box .label .required {
  color: #D90000;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .code-img {
  cursor: pointer;
  display: block;
  width: 1.6rem;
  height: 0.64rem;
  object-fit: fill;
  margin-left: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .code-img {
    width: 1.76rem;
    height: 1.12rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .refresh-btn {
  cursor: pointer;
  margin-left: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.64rem;
  height: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .refresh-btn {
    width: 1.12rem;
    height: 1.12rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .refresh-btn .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .form-item .refresh-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text {
    margin-top: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox .icon {
  height: 100%;
  width: 100%;
  display: block;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox .icon.true {
  display: none;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox.on .icon.false {
  display: none;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox.on .icon.true {
  display: block;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox-text {
  margin-left: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox-text {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox-text .required {
  color: #D90000;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox-text a {
  font-size: 0.14rem;
  line-height: 0.24rem;
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .__checkbox-label-text .__checkbox-text a {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .btn {
  margin-top: 0.64rem;
}
.contact-us-page .contact-us__section .con-box .right-box .form-box .btn .a {
  min-width: 2.28rem;
}
@media screen and (max-width: 800px) {
  .contact-us-page .contact-us__section .con-box .right-box .form-box .btn .a {
    width: 100%;
  }
}

.___select-layer {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 0;
  bottom: -0.06rem;
  left: 0;
  box-shadow: 0px 0px 0.2rem 0px rgba(218, 218, 218, 0.4);
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
}
.___select-layer .-inner {
  background-color: white;
  padding: 0.16rem 0.04rem 0.1rem 0.16rem;
}
.___select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Medium);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.___select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.___select-layer .-inner dl dd:hover {
  color: #000;
}
@media screen and (max-width: 800px) {
  .___select-layer .-inner {
    border-radius: 0.08rem;
    padding: 0.24rem 0.2rem 0.3rem 0.24rem;
  }
  .___select-layer .-inner dl dd {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}

.privacy-policy-page {
  background: #F7F8FA;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page {
    background: #FFFFFF;
  }
}
.privacy-policy-page .main_wrapper {
  width: 10.08rem;
  margin: 0.32rem auto 1.2rem;
  padding: 0.64rem 1.28rem 0.96rem;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main_wrapper {
    width: 100%;
    margin: 0;
    padding: 0.48rem 0.3rem 1.28rem 0.32rem;
  }
}
.privacy-policy-page .main_wrapper .h1 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main_wrapper .h1 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 2px;
  }
}
.privacy-policy-page .main_wrapper .main_content {
  margin-top: 0.64rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main_wrapper .main_content {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}

.error-page {
  width: 100%;
  height: 100%;
}
.error-page .bg-img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.error-page .main-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 14%;
}
@media screen and (max-width: 800px) {
  .error-page .main-box {
    padding-bottom: 30%;
  }
}
.error-page .main-box .four-zero-four {
  height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .error-page .main-box .four-zero-four {
    height: 0.96rem;
  }
}
.error-page .main-box .text {
  color: #FFFFFF;
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  width: 10.08rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .error-page .main-box .text {
    margin-top: 0.48rem;
    width: 6.24rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.error-page .main-box .btn {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .error-page .main-box .btn {
    margin-top: 0.96rem;
  }
}

.join-us-page .join-us__section {
  margin-top: 0.64rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section {
    margin-top: 0.48rem;
    margin-bottom: 1.28rem;
  }
}
.join-us-page .join-us__section .con-box .search-box {
  margin: 0 auto;
  width: 7.52rem;
  height: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .search-box {
    width: 100%;
    height: 0.96rem;
  }
}
.join-us-page .join-us__section .con-box .search-box .input {
  height: 100%;
  width: 100%;
  border: 0.01rem solid #BEC6D9;
  padding: 0.12rem 0.16rem;
  padding-right: 0.48rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .search-box .input {
    border-width: 0.02rem;
    padding: 0.24rem 0.32rem;
    padding-right: 0.96rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .search-box .icon-box {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .search-box .icon-box {
    right: 0.32rem;
    height: 0.48rem;
    width: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .search-box .icon-box .icon {
  width: 100%;
  height: 100%;
}
.join-us-page .join-us__section .con-box .search-box .icon-box .icon path,
.join-us-page .join-us__section .con-box .search-box .icon-box .icon circle {
  stroke: #252A35;
}
.join-us-page .join-us__section .con-box .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .join-us-page .join-us__section .con-box .flex-box .filter-cell {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0.32rem;
    border-bottom: 0.02rem solid #E6E6E6;
  }
  .join-us-page .join-us__section .con-box .flex-box .filter-cell .filter-left-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .join-us-page .join-us__section .con-box .flex-box .filter-cell .filter-left-box .icon {
    height: 0.48rem;
    width: 0.48rem;
  }
  .join-us-page .join-us__section .con-box .flex-box .filter-cell .filter-left-box .filter-text {
    margin-left: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-SemiBold);
  }
  .join-us-page .join-us__section .con-box .flex-box .filter-cell .filter-right-box .icon {
    height: 0.48rem;
    width: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box {
  width: 3.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-right: 0.64rem;
  border-right: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper.show {
    opacity: 1;
    visibility: visible;
  }
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper.show .filter_con {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    height: 100%;
    width: 5.76rem;
    top: 0;
    left: 0;
    background-color: #fff;
    padding-top: 0.88rem;
    padding-left: 0.32rem;
    padding-right: 0.32rem;
  }
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .close-btn {
    position: absolute;
    bottom: 0.56rem;
    right: 0.32rem;
    width: 0.8rem;
    height: 0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 0.01rem solid #252A35;
  }
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .close-btn .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_head {
    padding-bottom: 0.32rem;
    border-width: 0.02rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_head .filter_name {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_head .filter_name {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_head .clear-btn {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #6E798F;
  cursor: pointer;
  padding-left: 0.05rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_head .clear-btn {
    padding-left: 0.1rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item {
    margin-top: 0.96rem;
  }
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item:first-child {
    margin-top: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .item-title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .item-title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item {
    margin-top: 0.32rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .__checkbox {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .__checkbox {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .__checkbox .icon {
  height: 100%;
  width: 100%;
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .__checkbox .icon.false {
  display: block;
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .__checkbox .icon.true {
  display: none;
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .__checkbox.on .false {
  display: none;
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .__checkbox.on .true {
  display: block;
}
.join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .check-text {
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .left-box .filter_wrapper .filter_con .filter_body .filter_item .check-list .check-item .check-text {
    margin-left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.64rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box {
    padding-left: 0;
    margin-top: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box .find-title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box .find-title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box .content-box {
  margin-top: 0.32rem;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box .content-box {
    margin-top: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item {
  margin-bottom: 0.64rem;
  display: block;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item {
    margin-bottom: 0.96rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .tag {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .tag {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .content-text {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #6E798F;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .content-text {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .content-text ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.4em;
     -moz-padding-start: 1.4em;
          padding-inline-start: 1.4em;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
}
.join-us-page .join-us__section .con-box .flex-box .right-box .content-box .jonin-item .content-text ul li {
  list-style-type: decimal;
}
.join-us-page .join-us__section .con-box .flex-box .right-box .pagination_box {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .join-us-page .join-us__section .con-box .flex-box .right-box .pagination_box {
    margin-top: 0.48rem;
    display: block;
  }
}

.job-details-page .job-details__section {
  background: #F7F8FA;
  padding-top: 0.32rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.job-details-page .job-details__section .con-box {
  background: #FFFFFF;
  width: 12.64rem;
  margin: 0 auto;
  padding: 0.64rem 1.28rem 0.96rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box {
    width: 100%;
    padding: 0.48rem 0.3rem 1.28rem 0.32rem;
  }
}
.job-details-page .job-details__section .con-box .h1 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .h1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.job-details-page .job-details__section .con-box .infor-box {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .infor-box {
    padding-bottom: 0.48rem;
    border-width: 0.02rem;
  }
}
.job-details-page .job-details__section .con-box .infor-box .item {
  margin-top: 0.16rem;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .infor-box .item {
    width: 100%;
  }
}
.job-details-page .job-details__section .con-box .infor-box .item .key {
  width: 1.28rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .infor-box .item .key {
    width: 2.08rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.job-details-page .job-details__section .con-box .infor-box .item .value {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .infor-box .item .value {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.job-details-page .job-details__section .con-box .detail-box {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .detail-box {
    margin-top: 0.48rem;
  }
}
.job-details-page .job-details__section .con-box .detail-box .job-item {
  margin-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .detail-box .job-item {
    margin-bottom: 0.96rem;
  }
}
.job-details-page .job-details__section .con-box .detail-box .job-item .h2 {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .detail-box .job-item .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.job-details-page .job-details__section .con-box .detail-box .job-item .content {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .detail-box .job-item .content {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.job-details-page .job-details__section .con-box .detail-box .job-item .content ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.4em;
     -moz-padding-start: 1.4em;
          padding-inline-start: 1.4em;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
}
.job-details-page .job-details__section .con-box .detail-box .job-item .content ul li {
  list-style-type: decimal;
  margin-bottom: 0.06rem;
}
.job-details-page .job-details__section .con-box .detail-box .btn .a {
  min-width: 2.4rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .detail-box .btn .a {
    width: 100%;
  }
}
.job-details-page .job-details__section .con-box .detail-box .email {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .job-details__section .con-box .detail-box .email {
    font-size: 0.24rem;
    line-height: 0.48rem;
    text-align: center;
  }
}

.search-page .banner-section {
  height: 2.8rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-page .banner-section {
    height: 3.52rem;
  }
}
.search-page .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.search-page .banner-section .con-box {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .search-page .banner-section .con-box {
    padding-bottom: 0;
  }
}
.search-page .banner-section .con-box .h1 {
  color: #FFFFFF;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .search-page .banner-section .con-box .h1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
    text-align: left;
  }
}
.search-page .search-results-section {
  padding-top: 0.64rem;
  padding-bottom: 1.2rem;
  min-height: 6.08rem;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section {
    padding-top: 0.48rem;
    padding-bottom: 1.28rem;
    min-height: 10.72rem;
  }
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box {
    overflow: hidden;
  }
}
.search-page .search-results-section .con-box .search-box {
  margin: 0 auto;
  width: 7.52rem;
  height: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .search-box {
    width: 100%;
    height: 0.96rem;
  }
}
.search-page .search-results-section .con-box .search-box .input {
  height: 100%;
  width: 100%;
  border: 0.01rem solid #BEC6D9;
  padding: 0.12rem 0.16rem;
  padding-right: 0.48rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .search-box .input {
    border-width: 0.02rem;
    padding: 0.24rem 0.32rem;
    padding-right: 0.96rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.search-page .search-results-section .con-box .search-box .icon-box {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .search-box .icon-box {
    right: 0.32rem;
    height: 0.48rem;
    width: 0.48rem;
  }
}
.search-page .search-results-section .con-box .search-box .icon-box .icon {
  width: 100%;
  height: 100%;
}
.search-page .search-results-section .con-box .search-box .icon-box .icon path,
.search-page .search-results-section .con-box .search-box .icon-box .icon circle {
  stroke: #252A35;
}
.search-page .search-results-section .con-box .please-keywords {
  margin-top: 0.96rem;
  text-align: center;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .please-keywords {
    margin-top: 1.92rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
    padding: 0 0.3rem;
  }
}
.search-page .search-results-section .con-box .please-keywords.show {
  opacity: 1;
  visibility: visible;
}
.search-page .search-results-section .con-box .flex-box {
  margin-top: 0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  height: 0;
  display: none;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.search-page .search-results-section .con-box .flex-box.show {
  opacity: 1;
  height: auto;
  visibility: visible;
  display: block;
}
.search-page .search-results-section .con-box .flex-box .left-box {
  width: 3.2rem;
  padding-right: 0.8rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .left-box {
    width: 100vw;
    margin-left: -0.32rem;
    margin-right: -0.3s;
    padding-left: 0.32rem;
    padding-right: 0.32rem;
    overflow-x: auto;
  }
}
.search-page .search-results-section .con-box .flex-box .left-box .filter-box {
  position: -webkit-sticky;
  position: sticky;
  top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .left-box .filter-box {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-bottom: 0.02rem solid #E6E6E6;
  }
}
.search-page .search-results-section .con-box .flex-box .left-box .filter-box .cell-box {
  cursor: pointer;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .left-box .filter-box .cell-box {
    padding: 0.08rem 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    margin-bottom: 0.48rem;
  }
}
.search-page .search-results-section .con-box .flex-box .left-box .filter-box .cell-box.on {
  color: #fff;
  background: #252A35;
}
.search-page .search-results-section .con-box .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.64rem;
  border-left: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .right-box {
    padding-left: 0;
    border-left: none;
    padding-top: 0.48rem;
  }
}
.search-page .search-results-section .con-box .flex-box .right-box .results-title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .right-box .results-title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.search-page .search-results-section .con-box .flex-box .right-box .results-box {
  padding-bottom: 0.64rem;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .right-box .results-box {
    padding-bottom: 0.96rem;
    border-width: 0.02rem;
    margin-top: 0.48rem;
  }
}
.search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box {
  display: block;
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box {
    margin-top: 0.96rem;
  }
  .search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box:first-child {
    margin-top: 0;
  }
}
.search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-right: 1rem;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box .text {
    padding-right: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.search-page .search-results-section .con-box .flex-box .right-box .results-box .item-box .text .blue {
  color: #0059FF;
}
.search-page .search-results-section .con-box .flex-box .right-box .pagination-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .search-page .search-results-section .con-box .flex-box .right-box .pagination-box {
    display: block;
    margin-top: 0.48rem;
  }
}

.hjt-hub-page .hjt-hub__section {
  padding-top: 0.96rem;
  padding-bottom: 3.68rem;
}
@media screen and (max-width: 800px) {
  .hjt-hub-page .hjt-hub__section {
    padding-top: 0.32rem;
    padding-bottom: 1.28rem;
  }
}
.hjt-hub-page .hjt-hub__section .con-box .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hjt-hub-page .hjt-hub__section .con-box .card-list .card-box {
  width: calc(50% - 0.08rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #F7F8FA;
  padding: 0.16rem;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-hub-page .hjt-hub__section .con-box .card-list .card-box {
    width: 100%;
    padding: 0.32rem 0.32rem 0.64rem 0.16rem;
    margin-bottom: 0.16rem;
  }
}
.hjt-hub-page .hjt-hub__section .con-box .card-list .card-box .img-box {
  height: 2rem;
  width: 2.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .hjt-hub-page .hjt-hub__section .con-box .card-list .card-box .img-box {
    width: 1.6rem;
    height: 1.44rem;
  }
}
.hjt-hub-page .hjt-hub__section .con-box .card-list .card-box .img-box .img {
  width: 100%;
  height: 100%;
}
.hjt-hub-page .hjt-hub__section .con-box .card-list .card-box .card-text {
  padding: 0.16rem;
  margin-left: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-hub-page .hjt-hub__section .con-box .card-list .card-box .card-text {
    padding: 0;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.hjt-hub-page .hjt-hub__section .con-box .card-list .card-box .card-text .date {
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: #252A35;
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .hjt-hub-page .hjt-hub__section .con-box .card-list .card-box .card-text .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
    margin-bottom: 0.16rem;
  }
}
@media screen and (min-width: 800px) {
  .hjt-hub-page .hjt-hub__section .con-box .card-list .card-box:hover .img-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-webkit-keyframes slideUpIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1rem) scale(0.8);
            transform: translateX(1rem) scale(0.8);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(0.4rem) scale(0.9);
            transform: translateX(0.4rem) scale(0.9);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideUpIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1rem) scale(0.8);
            transform: translateX(1rem) scale(0.8);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(0.4rem) scale(0.9);
            transform: translateX(0.4rem) scale(0.9);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideUpOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  80% {
    opacity: 0;
    -webkit-transform: translateX(-0.8rem) scale(0.9);
            transform: translateX(-0.8rem) scale(0.9);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(-1rem) scale(0.8);
            transform: translateX(-1rem) scale(0.8);
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes slideUpOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  80% {
    opacity: 0;
    -webkit-transform: translateX(-0.8rem) scale(0.9);
            transform: translateX(-0.8rem) scale(0.9);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(-1rem) scale(0.8);
            transform: translateX(-1rem) scale(0.8);
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.hjt-g12-series-page .main .banner-section,
.hjt-solar-cell-page .main .banner-section {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .banner-section,
  .hjt-solar-cell-page .main .banner-section {
    height: calc(100vh - var(--totalH));
  }
}
.hjt-g12-series-page .main .banner-section .bg-img,
.hjt-solar-cell-page .main .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hjt-g12-series-page .main .banner-section .con-box,
.hjt-solar-cell-page .main .banner-section .con-box {
  position: relative;
  z-index: 5;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding-top: 1.36rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .banner-section .con-box,
  .hjt-solar-cell-page .main .banner-section .con-box {
    padding-top: 0.96rem;
  }
}
.hjt-g12-series-page .main .banner-section .con-box .h1,
.hjt-solar-cell-page .main .banner-section .con-box .h1 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .banner-section .con-box .h1,
  .hjt-solar-cell-page .main .banner-section .con-box .h1 {
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.hjt-g12-series-page .main .banner-section .con-box .bottom-box,
.hjt-solar-cell-page .main .banner-section .con-box .bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.52rem;
  padding-bottom: 0.32rem;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .banner-section .con-box .bottom-box,
  .hjt-solar-cell-page .main .banner-section .con-box .bottom-box {
    padding-bottom: 0.48rem;
    padding-top: 0.48rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.hjt-g12-series-page .main .banner-section .con-box .bottom-box .item-box,
.hjt-solar-cell-page .main .banner-section .con-box .bottom-box .item-box {
  width: 4.96rem;
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .banner-section .con-box .bottom-box .item-box,
  .hjt-solar-cell-page .main .banner-section .con-box .bottom-box .item-box {
    width: 3.2rem;
  }
}
.hjt-g12-series-page .main .banner-section .con-box .bottom-box .item-box:last-child,
.hjt-solar-cell-page .main .banner-section .con-box .bottom-box .item-box:last-child {
  margin-right: 0;
}
.hjt-g12-series-page .main .banner-section .con-box .bottom-box .item-box .value,
.hjt-solar-cell-page .main .banner-section .con-box .bottom-box .item-box .value {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .banner-section .con-box .bottom-box .item-box .value,
  .hjt-solar-cell-page .main .banner-section .con-box .bottom-box .item-box .value {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-g12-series-page .main .banner-section .con-box .bottom-box .item-box .label,
.hjt-solar-cell-page .main .banner-section .con-box .bottom-box .item-box .label {
  margin-top: 0.16rem;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .banner-section .con-box .bottom-box .item-box .label,
  .hjt-solar-cell-page .main .banner-section .con-box .bottom-box .item-box .label {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section,
.hjt-solar-cell-page .main .por-swiper-section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section,
  .hjt-solar-cell-page .main .por-swiper-section {
    margin-top: 0.64rem;
    margin-bottom: 0.96rem;
    overflow: hidden;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box,
.hjt-solar-cell-page .main .por-swiper-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box {
  width: 6.24rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box {
    width: 100%;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box.on,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box.on {
  -webkit-animation: slideUpIn 0.8s ease forwards;
          animation: slideUpIn 0.8s ease forwards;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box.hiding,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box.hiding {
  -webkit-animation: slideUpOut 0.8s ease forwards;
          animation: slideUpOut 0.8s ease forwards;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 {
  width: 1.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 {
    width: 0.96rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet {
  width: 1.12rem;
  height: 1.12rem;
  border: 0.01rem solid #E4E9F4;
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet {
    height: 0.96rem;
    width: 0.96rem;
    margin-bottom: 0.16rem;
    border-width: 0.02rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 0.01rem solid #000000;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-width: 0.02rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet .img,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-pagination1 .swiper-pagination-bullet .img {
  width: 100%;
  height: 100%;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box {
  width: 4.96rem;
  overflow: hidden;
  margin-left: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 0.32rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper {
  height: auto;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper .swiper-slide,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper .swiper-slide {
  height: 4.96rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper .swiper-slide,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper .swiper-slide {
    height: 5.6rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper .swiper-slide img,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .swiper-wrapper .swiper-slide img {
  height: 100%;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .num-pagination,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .num-pagination {
  text-align: center;
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .num-pagination,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .left-swiper-box .pro-swiper-box .swiper-box .num-pagination {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box {
  width: 7.52rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box {
    width: 100%;
    margin-top: 0.64rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .h2,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .h2,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .text,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .text,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .text {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list {
    margin-top: 0.48rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card {
  margin-top: 0.16rem;
  padding: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 0.08rem);
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card {
    width: 100%;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card::before,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #BEC6D9;
  padding: 0.01rem;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card::before,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card::before {
    padding: 0.02rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card.on::before,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card.on::before {
  background: -webkit-linear-gradient(left, #0059FF, #00FFFF);
  background: linear-gradient(90deg, #0059FF, #00FFFF);
  padding: 0.02rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card.on::before,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card.on::before {
    padding: 0.04rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .img,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .img {
  object-fit: contain;
  width: 0.72rem;
  height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .img,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .img {
    width: 1.12rem;
    height: 1.12rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .title,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .title {
  margin-left: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .title,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-card-list .pro-card .title {
    margin-left: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box {
  margin-top: 0.4rem;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box.on,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box.on {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box {
    margin-top: 0.64rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 0.01rem solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box {
    padding: 0.32rem 0;
    border-width: 0.02rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .key,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .key {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .key,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .key {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .value,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .value {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .value,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .cell-list .cell-box .value {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .btn,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .btn {
  margin-top: 0.64rem;
}
.hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .btn .a,
.hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .btn .a {
  min-width: 2.28rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .btn .a,
  .hjt-solar-cell-page .main .por-swiper-section .flex-box .right-box .pro-infor-box-list .pro-infor-box .btn .a {
    min-width: 4.56rem;
  }
}
.hjt-g12-series-page .main .other-product-section,
.hjt-solar-cell-page .main .other-product-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section,
  .hjt-solar-cell-page .main .other-product-section {
    margin-top: 0.96rem;
    margin-bottom: 0.96rem;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .h2,
.hjt-solar-cell-page .main .other-product-section .other-product-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .h2,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  --clip-width: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list {
    margin-top: 0.48rem;
    --clip-width: 0;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(50% - 0.08rem);
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding: 0.32rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)));
          clip-path: polygon(0 0, 100% 0, 100% 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)));
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.32rem;
    padding: 0.32rem 0.32rem 0 0.32rem;
  }
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box:last-child,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box:nth-child(2n),
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box:nth-child(2n) {
    margin-right: 0;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box::before,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box::before {
  content: "";
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top, #F7F8FA 0%, #E4E9F4 100%);
  background: linear-gradient(180deg, #F7F8FA 0%, #E4E9F4 100%);
}
@media screen and (min-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box:hover::before,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box:hover::before {
    opacity: 1;
  }
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box:hover .right-box .img,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box:hover .right-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box:hover .icon-box,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box:hover .icon-box {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box {
    width: 100%;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box .title,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box .title,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc ul,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc ul {
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-padding-start: 1.4em;
       -moz-padding-start: 1.4em;
            padding-inline-start: 1.4em;
    unicode-bidi: -webkit-isolate;
    unicode-bidi: -moz-isolate;
    unicode-bidi: isolate;
  }
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc ul li,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box .desc ul li {
    list-style-type: disc;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .right-box,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .right-box {
  z-index: 5;
  width: 3.04rem;
  height: 3.04rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .right-box,
  .hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .right-box {
    margin-top: 0.32rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .right-box .img,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .right-box .img {
  width: 100%;
  height: 100%;
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .icon-box,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .icon-box {
  position: absolute;
  z-index: 8;
  bottom: 0.32rem;
  left: 0.32rem;
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transform: translateY(0.6rem) scale(0.5);
      -ms-transform: translateY(0.6rem) scale(0.5);
          transform: translateY(0.6rem) scale(0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hjt-g12-series-page .main .other-product-section .other-product-box .card-list .card-box .icon-box .icon,
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .icon-box .icon {
  height: 100%;
  width: 100%;
}
.hjt-g12-series-page .main .case-studies-section,
.hjt-solar-cell-page .main .case-studies-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section,
  .hjt-solar-cell-page .main .case-studies-section {
    margin-top: 0.96rem;
    margin-bottom: 1.28rem;
    overflow: hidden;
  }
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .h2,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .h2,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box {
  display: block;
  width: calc((100% - 0.32rem) / 3);
  margin-right: 0.16rem;
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box {
    width: 6.08rem;
    margin-top: 0;
    margin-right: 0;
    padding-right: 0.32rem;
  }
}
@media screen and (min-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box:nth-child(3n),
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box:nth-child(3n) {
    margin-right: 0;
  }
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box:hover .img-box .img,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box:hover .img-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box .img-box,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box .img-box {
  width: 100%;
  height: 2.8rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box .img-box,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box .img-box {
    height: 3.2rem;
  }
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box .img-box .img,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box .img-box .img {
  width: 100%;
  height: 100%;
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box .address,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box .address {
  margin-top: 0.32rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box .address,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box .address {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box .title,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box .title {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .card-list .card-box .title,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .card-list .card-box .title {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.hjt-g12-series-page .main .case-studies-section .case-studies-box .btn,
.hjt-solar-cell-page .main .case-studies-section .case-studies-box .btn {
  margin-top: 0.96rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hjt-g12-series-page .main .case-studies-section .case-studies-box .btn .a,
  .hjt-solar-cell-page .main .case-studies-section .case-studies-box .btn .a {
    min-width: 3.58rem;
  }
}

.hjt-solar-cell-page .main .banner-section .product-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7.52rem;
  height: 7.52rem;
}
@media screen and (max-width: 800px) {
  .hjt-solar-cell-page .main .banner-section .product-img {
    top: 53%;
    width: 6.24rem;
    height: 6.24rem;
  }
}
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box {
  padding: 0;
}
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .left-box {
  padding: 0.32rem 0.16rem 0.32rem 0.32rem;
}
.hjt-solar-cell-page .main .other-product-section .other-product-box .card-list .card-box .right-box {
  width: 3.68rem;
  height: 3.68rem;
}

.applications-page .fullPage-section {
  margin-top: 0.64rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .applications-page .fullPage-section {
    margin-bottom: 1.28rem;
  }
}
.applications-page .fullPage-section .fullPage-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .applications-page .fullPage-section .fullPage-content {
    margin-bottom: 1.28rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 800px) {
  .applications-page .fullPage-section .fullPage-content:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .applications-page .fullPage-section .fullPage-content:nth-child(2n) .content-box {
    padding-right: 0;
    padding-left: 0.64rem;
  }
}
.applications-page .fullPage-section .fullPage-content .content-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  padding-right: 0.64rem;
}
@media screen and (max-width: 800px) {
  .applications-page .fullPage-section .fullPage-content .content-box {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
.applications-page .fullPage-section .fullPage-content .content-box .top-box .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .applications-page .fullPage-section .fullPage-content .content-box .top-box .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
    margin-top: 0.32rem;
  }
}
.applications-page .fullPage-section .fullPage-content .content-box .top-box .text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
}
@media screen and (max-width: 800px) {
  .applications-page .fullPage-section .fullPage-content .content-box .top-box .text {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-bottom: 0.64rem;
  }
}
.applications-page .fullPage-section .fullPage-content .img-box {
  width: 10.08rem;
  height: 5.68rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .applications-page .fullPage-section .fullPage-content .img-box {
    width: 100%;
    height: 3.84rem;
  }
}
.applications-page .fullPage-section .fullPage-content .img-box .img {
  width: 100%;
  height: 100%;
}
.applications-page .related__news__section {
  margin-top: 1.2rem;
  margin-bottom: 0.56rem;
}
@media screen and (max-width: 800px) {
  .applications-page .related__news__section {
    margin-top: 1.28rem;
    margin-bottom: 1.28rem;
    overflow: hidden;
  }
  .applications-page .related__news__section .flex-box {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .applications-page .related__news__section .flex-box .card-box {
    width: 6.08rem;
    margin-top: 0;
    margin-right: 0;
    padding-right: 0.32rem;
  }
  .applications-page .related__news__section .btn {
    text-align: center;
  }
}

.utility-pv-page .utility-pv-section {
  margin-top: 0.96rem;
  margin-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .utility-pv-section {
    margin-top: 0.64rem;
    margin-bottom: 0.96rem;
  }
}
.utility-pv-page .utility-pv-section .utility-pv-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .utility-pv-section .utility-pv-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.utility-pv-page .utility-pv-section .utility-pv-content .h2 {
  width: 6.24rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .utility-pv-page .utility-pv-section .utility-pv-content .h2 {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.utility-pv-page .utility-pv-section .utility-pv-content .content-box {
  width: 7.52rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .utility-pv-section .utility-pv-content .content-box {
    width: 100%;
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.utility-pv-page .con_wrapper-section {
  height: 10rem;
  max-height: 100vh;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .con_wrapper-section {
    height: 100vh;
    position: relative;
  }
}
.utility-pv-page .con_wrapper-section .con-box {
  height: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .con_wrapper-section .con-box {
    padding: 0;
  }
}
.utility-pv-page .con_wrapper-section .con-box .img-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.utility-pv-page .con_wrapper-section .con-box .img-box .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.utility-pv-page .con_wrapper-section .con-box .img-box .img.on {
  opacity: 1;
  visibility: visible;
}
.utility-pv-page .con_wrapper-section .con-box .content-box {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.utility-pv-page .con_wrapper-section .con-box .content-box .content_wrapper {
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .con_wrapper-section .con-box .content-box .content_wrapper {
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.utility-pv-page .con_wrapper-section .con-box .content-box .content_wrapper .text-box .left-box {
  border-left: 0.01rem solid rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.utility-pv-page .con_wrapper-section .con-box .content-box .content_wrapper .text-box .left-box .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  padding-left: 0.32rem;
  border-left: 0.02rem solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-0.01rem);
      -ms-transform: translateX(-0.01rem);
          transform: translateX(-0.01rem);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .con_wrapper-section .con-box .content-box .content_wrapper .text-box .left-box .title {
    padding-left: 0.3rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
    letter-spacing: 0.01rem;
    border-left: 0.04rem solid transparent;
    -webkit-transform: translateX(-0.02rem);
        -ms-transform: translateX(-0.02rem);
            transform: translateX(-0.02rem);
  }
}
.utility-pv-page .con_wrapper-section .con-box .content-box .content_wrapper .text-box .left-box .title.on {
  color: #FFFFFF;
  border-left: 0.02rem solid #fff;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .con_wrapper-section .con-box .content-box .content_wrapper .text-box .left-box .title.on {
    border-left: 0.04rem solid #fff;
  }
}
.utility-pv-page .products-section {
  margin-top: 0.96rem;
  margin-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section {
    margin-top: 0.64rem;
    margin-bottom: 0.96rem;
  }
}
.utility-pv-page .products-section .products-content .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.utility-pv-page .products-section .products-content .card-list {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --clip-width: 0.16rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.16rem;
    --clip-width: 0;
  }
}
.utility-pv-page .products-section .products-content .card-list .card-box {
  width: calc(50% - 0.08rem);
  height: 3.68rem;
  margin-top: 0.32rem;
  margin-right: 0.16rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, 0 100%);
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .card-list .card-box {
    width: 100%;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.utility-pv-page .products-section .products-content .card-list .card-box:nth-child(2n) {
  margin-right: 0;
}
.utility-pv-page .products-section .products-content .card-list .card-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(top, #F7F8FA 0%, #E4E9F4 100%);
  background: linear-gradient(180deg, #F7F8FA 0%, #E4E9F4 100%);
}
.utility-pv-page .products-section .products-content .card-list .card-box .left-box {
  padding: 0.32rem 0.16rem 0.32rem 0.32rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .card-list .card-box .left-box {
    padding: 0.32rem;
  }
}
.utility-pv-page .products-section .products-content .card-list .card-box .left-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .card-list .card-box .left-box .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.utility-pv-page .products-section .products-content .card-list .card-box .left-box .desc {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .card-list .card-box .left-box .desc {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.utility-pv-page .products-section .products-content .card-list .card-box .left-box .desc ul {
  display: block;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.4em;
     -moz-padding-start: 1.4em;
          padding-inline-start: 1.4em;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
}
.utility-pv-page .products-section .products-content .card-list .card-box .left-box .desc ul li {
  list-style-type: disc;
}
.utility-pv-page .products-section .products-content .card-list .card-box .img-box {
  width: 3.68rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .card-list .card-box .img-box {
    width: 3.2rem;
    margin: 0 auto;
  }
}
.utility-pv-page .products-section .products-content .card-list .card-box .img-box .img {
  width: 3.68rem;
  height: 3.68rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .products-section .products-content .card-list .card-box .img-box .img {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.utility-pv-page .related__news__section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .related__news__section {
    overflow: hidden;
    margin-bottom: 1.28rem;
  }
  .utility-pv-page .related__news__section .card-swiper .flex-box {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .utility-pv-page .related__news__section .card-swiper .flex-box .card-box {
    width: 6.08rem;
    margin-top: 0;
    margin-right: 0;
    padding-right: 0.32rem;
  }
}
.utility-pv-page .related__news__section .btn {
  text-align: center;
}
.utility-pv-page .other-applications-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .other-applications-section {
    margin-top: 1.28rem;
    margin-bottom: 1.28rem;
  }
}
.utility-pv-page .other-applications-section .other-applications-content .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .utility-pv-page .other-applications-section .other-applications-content .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .other-applications-section .other-applications-content .flex-box {
    margin-top: 0.16rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box {
  margin-top: 0.32rem;
  width: calc((100% - 0.32rem) / 3);
  height: 2.8rem;
  position: relative;
  margin-right: 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box {
    width: 100%;
    height: 3.84rem;
    margin-right: 0;
  }
}
@media screen and (min-width: 800px) {
  .utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box:hover .bg-img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box:nth-child(3n) {
  margin-right: 0;
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .con-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .con-wrapper .con-box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.16rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .con-wrapper .con-box {
    padding: 0.32rem;
  }
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .con-wrapper .con-box .title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-SemiBold);
  color: #fff;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .con-wrapper .con-box .title {
    font-size: 0.28rem;
    line-height: 0.48rem;
    letter-spacing: 0;
  }
}
.utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .con-wrapper .con-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .utility-pv-page .other-applications-section .other-applications-content .flex-box .card-box .con-wrapper .con-box .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}

.research-development-page .infor-section {
  margin-top: 0.96rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section {
    margin-top: 0.48rem;
    margin-bottom: 1.28rem;
  }
}
.research-development-page .infor-section .infor-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .infor-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.research-development-page .infor-section .infor-box .h2 {
  width: 6.24rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .infor-box .h2 {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.research-development-page .infor-section .infor-box .text {
  width: 7.52rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .infor-box .text {
    margin-top: 0.32rem;
    width: 100%;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.research-development-page .infor-section .img-card-box {
  margin-top: 0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box {
    padding: 0;
  }
}
.research-development-page .infor-section .img-card-box .right-box {
  width: 100%;
  height: 10rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0.64rem 1.36rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box {
    height: auto;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.research-development-page .infor-section .img-card-box .right-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .bg-img {
    position: relative;
    width: 100%;
    max-width: none;
    height: 4.96rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #FFFFFF;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list {
    width: 100%;
    color: #252A35;
    margin-top: -0.16rem;
    padding: 0 0.3rem 0 0.32rem;
  }
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li {
  margin-top: 0.4rem;
  width: calc((100% - 0.8rem) / 6);
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li {
    margin-top: 0.64rem;
    width: calc(50% - 0.08rem);
  }
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li:nth-child(2n) {
    margin-right: 0;
  }
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li:last-child {
  margin-right: 0;
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .num-box .num {
  font-size: 0.64rem;
  line-height: 0.72rem;
  display: inline-block;
  margin-right: 0.06rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .num-box .num {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .num-box .sub {
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .num-box .sub {
    font-size: 0.28rem;
  }
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .label {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .label.font-r {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .label.font-r {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .year {
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .infor-section .img-card-box .right-box .img-card-con .data-list .data-li .year {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.research-development-page .achievements-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.research-development-page .achievements-section .img-bg {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.research-development-page .achievements-section .achievements-box {
  padding-top: 0.96rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box {
    padding-bottom: 1.76rem;
  }
}
.research-development-page .achievements-section .achievements-box .top-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .top-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.research-development-page .achievements-section .achievements-box .top-box .h2 {
  width: 6.24rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .top-box .h2 {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.research-development-page .achievements-section .achievements-box .top-box .text {
  width: 7.52rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .top-box .text {
    width: 100%;
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.6rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.64rem;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .left-data {
  width: 3.84rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .left-data {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li {
    margin-top: 0;
    width: calc(50% - 0.08rem);
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li:first-child {
  margin-top: 0;
}
.research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li .num-box .num {
  font-size: 0.64rem;
  line-height: 0.72rem;
  display: inline-block;
  margin-right: 0.06rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li .num-box .num {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li .num-box .sub {
  font-size: 0.16rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li .num-box .sub {
    font-size: 0.28rem;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li .label {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .left-data .data-li .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .right-box {
    margin-top: 1.28rem;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .swiper-btn-box {
  position: absolute;
  right: 0;
  top: -0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .right-box .swiper-btn-box {
    top: auto;
    bottom: -1.44rem;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .swiper-btn-box .swiper-btn {
  cursor: pointer;
  width: 0.48rem;
  height: 0.48rem;
  margin-left: 0.16rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .right-box .swiper-btn-box .swiper-btn {
    width: 0.96rem;
    height: 0.96rem;
    margin-right: 0.32rem;
  }
  .research-development-page .achievements-section .achievements-box .flex-box .right-box .swiper-btn-box .swiper-btn:last-child {
    margin-right: 0;
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .swiper-btn-box .swiper-btn .icon {
  width: 100%;
  height: 100%;
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide {
  width: auto;
  padding-right: 0.16rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide.swiper-slide-active ~ .swiper-slide {
  opacity: 1;
  visibility: visible;
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  -webkit-transform: translateY(-0.16rem);
      -ms-transform: translateY(-0.16rem);
          transform: translateY(-0.16rem);
  -webkit-box-reflect: below 0 linear-gradient(transparent, rgba(0, 0, 0, 0.02));
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    -webkit-transform: translateY(-0.32rem);
        -ms-transform: translateY(-0.32rem);
            transform: translateY(-0.32rem);
  }
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide:last-child {
  padding-right: 0;
}
.research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide .img {
  width: 2.4rem;
  height: 3.28rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .research-development-page .achievements-section .achievements-box .flex-box .right-box .achievements-swiper .swiper-wrapper .swiper-slide .img {
    width: 1.76rem;
    height: 2.4rem;
  }
}
.research-development-page .authoritative-section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section {
    margin-bottom: 0.96rem;
  }
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box {
    overflow: hidden;
    padding-bottom: 2.88rem;
  }
}
.research-development-page .authoritative-section .authoritative-box .top-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .top-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.research-development-page .authoritative-section .authoritative-box .top-box .h2 {
  width: 6.24rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .top-box .h2 {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.research-development-page .authoritative-section .authoritative-box .top-box .text {
  width: 7.52rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .top-box .text {
    width: 100%;
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.research-development-page .authoritative-section .authoritative-box .swiper-certification {
  margin-top: 1.2rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .swiper-certification {
    margin-top: 0.64rem;
  }
}
.research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-btn-box {
  position: absolute;
  right: 0;
  top: -0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-btn-box {
    top: 0;
    bottom: -1.6rem;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-btn-box .swiper-btn {
  cursor: pointer;
  width: 0.48rem;
  height: 0.48rem;
  margin-left: 0.16rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-btn-box .swiper-btn {
    width: 0.96rem;
    height: 0.96rem;
    margin-right: 0.32rem;
    margin-left: 0;
  }
  .research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-btn-box .swiper-btn:last-child {
    margin-right: 0;
  }
}
.research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-btn-box .swiper-btn .icon {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-wrapper .swiper-slide {
    width: 4.16rem;
    padding-right: 0.16rem;
  }
}
.research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-wrapper .swiper-slide .card-box .img-box {
  height: 3.68rem;
  background: #F7F8FA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-wrapper .swiper-slide .card-box .img-box {
    height: 4rem;
  }
}
.research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-wrapper .swiper-slide .card-box .img-box .img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-wrapper .swiper-slide .card-box .title {
  margin-top: 0.32rem;
  padding: 0 0.2rem;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .authoritative-box .swiper-certification .swiper-wrapper .swiper-slide .card-box .title {
    margin-top: 0.16rem;
    padding: 0 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.research-development-page .authoritative-section .certification-box {
  margin-top: 1.2rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box {
    margin-top: 0;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card {
  position: -webkit-sticky;
  position: sticky;
  top: calc((100vh - 6.4rem) / 2);
  min-height: 6.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 2rem;
    height: auto;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .left-box {
  margin-right: 0.16rem;
  width: 6.32rem;
  background: #F7F8FA;
  position: relative;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .left-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.16rem;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .left-box .text-con {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.96rem 0.96rem 0.96rem 1.36rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .left-box .text-con {
    position: relative;
    grid-area: stack;
    width: 100%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 0.64rem 0.32rem;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .left-box .text-con.on {
  opacity: 1;
}
.research-development-page .authoritative-section .certification-box .flex-card .left-box .text-con .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .left-box .text-con .title {
    font-size: 0.4rem;
    line-height: 0.48rem;
    letter-spacing: 1px;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .left-box .text-con .text {
  margin-top: 0.48rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .left-box .text-con .text {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .right-box {
    height: 4.8rem;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination {
  position: absolute;
  z-index: 10;
  top: 0.16rem;
  right: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination .pagination-num {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination .pagination-num {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination .pagination-item {
  margin-top: 0.08rem;
  height: 0.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.01rem;
  background: rgba(255, 255, 255, 0.47);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination .pagination-item {
    margin-top: 0.16rem;
    width: 0.02rem;
    height: 1.92rem;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination .pagination-item .bullet {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0.02rem;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: translateX(-0.01rem);
      -ms-transform: translateX(-0.01rem);
          transform: translateX(-0.01rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination .pagination-item .bullet {
    width: 0.04rem;
  }
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .pagination .pagination-item .bullet.on {
  opacity: 1;
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .img-box.on {
  opacity: 1;
}
.research-development-page .authoritative-section .certification-box .flex-card .right-box .img-box .img {
  height: 100%;
  width: 100%;
}
.research-development-page .related__news__section {
  margin-top: 1.2rem;
  margin-bottom: 0.56rem;
}
@media screen and (max-width: 800px) {
  .research-development-page .related__news__section {
    margin-top: 0.96rem;
    margin-bottom: 0.32rem;
  }
}

.hjt-cell-section {
  margin-top: 0.96rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-section {
    margin-top: 0.64rem;
    margin-bottom: 0.96rem;
  }
}
.hjt-cell-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-cell-section .card-list {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --clip-width: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    --clip-width: 0;
  }
}
.hjt-cell-section .card-list .card-box {
  width: calc(50% - 0.08rem);
  margin-top: 0.32rem;
  padding: 0.32rem 0 0.32rem 0.32rem;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-width)), calc(100% - var(--clip-width)) 100%, var(--clip-width) 100%, 0 calc(100% - var(--clip-width)));
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box {
    width: 100%;
    margin-top: 0.16rem;
    padding: 0.48rem 0 2.24rem 0.32rem;
  }
}
.hjt-cell-section .card-list .card-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(top, #F7F8FA 0%, #E4E9F4 100%);
  background: linear-gradient(180deg, #F7F8FA 0%, #E4E9F4 100%);
}
.hjt-cell-section .card-list .card-box .code {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  position: relative;
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box .code {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hjt-cell-section .card-list .card-box .code::before {
  content: "";
  position: absolute;
  bottom: -0.16rem;
  left: 0;
  width: 0.32rem;
  height: 0.02rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box .code::before {
    height: 0.04rem;
    width: 0.64rem;
    bottom: -0.32rem;
  }
}
.hjt-cell-section .card-list .card-box .flex-box {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box .flex-box {
    margin-top: 0.96rem;
  }
}
.hjt-cell-section .card-list .card-box .flex-box .left-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hjt-cell-section .card-list .card-box .flex-box .left-box .data-list {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box .flex-box .left-box .data-list {
    margin-top: 0;
  }
}
.hjt-cell-section .card-list .card-box .flex-box .left-box .data-list .data-box {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box .flex-box .left-box .data-list .data-box {
    margin-top: 0.64rem;
    padding-right: 0.32rem;
  }
  .hjt-cell-section .card-list .card-box .flex-box .left-box .data-list .data-box:first-child {
    margin-top: 0;
  }
}
.hjt-cell-section .card-list .card-box .flex-box .left-box .data-list .data-box .value {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box .flex-box .left-box .data-list .data-box .value {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.hjt-cell-section .card-list .card-box .flex-box .left-box .data-list .data-box .label {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-section .card-list .card-box .flex-box .left-box .data-list .data-box .label {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.hjt-cell-section .card-list .card-box .flex-box .left-box .btn {
  position: absolute;
  bottom: 0.64rem;
  left: 0.32rem;
}
.hjt-cell-section .card-list .card-box .flex-box .right-box {
  width: 3.68rem;
  height: 3.68rem;
}
.hjt-cell-section .card-list .card-box .flex-box .right-box .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.hjt-cell-page .swiper___section {
  background: #000612;
  padding-top: 0.96rem;
  padding-bottom: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-page .swiper___section {
    padding-top: 0.64rem;
    padding-bottom: 1.28rem;
    margin-bottom: 0.64rem;
  }
}
.hjt-cell-page .swiper___section .top-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .hjt-cell-page .swiper___section .top-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hjt-cell-page .swiper___section .top-box .h2 {
  width: 6.5rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-cell-page .swiper___section .top-box .h2 {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-cell-page .swiper___section .top-box .txt {
  width: 7.52rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-page .swiper___section .top-box .txt {
    width: 100%;
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
@media screen and (max-width: 800px) {
  .hjt-cell-page .swiper___section .swiper_container {
    margin-top: 0.16rem;
  }
}
.hjt-cell-page .swiper___section .swiper_container .lower__flex-box {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: normal;
  -webkit-justify-content: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}
.hjt-cell-page .related__news__section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .hjt-cell-page .related__news__section {
    margin-top: 0.96rem;
    margin-bottom: 1.28rem;
  }
  .hjt-cell-page .related__news__section .card-swiper .flex-box {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .hjt-cell-page .related__news__section .card-swiper .flex-box .card-box {
    width: 6.08rem;
    margin-top: 0;
    margin-right: 0;
    padding-right: 0.32rem;
  }
}
.hjt-cell-page .related__news__section .btn {
  margin-top: 0.32rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hjt-cell-page .related__news__section .btn {
    margin-top: 0;
  }
}

.hry_card2 {
  position: relative;
  height: 6.4rem;
  width: 100%;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hry_card2 {
    margin-bottom: 0.16rem;
    width: 100%;
    height: 9.88rem;
    overflow: hidden;
  }
}
.hry_card2 .bg-img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.hry_card2 .txt-box {
  height: 100%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .hry_card2 .txt-box {
    padding-bottom: 0.48rem;
  }
}
.hry_card2 .txt-box .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry_card2 .txt-box .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hry_card2 .txt-box .subheading {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hry_card2 .txt-box .subheading {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    width: 101%;
  }
}
.hry_card2 .txt-box .label-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 49%;
  top: 1.95rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .hry_card2 .txt-box .label-box {
    top: 4.16rem;
    width: 96%;
  }
}
.hry_card2 .txt-box .label-box .label {
  width: 50%;
  text-align: center;
  color: #000000;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry_card2 .txt-box .label-box .label {
    font-size: 0.16rem;
    line-height: 0.32rem;
  }
}
.hry_card2 .txt-box .item-bottom .num {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-font-Num);
  -webkit-box-reflect: below -0.3rem linear-gradient(transparent, rgba(0, 0, 0, 0.04));
}
@media screen and (max-width: 800px) {
  .hry_card2 .txt-box .item-bottom .num {
    font-size: 0.96rem;
    line-height: 0.96rem;
  }
}
.hry_card2 .txt-box .item-bottom .num .sub {
  display: inline-block;
  margin-left: 0.08rem;
  font-size: 0.32rem;
  line-height: 0.64rem;
}
.hry_card2 .txt-box .item-bottom .infor-txt {
  text-align: center;
  margin-top: 0.4rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .hry_card2 .txt-box .item-bottom .infor-txt {
    margin-top: 0.8rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}

.hry_card3 {
  position: relative;
  height: 6.4rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .hry_card3 {
    width: 100%;
    height: 9.88rem;
    overflow: hidden;
  }
}
.hry_card3 .bg-img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.hry_card3 .txt-box {
  height: 100%;
  padding: 0.32rem;
  position: relative;
  z-index: 2;
}
.hry_card3 .txt-box .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hry_card3 .txt-box .subheading {
  text-align: center;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .subheading {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.hry_card3 .txt-box .label-box {
  position: absolute;
  right: 0.32rem;
  bottom: 0.32rem;
  width: 3.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hry_card3 .txt-box .label-box .label {
  width: 50%;
  text-align: center;
  color: #000000;
  font-size: 0.12rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
.hry_card3 .txt-box .data-box {
  margin-top: 0.92rem;
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .data-box {
    margin-top: 0.48rem;
  }
}
.hry_card3 .txt-box .data-box .item {
  position: absolute;
  top: 3.06rem;
  left: 0.48rem;
  width: 2.36rem;
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .data-box .item {
    width: 2.6rem;
    position: absolute;
    top: 4.56rem;
    left: 0.32rem;
    max-width: 2.32rem;
  }
}
.hry_card3 .txt-box .data-box .item:last-child {
  left: 8.08rem;
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .data-box .item:last-child {
    left: 0.32rem;
    top: auto;
    bottom: 1.16rem;
  }
}
.hry_card3 .txt-box .data-box .item .num {
  font-size: 0.64rem;
  line-height: 0.64rem;
  font-family: var(--sk-font-Num);
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .data-box .item .num {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.hry_card3 .txt-box .data-box .item .num .sub {
  display: inline-block;
  margin-left: 0.08rem;
  font-size: 0.32rem;
  line-height: 0.64rem;
}
.hry_card3 .txt-box .data-box .item .infor-txt {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .data-box .item .infor-txt {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.hry_card3 .txt-box .label-list .label {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  position: absolute;
  text-align: center;
  width: 3.36rem;
  left: 3.76rem;
  bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .label-list .label {
    left: auto;
    right: 37%;
    width: 2.34rem;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    bottom: 4.34rem;
  }
}
.hry_card3 .txt-box .label-list .label:nth-child(2) {
  left: auto;
  right: 0.54rem;
}
@media screen and (max-width: 800px) {
  .hry_card3 .txt-box .label-list .label:nth-child(2) {
    right: 37%;
    bottom: 1.4rem;
  }
}

.hry__card3___2 {
  position: relative;
  height: 6.4rem;
  width: 100%;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 {
    width: 100%;
    height: 6.88rem;
    margin-bottom: 0.16rem;
  }
}
.hry__card3___2 .bg-img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: fill;
}
.hry__card3___2 .content_wrapper {
  padding: 0.32rem;
  height: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper {
    padding-top: 0.24rem;
  }
}
.hry__card3___2 .content_wrapper .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .title {
    font-size: 0.32rem;
    line-height: 0.44rem;
  }
}
.hry__card3___2 .content_wrapper .subheading {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #6E798F;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .subheading {
    margin-top: 0.08rem;
    color: #a6b5d3;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.hry__card3___2 .content_wrapper .chart-tit1 {
  position: absolute;
  top: 2.04rem;
  left: 0;
  text-align: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #000000;
  font-family: var(--sk-font-SemiBold);
  width: 50%;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .chart-tit1 {
    width: 100%;
    top: 1.68rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
  }
}
.hry__card3___2 .content_wrapper .chart-tit2 {
  position: absolute;
  top: 2.04rem;
  right: 0;
  width: 50%;
  text-align: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #000000;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .chart-tit2 {
    width: 100%;
    top: 4.23rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
  }
}
.hry__card3___2 .content_wrapper .label-box {
  position: absolute;
  top: 3.46rem;
  right: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .label-box {
    top: 2.42rem;
    right: 0.5rem;
  }
}
.hry__card3___2 .content_wrapper .label-box.item1 {
  top: 4.84rem;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .label-box.item1 {
    top: 3.6rem;
  }
}
.hry__card3___2 .content_wrapper .label-box.item1 .value {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .label-box.item1 .value {
    font-size: 0.32rem;
    line-height: 0.32rem;
  }
}
.hry__card3___2 .content_wrapper .label-box.item2 {
  top: auto;
  bottom: 1.74rem;
  right: 1.88rem;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .label-box.item2 {
    bottom: 0.88rem;
    right: 1.68rem;
  }
}
.hry__card3___2 .content_wrapper .label-box.item2 .value {
  background: -webkit-linear-gradient(left, #BEC6D9 0%, #6E798F 100%);
  background: linear-gradient(90deg, #BEC6D9 0%, #6E798F 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.hry__card3___2 .content_wrapper .label-box.item3 {
  top: auto;
  bottom: 1.38rem;
  right: 0.54rem;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .label-box.item3 {
    bottom: 0.64rem;
    right: 0.32rem;
  }
}
.hry__card3___2 .content_wrapper .label-box.item3 .value {
  font-size: 0.24rem;
  line-height: 0.32rem;
  background: -webkit-linear-gradient(left, #BEC6D9 0%, #6E798F 100%);
  background: linear-gradient(90deg, #BEC6D9 0%, #6E798F 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
@media screen and (max-width: 800px) {
  .hry__card3___2 .content_wrapper .label-box.item3 .value {
    font-size: 0.32rem;
    line-height: 0.32rem;
  }
}
.hry__card3___2 .content_wrapper .label-box .value {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  background: -webkit-linear-gradient(left, #EEC4B2 0%, #745753 100%);
  background: linear-gradient(90deg, #EEC4B2 0%, #745753 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
}
.hry__card3___2 .content_wrapper .label-box .key {
  font-size: 0.12rem;
  line-height: 0.16rem;
  font-family: var(--sk-font-SemiBold);
  text-align: right;
}

.hry__card4 {
  position: relative;
  width: 100%;
  height: 6.4rem;
}
@media screen and (max-width: 800px) {
  .hry__card4 {
    width: 100%;
    height: 6.88rem;
  }
}
.hry__card4 .bg-img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.hry__card4 .content_wrapper {
  padding: 0.32rem;
  position: relative;
  z-index: 2;
}
.hry__card4 .content_wrapper .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hry__card4 .content_wrapper .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hry__card4 .content_wrapper .label-list {
  margin-top: 1.44rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .hry__card4 .content_wrapper .label-list {
    margin-top: 0.8rem;
  }
}
.hry__card4 .content_wrapper .label-list .label-box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 0.64rem;
}
.hry__card4 .content_wrapper .label-list .label-box:last-child {
  margin-bottom: 0;
}
.hry__card4 .content_wrapper .label-list .label-box:nth-child(1) {
  --width: 3.8rem;
}
@media screen and (max-width: 800px) {
  .hry__card4 .content_wrapper .label-list .label-box:nth-child(1) {
    --width: 3.2rem;
  }
}
.hry__card4 .content_wrapper .label-list .label-box:nth-child(2) {
  --width: 4.2rem;
}
.hry__card4 .content_wrapper .label-list .label-box:nth-child(3) {
  --width: 4.5rem;
}
.hry__card4 .content_wrapper .label-list .label-box .icon {
  height: 0.64rem;
  width: 0.64rem;
}
@media screen and (max-width: 800px) {
  .hry__card4 .content_wrapper .label-list .label-box .icon {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.hry__card4 .content_wrapper .label-list .label-box .txt {
  width: var(--width);
  margin-left: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  background: -webkit-linear-gradient(left, #EEC4B2 0%, #745753 100%);
  background: linear-gradient(90deg, #EEC4B2 0%, #745753 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .hry__card4 .content_wrapper .label-list .label-box .txt {
    font-size: 0.2rem;
    line-height: 0.32rem;
  }
}

.hjt-technology-page {
  background: #000612;
  color: #fff;
}
.hjt-technology-page .what-technology-section {
  padding-top: 0.96rem;
  padding-bottom: 0.8rem;
  background-color: black;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section {
    padding-top: 0.64rem;
    padding-bottom: 0.64rem;
    overflow: hidden;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.24rem;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .left-box {
  width: 4.96rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .left-box {
    width: 100%;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .left-box .h2 {
  margin-top: 0.24rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .left-box .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .left-box .text {
  margin-top: 0.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #FFFFFF;
  padding-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .left-box .text {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .left-box .tip {
  position: absolute;
  left: 0;
  bottom: 0.64rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .left-box .tip {
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    width: 6.4rem;
    text-align: center;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box {
  width: 7.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .right-box {
    width: 100%;
    margin-top: 0.96rem;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box .irt-img {
  width: 4.96rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  will-change: transform, opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .right-box .irt-img {
    width: 3.68rem;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-left: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper {
    padding-left: 0.64rem;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper .label-box {
  padding-top: 0.08rem;
  position: absolute;
  width: 100%;
  top: var(--top);
  text-align: right;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper .label-box {
    width: 2.56rem;
    padding-top: 0;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper .label-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.01rem;
  background-image: -webkit-linear-gradient(right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  background-image: linear-gradient(270deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  width: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper .label-box .text {
  opacity: 0;
  -webkit-transition: 0.3s 0.3s;
  transition: 0.3s 0.3s;
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper .label-box.on::before {
  width: 100%;
}
.hjt-technology-page .what-technology-section .what-technology-box .right-box .label_wrapper .label-box.on .text {
  opacity: 1;
}
.hjt-technology-page .blue-bg-wrapper {
  position: relative;
}
.hjt-technology-page .blue-bg-wrapper .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hjt-technology-page .blue-bg-wrapper .bg-box .bg-img {
  position: -webkit-sticky;
  position: sticky;
  top: calc((100vh - 7.52rem) / 2);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7.52rem;
  height: 7.52rem;
  border-radius: 50%;
  -webkit-filter: blur(300px);
          filter: blur(300px);
  background: #0059FF;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .bg-box .bg-img {
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    height: 100vh;
    width: 100vw;
    -webkit-filter: blur(200px);
            filter: blur(200px);
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper {
  position: relative;
  z-index: 5;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section {
  margin-top: 0.8rem;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section {
    margin-top: 0.64rem;
    margin-bottom: 1.12rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .h2 {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 {
  width: 2.4rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 {
    width: 100%;
    margin-right: 0;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .type {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .type {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-bottom: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.32rem 0.32rem 0.24rem;
  border: 0.01rem solid;
  border-bottom: none;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-border-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)) 1;
          border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)) 1;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body {
    padding: 0.48rem 0.48rem 0.54rem;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    position: relative;
    min-height: 2.24rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body .name {
  margin-top: 0.32rem;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body .name {
    margin-top: 0;
    font-size: 0.32rem;
    line-height: 0.48rem;
    letter-spacing: 0;
    padding-left: 1.92rem;
    text-align: left;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body .img {
  display: block;
  margin-top: 0.48rem;
  width: 1.68rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body .img {
    width: 1.6rem;
    position: absolute;
    left: 0.48rem;
    top: 0.48rem;
    margin-top: 0;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body .value {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_1 .card_body .value {
    margin-top: 0.16rem;
    padding-left: 1.92rem;
    text-align: left;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 {
    margin-top: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .type {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .type {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-bottom: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body {
  padding: 0.32rem 0.32rem 0.24rem;
  border: 0.01rem solid;
  border-bottom: none;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-border-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)) 1;
          border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)) 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body {
    padding: 0.16rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.32rem 0.4rem 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 2.88rem;
  width: 3.2rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box {
    width: 100%;
    padding: 0.48rem 0.4rem 0.48rem;
    display: block;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box.on::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(bottom, #0059FF, #00FFFF);
  background: linear-gradient(0deg, #0059FF, #00FFFF);
  padding: 0.01rem;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box.on::before {
    padding: 0.04rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .name {
  font-size: 0.2rem;
  line-height: 0.32rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-SemiBold);
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .name {
    text-align: left;
    padding-left: 2.24rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .img {
  display: block;
  height: 1.28rem;
  margin-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .img {
    position: absolute;
    top: 0.48rem;
    left: 0.48rem;
    width: 1.6rem;
    margin-top: 0;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .value {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .value {
    padding-left: 2.24rem;
    margin-top: 0.16rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .data-list {
  margin-top: 0.16rem;
  text-align: center;
  font-size: 0.12rem;
  line-height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .data-list {
    padding-left: 2.24rem;
    text-align: left;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .data-list .data-item::before {
  content: "⦁";
  display: inline-block;
  margin-right: 0.04rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .card-list .card-box .data-list .data-item::before {
    margin-right: 0.08rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .technologies {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .technologies .before {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 0.01rem;
  background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  margin-right: 5%;
  position: relative;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .technologies .before::before {
  content: "";
  top: -0.01rem;
  right: 0;
  position: absolute;
  height: 0.03rem;
  width: 0.03rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .technologies .after {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 0.01rem;
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  margin-left: 5%;
  position: relative;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .technologies .after::before {
  content: "";
  top: -0.01rem;
  left: 0;
  position: absolute;
  height: 0.03rem;
  width: 0.03rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .potential-technology-section .card_wrapper .row_box_4 .card_body .item_box .technologies .text {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .swiper___section {
    margin-top: 0.96rem;
    margin-bottom: 0.96rem;
    overflow: hidden;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .swiper___section.more-power-generation-section {
  margin-bottom: 0.96rem;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section {
  margin-top: 0.96rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section {
    margin-bottom: 0.96rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .bg-img {
    object-fit: fill;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card1 {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card1 {
    height: 8.96rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 {
  position: relative;
  height: 6.4rem;
  width: 100%;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 {
    margin-bottom: 0.16rem;
    width: 100%;
    height: 9.88rem;
    overflow: hidden;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box {
  height: 100%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box {
    padding-bottom: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .subheading {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .subheading {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    width: 101%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .label-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 49%;
  top: 1.95rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .label-box {
    top: 4.16rem;
    width: 96%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .label-box .label {
  width: 50%;
  text-align: center;
  color: #000000;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .label-box .label {
    font-size: 0.16rem;
    line-height: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .item-bottom .num {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-font-Num);
  -webkit-box-reflect: below -0.3rem linear-gradient(transparent, rgba(0, 0, 0, 0.04));
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .item-bottom .num {
    font-size: 0.96rem;
    line-height: 0.96rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .item-bottom .num .sub {
  display: inline-block;
  margin-left: 0.08rem;
  font-size: 0.32rem;
  line-height: 0.64rem;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .item-bottom .infor-txt {
  text-align: center;
  margin-top: 0.4rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card2 .txt-box .item-bottom .infor-txt {
    margin-top: 0.8rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 {
  position: relative;
  height: 6.4rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 {
    width: 100%;
    height: 9.88rem;
    overflow: hidden;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box {
  height: 100%;
  padding: 0.32rem;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .subheading {
  text-align: center;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .subheading {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .label-box {
  position: absolute;
  right: 0.32rem;
  bottom: 0.32rem;
  width: 3.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .label-box .label {
  width: 50%;
  text-align: center;
  color: #000000;
  font-size: 0.12rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box {
  margin-top: 0.92rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box {
    margin-top: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item {
  position: absolute;
  top: 3.06rem;
  left: 0.48rem;
  width: 2.36rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item {
    width: 2.6rem;
    position: absolute;
    top: 4.56rem;
    left: 0.32rem;
    max-width: 2.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item:last-child {
  left: 8.08rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item:last-child {
    left: 0.32rem;
    top: auto;
    bottom: 1.16rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item .num {
  font-size: 0.64rem;
  line-height: 0.64rem;
  font-family: var(--sk-font-Num);
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item .num {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item .num .sub {
  display: inline-block;
  margin-left: 0.08rem;
  font-size: 0.32rem;
  line-height: 0.64rem;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item .infor-txt {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .data-box .item .infor-txt {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .label-list .label {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  position: absolute;
  text-align: center;
  width: 3.36rem;
  left: 3.76rem;
  bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .label-list .label {
    left: auto;
    right: 37%;
    width: 2.34rem;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    bottom: 4.34rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .label-list .label:nth-child(2) {
  left: auto;
  right: 0.54rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .superior-section .flex-box .card3 .txt-box .label-list .label:nth-child(2) {
    right: 37%;
    bottom: 1.4rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section {
    margin-top: 0.96rem;
    margin-bottom: 0.8rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .flex-box {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .flex-box {
    margin-top: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .flex-box #card1 {
  width: 100%;
  position: relative;
  margin-bottom: 0.16rem;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .flex-box #card1 .bg-img {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .flex-box #card2 {
  width: 100%;
  height: 6.4rem;
  position: relative;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .flex-box #card2 {
    height: 6.88rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .higher-reliability-section .flex-box #card2 .bg-img {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .lower-carbon-footprint-section {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .lower-carbon-footprint-section {
    margin-top: 0.8rem;
    margin-bottom: 0.96rem;
    overflow: hidden;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .lower-carbon-footprint-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .lower-carbon-footprint-section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .lower-carbon-footprint-section .lower__flex-box {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .lower-carbon-footprint-section .lower__flex-box {
    margin-top: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .lower-carbon-footprint-section .lower__flex-box .lower__card1 {
  --slide-card-height: 6.4rem;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section {
  height: 200vh;
  position: relative;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box {
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box.snow-mountain {
  z-index: 10;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box .title-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box .title-box .h2 {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 0.96rem;
  bottom: 0;
  left: 2rem;
  color: #252A35;
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
  max-width: 15.2rem;
  width: 100%;
  margin: 0.96rem auto 0;
  margin-bottom: calc(100vh - 0.48rem - 0.48rem);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box .title-box .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
    top: 0.64rem;
    padding: 0 0.32rem;
    margin: 0.96rem auto 0;
    margin-bottom: calc(100vh - 0.64rem - 0.64rem);
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box .bg_img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: -1;
  left: 0;
  height: 100vh;
  width: 100%;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box .img-box {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: -1;
  left: 0;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .bg-box .img-box .snow-mountain-bg-img {
  width: 100%;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box {
  position: relative;
  margin-right: 0.16rem;
  width: 3.68rem;
  height: 5.6rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box {
    width: 3.36rem;
    height: 5.12rem;
    margin-right: 0;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box:hover .pro-img, .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box.hover .pro-img {
  -webkit-transform: translateY(-1.44rem);
      -ms-transform: translateY(-1.44rem);
          transform: translateY(-1.44rem);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box:hover .pro-img, .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box.hover .pro-img {
    -webkit-transform: translateY(-2.4rem);
        -ms-transform: translateY(-2.4rem);
            transform: translateY(-2.4rem);
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box:hover .con-card, .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box.hover .con-card {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  --clip-path: inset(0 0 0 0);
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .pro-img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  height: 100%;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-clip-path: var(--clip-path, inset(0 0 100% 0));
          clip-path: var(--clip-path, inset(0 0 100% 0));
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  height: 5.92rem;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.32rem 0.32rem 0.64rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card {
    height: 6.56rem;
    padding: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card .con-card-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card .title {
  font-size: 0.24rem;
  color: #252A35;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card .ul {
  font-size: 0.16rem;
  line-height: 0.24rem;
  display: block;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.4em;
     -moz-padding-start: 1.4em;
          padding-inline-start: 1.4em;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card .ul {
    margin-left: -0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card .ul li {
  list-style-type: disc;
  margin-bottom: 0.16rem;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper .card-box .con-card .ul li:last-child {
  margin-bottom: 0;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two {
    overflow: hidden;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box {
  position: absolute;
  top: 46%;
  left: 11%;
  width: 3.84rem;
  height: 1.6rem;
  border-top: 0.01rem dashed #252A35;
  border-left: 0.01rem dashed #252A35;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box {
    width: 2rem;
    height: 1.28rem;
    left: 5%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box:nth-child(2) {
  top: calc(46% - 1.12rem);
  left: calc(11% + 3.84rem);
  width: 3.84rem;
  height: 1.12rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box:nth-child(2) {
    top: calc(46% - 1.2rem);
    height: 1.2rem;
    width: 2.08rem;
    left: calc(5% + 2rem);
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box:nth-child(3) {
  top: calc(46% - 2.23rem);
  left: calc(11% + 7.68rem);
  width: 5.76rem;
  height: 1.11rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box:nth-child(3) {
    top: calc(46% - 2.46rem);
    left: calc(5% + 4.1rem);
    width: 2.7rem;
    height: 1.28rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box::before {
  content: "";
  position: absolute;
  top: -0.02rem;
  left: -0.02rem;
  height: 0.04rem;
  width: 0.04rem;
  background-color: #252A35;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box::after {
  content: "";
  position: absolute;
  top: -0.02rem;
  right: -0.02rem;
  height: 0.04rem;
  width: 0.04rem;
  background-color: #252A35;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box .cell-text {
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  width: calc(100% - 0.16rem);
  height: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.16rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  -webkit-transform: translateY(calc(-100% - 0.16rem));
      -ms-transform: translateY(calc(-100% - 0.16rem));
          transform: translateY(calc(-100% - 0.16rem));
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .phase-box .cell-text {
    width: calc(100% - 0.08rem);
    height: auto;
    padding: 0.08rem;
    -webkit-transform: translateY(calc(-100% - 0.08rem));
        -ms-transform: translateY(calc(-100% - 0.08rem));
            transform: translateY(calc(-100% - 0.08rem));
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box {
  position: absolute;
  width: 0;
  height: 0;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(1) {
  bottom: 0.8rem;
  left: 11%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(1) {
    bottom: 1.6rem;
    left: 4%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(2) {
  bottom: 1.4rem;
  left: 21%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(2) {
    bottom: 1.9rem;
    left: 17%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(3) {
  bottom: 2rem;
  left: 31%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(3) {
    bottom: 2.2rem;
    left: 30%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(4) {
  bottom: 2.6rem;
  left: 41%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(4) {
    bottom: 2.5rem;
    left: 43%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(5) {
  bottom: 3.26rem;
  left: 51.4%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(5) {
    bottom: 2.8rem;
    left: 59%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(6) {
  bottom: 3.76rem;
  left: 60%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(6) {
    bottom: 3.1rem;
    left: 72%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(7) {
  bottom: 4.44rem;
  left: 71%;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box:nth-child(7) {
    bottom: 3.5rem;
    left: 85%;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 0.16rem;
  border-left: 0.01rem solid #252A35;
  padding-bottom: 0.48rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box {
    padding-bottom: 0.96rem;
    padding-left: 0.14rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box::before {
  content: "";
  position: absolute;
  top: -0.03rem;
  left: -0.03rem;
  height: 0.05rem;
  width: 0.05rem;
  background-color: #252A35;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box .data-li {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box .data-li {
    margin-bottom: 0.8rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box .data-li:last-child {
  margin-bottom: 0;
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box .data-li .value {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  color: #252A35;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box .data-li .value {
    font-size: 0.22rem;
    line-height: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box .data-li .label {
  color: #252A35;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .data-box .data-li .label {
    width: 0.76rem;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .diamond {
  width: 0.64rem;
  height: 0.64rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .diamond {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .diamond .year {
  position: relative;
  z-index: 5;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .diamond .year {
    font-size: 0.12rem;
    line-height: 0.32rem;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .diamond .sub {
  position: absolute;
  bottom: 0.08rem;
  text-align: center;
  font-size: 0.14rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .diamond .sub {
    bottom: 0.02rem;
    line-height: 1;
  }
}
.hjt-technology-page .blue-bg-wrapper .con-wrapper .roadmap-section .con_wrapper_two .con_wrapper_two_text .oi-box-list .oi-box .diamond::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #252A35;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 0;
  left: 0;
}

.lower__card1 {
  width: 100%;
  height: 6.4rem;
  position: relative;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .lower__card1 {
    width: 100%;
    height: 6.88rem;
  }
}
.lower__card1 .bg-img {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.lower__card1 .content_wrapper {
  height: 100%;
  padding: 0.32rem;
}
.lower__card1 .content_wrapper .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card1 .content_wrapper .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.lower__card1 .content_wrapper .num {
  margin: 0.64rem auto 0;
  font-size: 0.64rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 0.72rem;
  font-family: var(--sk-font-SemiBold);
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .lower__card1 .content_wrapper .num {
    margin: 0.32rem auto 0;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.lower__card1 .content_wrapper .tag {
  margin-top: 0.16rem;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card1 .content_wrapper .tag {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}

.lower__card2 {
  width: 100%;
  height: 6.4rem;
  position: relative;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .lower__card2 {
    width: 100%;
    height: 6.88rem;
  }
}
.lower__card2 .bg-img {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.lower__card2 .content_wrapper {
  height: 100%;
  padding: 0.32rem;
}
.lower__card2 .content_wrapper .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.lower__card2 .content_wrapper .title_cede {
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.04rem;
  font-family: var(--sk-font-SemiBold);
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .title_cede {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.lower__card2 .content_wrapper .text {
  margin: 0.24rem auto 0;
  padding: 0 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  height: 0.96rem;
  text-align: center;
  max-width: 10.24rem;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .text {
    margin: 0.16rem 0 0;
    font-size: 0.24rem;
    line-height: 0.32rem;
    height: 1.28rem;
  }
}
.lower__card2 .content_wrapper .code {
  margin-top: 2.16rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.16rem auto 0;
  font-size: 0.64rem;
  line-height: 0.72rem;
  font-family: var(--sk-font-SemiBold);
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .code {
    margin-top: 1.6rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.lower__card2 .content_wrapper .model_wrapper .model-box {
  position: absolute;
  top: 2.64rem;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .model_wrapper .model-box {
    top: 3.36rem;
  }
}
.lower__card2 .content_wrapper .model_wrapper .model-box .key {
  color: #FFFFFF;
  font-size: 0.12rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .model_wrapper .model-box .key {
    font-size: 0.2rem;
    line-height: 0.32rem;
  }
}
.lower__card2 .content_wrapper .model_wrapper .model-box .value {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  color: #BEC6D9;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .model_wrapper .model-box .value {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.lower__card2 .content_wrapper .model_wrapper .model-box:first-child {
  left: 5.8rem;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .model_wrapper .model-box:first-child {
    left: 0.96rem;
  }
}
.lower__card2 .content_wrapper .model_wrapper .model-box:first-child .value {
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.lower__card2 .content_wrapper .model_wrapper .model-box:last-child {
  right: 5.8rem;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .model_wrapper .model-box:last-child {
    right: 0.96rem;
  }
}
.lower__card2 .content_wrapper .pro-list {
  margin-top: 1.96rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.16rem;
}
.lower__card2 .content_wrapper .pro-list.card2_lower__flex-box {
  margin-top: 1.36rem;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .pro-list.card2_lower__flex-box {
    margin-top: 2.1rem;
  }
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .pro-list {
    margin-top: 2.1rem;
  }
}
.lower__card2 .content_wrapper .pro-list .pro-box {
  width: 2.4rem;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .pro-list .pro-box {
    width: 1.28rem;
  }
}
.lower__card2 .content_wrapper .pro-list .pro-box .pro-img {
  width: 2.4rem;
  height: 1.6rem;
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .pro-list .pro-box .pro-img {
    width: 1.28rem;
    height: 1.28rem;
  }
}
.lower__card2 .content_wrapper .pro-list .pro-box .name {
  text-align: center;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card2 .content_wrapper .pro-list .pro-box .name {
    margin-top: 0.08rem;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}

.lower__card3 {
  width: 100%;
  height: 6.4rem;
  position: relative;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .lower__card3 {
    width: 100%;
    height: 6.88rem;
  }
}
.lower__card3 .bg-img {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.lower__card3 .content_wrapper {
  height: 100%;
  padding: 0.32rem;
}
.lower__card3 .content_wrapper .title {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card3 .content_wrapper .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.lower__card3 .content_wrapper .text {
  margin: 0.24rem auto 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
  max-width: 6.24rem;
}
@media screen and (max-width: 800px) {
  .lower__card3 .content_wrapper .text {
    margin: 0.16rem 0 0;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.lower__card3 .content_wrapper .temperature {
  position: absolute;
  left: 0.32rem;
  bottom: 0.32rem;
}
.lower__card3 .content_wrapper .temperature.item1 {
  left: auto;
  right: 0.32rem;
  text-align: right;
}
.lower__card3 .content_wrapper .temperature.item1 .value {
  background: -webkit-linear-gradient(left, #FFD900 0%, #FE0000 100%);
  background: linear-gradient(90deg, #FFD900 0%, #FE0000 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.lower__card3 .content_wrapper .temperature .value {
  font-size: 0.64rem;
  line-height: 0.72rem;
  font-family: var(--sk-font-SemiBold);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .lower__card3 .content_wrapper .temperature .value {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.lower__card3 .content_wrapper .temperature .label {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card3 .content_wrapper .temperature .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0;
  }
}

.lower__card4 {
  width: 100%;
  height: 6.4rem;
  position: relative;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .lower__card4 {
    width: 100%;
    height: 6.88rem;
  }
}
.lower__card4 .bg-img {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.lower__card4 .content_wrapper {
  height: 100%;
  padding: 0.32rem;
}
.lower__card4 .content_wrapper .title {
  margin: 0 auto;
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  width: 6.24rem;
}
@media screen and (max-width: 800px) {
  .lower__card4 .content_wrapper .title {
    margin: 0;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.lower__card4 .content_wrapper .sample-box {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.16rem;
}
@media screen and (max-width: 800px) {
  .lower__card4 .content_wrapper .sample-box {
    margin-top: 0.32rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lower__card4 .content_wrapper .sample-box .sample-item {
  width: 3.04rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .lower__card4 .content_wrapper .sample-box .sample-item {
    width: 100%;
  }
}
.lower__card4 .content_wrapper .sample-box .sample-item .pallet {
  width: 100%;
}
.lower__card4 .content_wrapper .sample-box .sample-item .con-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .lower__card4 .content_wrapper .sample-box .sample-item .con-box {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.lower__card4 .content_wrapper .sample-box .sample-item .con-box .sample-img {
  margin-top: 0.16rem;
  display: block;
  width: 1.04rem;
  height: 1.04rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .lower__card4 .content_wrapper .sample-box .sample-item .con-box .sample-img {
    margin: 0;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 0.32rem;
    left: 0.32rem;
  }
}
.lower__card4 .content_wrapper .sample-box .sample-item .con-box .tag {
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card4 .content_wrapper .sample-box .sample-item .con-box .tag {
    margin-top: 0.48rem;
    padding-left: 2.24rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    text-align: left;
  }
}
.lower__card4 .content_wrapper .sample-box .sample-item .con-box .data {
  margin-top: 0.08rem;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .lower__card4 .content_wrapper .sample-box .sample-item .con-box .data {
    margin-top: 0;
    padding-left: 2.24rem;
    text-align: left;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.lower__card4 .content_wrapper .ul {
  font-size: 0.16rem;
  line-height: 0.24rem;
  display: block;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.4em;
     -moz-padding-start: 1.4em;
          padding-inline-start: 1.4em;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
  margin: 0 auto;
  margin-top: 0.48rem;
  max-width: 8.8rem;
  width: 100%;
}
.lower__card4 .content_wrapper .ul li {
  list-style-type: disc;
  margin-bottom: 0.24rem;
}
.lower__card4 .content_wrapper .ul li:last-child {
  margin-bottom: 0;
}

.lower__flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}

@-webkit-keyframes floatLeftTop {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(-0.3rem, -0.3rem);
            transform: translate(-0.3rem, -0.3rem);
  }
}

@keyframes floatLeftTop {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(-0.3rem, -0.3rem);
            transform: translate(-0.3rem, -0.3rem);
  }
}
@-webkit-keyframes floatRightTop {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(0.2rem, -0.2rem);
            transform: translate(0.2rem, -0.2rem);
  }
}
@keyframes floatRightTop {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(0.2rem, -0.2rem);
            transform: translate(0.2rem, -0.2rem);
  }
}
@-webkit-keyframes floatLeftBottom {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(0.1rem, 0.1rem);
            transform: translate(0.1rem, 0.1rem);
  }
}
@keyframes floatLeftBottom {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(0.1rem, 0.1rem);
            transform: translate(0.1rem, 0.1rem);
  }
}
.card___wrapper {
  width: 100%;
  height: 6.4rem;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .card___wrapper {
    height: 6.88rem;
  }
  .card___wrapper.type_card1 {
    height: 9.88rem;
  }
}
.card___wrapper.slide-in {
  --transition-3-22: 0.3s 2.2s linear;
  --transition-3-16: 0.3s 1.6s linear;
  --transition-5-28: 0.5s 2.8s linear;
  --transition-5-10: 0.5s 1s linear;
  --transition-16: 1.6s linear;
  --transition-20: 2s linear;
  --transition-20-no: 2s;
  --transition-6-16: .4s 1.6s linear;
  --transition-3-20: 0.3s 2s linear;
  --transition-3-3: 0.3s 0.3s linear;
  --transition-3-8: 0.3s 0.8s linear;
  --transition-3-12: 0.3s 1.2s linear;
  --bar-width-1: 1.28rem;
  --bar-width-2: 2.08rem;
  --clip-path: inset(0 0 0 0);
  --clip-path-1: inset(0 100% 0 0);
  --clip-path-2: inset(0 0 0 100%);
  --opacity: 1;
  --opacity-1: 0;
  --translateY: 0;
}
@media screen and (max-width: 800px) {
  .card___wrapper.slide-in {
    --bar-width-1: 1rem;
  }
}
.card___wrapper .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: fill;
  will-change: transform, opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.card___wrapper .bg-img.black {
  background: black;
}
.card___wrapper .text_wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.card___wrapper .text_wrapper.style1 {
  padding: 0.32rem;
}
.card___wrapper .text_wrapper.style1 .title {
  display: inline-block;
  font-size: 0.96rem;
  line-height: 1.04rem;
  font-family: var(--sk-font-Num);
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style1 .title {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.card___wrapper .text_wrapper.style1 .text {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style1 .text {
    margin-top: 0.12rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style2 .title-box {
  height: 0;
  width: 0;
  position: absolute;
}
.card___wrapper .text_wrapper.style2 .title-box .title {
  top: 50%;
  left: 50%;
  position: absolute;
  font-size: 0.64rem;
  line-height: 0.72rem;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
  display: inline-block;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style2 .title-box .title {
    font-size: 0.4rem;
    line-height: 1.3;
  }
}
.card___wrapper .text_wrapper.style2 .title-box.left {
  top: 51%;
  left: 15.6%;
  -webkit-transform: rotate(297deg);
      -ms-transform: rotate(297deg);
          transform: rotate(297deg);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style2 .title-box.left {
    -webkit-transform: rotate(283deg);
        -ms-transform: rotate(283deg);
            transform: rotate(283deg);
    top: 40%;
    left: 14.6%;
  }
}
.card___wrapper .text_wrapper.style2 .title-box.left .title {
  background: -webkit-linear-gradient(left, #6E798F 0%, #BEC6D9 100%);
  background: linear-gradient(90deg, #6E798F 0%, #BEC6D9 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.card___wrapper .text_wrapper.style2 .title-box.right {
  top: 51%;
  right: 15.6%;
  -webkit-transform: rotate(-297deg);
      -ms-transform: rotate(-297deg);
          transform: rotate(-297deg);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style2 .title-box.right {
    -webkit-transform: rotate(-284deg);
        -ms-transform: rotate(-284deg);
            transform: rotate(-284deg);
    top: 40%;
    right: 14.6%;
  }
}
.card___wrapper .text_wrapper.style2 .title-box.right .title {
  background: -webkit-linear-gradient(right, #EEC4B2 0%, #745753 100%);
  background: linear-gradient(270deg, #EEC4B2 0%, #745753 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.card___wrapper .text_wrapper.style2 .item-top {
  position: absolute;
  left: 50%;
  top: 10%;
}
.card___wrapper .text_wrapper.style2 .item-top .value .img {
  height: 1.1rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style2 .item-top .value .img {
    height: 0.6rem;
  }
}
.card___wrapper .text_wrapper.style2 .item-top .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style2 .item-top .text {
    width: 2.75rem;
    font-size: 0.22rem;
    width: 2rem;
    line-height: 1.2;
  }
}
.card___wrapper .text_wrapper.style2 .item-bottom {
  position: absolute;
  top: 55.6%;
  left: 50%;
}
.card___wrapper .text_wrapper.style2 .item-bottom .value .img {
  height: 1.4rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style2 .item-bottom .value .img {
    height: 0.7rem;
  }
}
.card___wrapper .text_wrapper.style2 .item-bottom .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style2 .item-bottom .text {
    width: 3rem;
    font-size: 0.22rem;
    line-height: 1.2;
  }
}
.card___wrapper .text_wrapper.style3 {
  padding: 0.32rem;
}
.card___wrapper .text_wrapper.style3 .title {
  font-size: 0.96rem;
  line-height: 1.04rem;
  font-family: var(--sk-font-Num);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .title {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.card___wrapper .text_wrapper.style3 .text {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .text {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style3 .trend-chart {
  position: absolute;
  bottom: 0.44rem;
  right: 1.72rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .trend-chart {
    right: 1rem;
  }
}
.card___wrapper .text_wrapper.style3 .trend-chart .chart-bg-img {
  width: 6.28rem;
}
.card___wrapper .text_wrapper.style3 .trend-chart .trend-img-1 {
  position: absolute;
  width: 5.12rem;
  right: 0.12rem;
  bottom: 0.52rem;
  -webkit-transition: var(--transition-16, 0s linear);
  transition: var(--transition-16, 0s linear);
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
  visibility: visible;
}
.card___wrapper .text_wrapper.style3 .trend-chart .trend-img-2 {
  position: absolute;
  width: 5.12rem;
  right: 0.12rem;
  bottom: 0.52rem;
  -webkit-transition: var(--transition-16, 0s linear);
  transition: var(--transition-16, 0s linear);
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
  visibility: visible;
}
.card___wrapper .text_wrapper.style3 .trend-chart .tag {
  position: absolute;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .trend-chart .tag {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style3 .trend-chart .tag.txt1 {
  top: 0.08rem;
  left: 0.48rem;
}
.card___wrapper .text_wrapper.style3 .trend-chart .tag.txt2 {
  left: 1.06rem;
  bottom: -0.12rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .trend-chart .tag.txt2 {
    bottom: -0.24rem;
  }
}
.card___wrapper .text_wrapper.style3 .trend-chart .tag.txt3 {
  left: 3.61rem;
  bottom: -0.12rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .trend-chart .tag.txt3 {
    bottom: -0.24rem;
    left: 3.4rem;
  }
}
.card___wrapper .text_wrapper.style3 .trend-chart .tag.txt4 {
  right: 0.12rem;
  bottom: -0.12rem;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .trend-chart .tag.txt4 {
    bottom: -0.24rem;
  }
}
.card___wrapper .text_wrapper.style3 .trend-chart .label-box {
  position: absolute;
  width: 3.76rem;
  top: -0.24rem;
  right: -1.08rem;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style3 .trend-chart .label-box {
    right: -0.5rem;
    width: 3.12rem;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
.card___wrapper .text_wrapper.style3 .trend-chart .label-box .before {
  position: absolute;
  bottom: -0.16rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  -webkit-transition: var(--transition-6-16, 0s linear);
  transition: var(--transition-6-16, 0s linear);
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
  visibility: visible;
}
.card___wrapper .text_wrapper.style3 .trend-chart .label-box .before::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.02rem;
  left: 0.02rem;
  background-color: rgba(255, 255, 255, 0.6);
  top: 0.04rem;
}
.card___wrapper .text_wrapper.style3 .trend-chart .label-box .before::after {
  content: "";
  top: 0.03rem;
  left: 0;
  position: absolute;
  height: 0.04rem;
  width: 0.04rem;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.6);
}
.card___wrapper .text_wrapper.style3 .trend-chart .label-box .txt {
  -webkit-transition: var(--transition-3-20, 0s linear);
  transition: var(--transition-3-20, 0s linear);
  opacity: var(--opacity, 0);
  visibility: visible;
}
.card___wrapper .text_wrapper.style4 {
  padding: 0.32rem;
}
.card___wrapper .text_wrapper.style4 .title {
  font-size: 0.96rem;
  line-height: 1.04rem;
  font-family: var(--sk-font-Num);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .title {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.card___wrapper .text_wrapper.style4 .text {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .text {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style4 .left-bottom {
  position: absolute;
  bottom: 0.32rem;
  left: 0.32rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .left-bottom {
    left: 0.16rem;
  }
}
.card___wrapper .text_wrapper.style4 .left-bottom .item {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.card___wrapper .text_wrapper.style4 .left-bottom .item .label {
  width: 2.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .left-bottom .item .label {
    width: 1.8rem;
    font-size: 0.24rem;
  }
}
.card___wrapper .text_wrapper.style4 .left-bottom .item .label .txt {
  display: inline-block;
}
.card___wrapper .text_wrapper.style4 .left-bottom .item .value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.card___wrapper .text_wrapper.style4 .left-bottom .item .value .bar {
  -webkit-transition: var(--transition-20, 0s linear);
  transition: var(--transition-20, 0s linear);
  width: var(--bar-width-1, 0);
  height: 0.04rem;
  background: #BEC6D9;
  visibility: visible;
}
.card___wrapper .text_wrapper.style4 .left-bottom .item .value .num {
  margin-left: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .left-bottom .item .value .num {
    font-size: 0.24rem;
  }
}
.card___wrapper .text_wrapper.style4 .left-bottom .item.hjt .label {
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card___wrapper .text_wrapper.style4 .left-bottom .item.hjt .value .bar {
  width: var(--bar-width-2, 0);
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
}
.card___wrapper .text_wrapper.style4 .left-bottom .item.hjt .value .num {
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card___wrapper .text_wrapper.style4 .direct-sunlight-tag {
  position: absolute;
  top: 45%;
  left: 26%;
  padding: 0.08rem 0.16rem;
  background: -webkit-linear-gradient(left, #FFD900 0%, #FF6200 100%);
  background: linear-gradient(90deg, #FFD900 0%, #FF6200 100%);
  color: #fff;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .direct-sunlight-tag {
    font-size: 0.24rem;
    line-height: 1.3;
    left: 14%;
    top: 60%;
  }
}
.card___wrapper .text_wrapper.style4 .diffuse-panel {
  position: absolute;
  top: 34%;
  left: 64%;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .diffuse-panel {
    font-size: 0.24rem;
    line-height: 1.3;
    top: 40%;
  }
}
.card___wrapper .text_wrapper.style4 .sunlight-panel {
  position: absolute;
  top: 82%;
  left: 57%;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .sunlight-panel {
    font-size: 0.24rem;
    line-height: 1.3;
    left: 60%;
    top: 72%;
  }
}
.card___wrapper .text_wrapper.style4 .arrow {
  position: absolute;
}
.card___wrapper .text_wrapper.style4 .arrow.icon1 {
  width: 1.35rem;
  top: 34%;
  left: 38%;
  -webkit-animation: floatLeftTop var(--transition-20-no, 0s) ease-in-out infinite;
          animation: floatLeftTop var(--transition-20-no, 0s) ease-in-out infinite;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .arrow.icon1 {
    left: 28%;
  }
}
.card___wrapper .text_wrapper.style4 .arrow.icon2 {
  width: 0.81rem;
  top: 34%;
  left: 54.4%;
  -webkit-animation: floatRightTop var(--transition-20-no, 0s) ease-in-out infinite;
          animation: floatRightTop var(--transition-20-no, 0s) ease-in-out infinite;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .arrow.icon2 {
    top: 24%;
    left: 60.4%;
  }
}
.card___wrapper .text_wrapper.style4 .arrow.icon3 {
  width: 0.81rem;
  bottom: 0.56rem;
  left: 48%;
  -webkit-animation: floatLeftBottom var(--transition-20-no, 0s) ease-in-out infinite;
          animation: floatLeftBottom var(--transition-20-no, 0s) ease-in-out infinite;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style4 .arrow.icon3 {
    bottom: 0.7rem;
  }
}
.card___wrapper .text_wrapper.style5 {
  padding: 0.32rem;
}
.card___wrapper .text_wrapper.style5 .title {
  font-size: 0.96rem;
  line-height: 1.04rem;
  font-family: var(--sk-font-Num);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style5 .title {
    font-size: 0.8rem;
    line-height: 0.96rem;
  }
}
.card___wrapper .text_wrapper.style5 .text {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style5 .text {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style5 .left-bottom {
  position: absolute;
  bottom: 0.32rem;
  left: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style5 .left-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card___wrapper .text_wrapper.style5 .left-bottom .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.57rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style5 .left-bottom .item {
    margin-top: 0.2rem;
    margin-right: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style5 .left-bottom .item .value {
  font-size: 0.64rem;
  line-height: 0.64rem;
  font-family: var(--sk-font-Num);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style5 .left-bottom .item .value {
    font-size: 0.4rem;
    line-height: 1.2;
  }
}
.card___wrapper .text_wrapper.style5 .left-bottom .item .label {
  margin-left: 0.24rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style5 .left-bottom .item .label {
    font-size: 0.24rem;
  }
}
.card___wrapper .text_wrapper.style5 .trend-chart {
  position: absolute;
  left: 1.27rem;
  top: 43.7%;
  width: 4.97rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style5 .trend-chart {
    top: 38%;
    left: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style5 .trend-chart .chart-img-1 {
  width: 100%;
}
.card___wrapper .text_wrapper.style5 .trend-chart .chart-img-2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0.02rem;
  -webkit-transition: var(--transition-16, 0s linear);
  transition: var(--transition-16, 0s linear);
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
  visibility: visible;
}
.card___wrapper .text_wrapper.style5 .trend-chart .chart-img-3 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0.02rem;
  -webkit-transition: var(--transition-16, 0s linear);
  transition: var(--transition-16, 0s linear);
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
  visibility: visible;
}
.card___wrapper .text_wrapper.style5 .trend-chart .icon-box {
  position: absolute;
  width: 0;
  height: 0;
  top: 4%;
  left: 12%;
  opacity: var(--opacity, 0);
  visibility: visible;
}
.card___wrapper .text_wrapper.style5 .trend-chart .icon-box.icon-box2 {
  top: 35%;
  left: 82.5%;
}
.card___wrapper .text_wrapper.style5 .trend-chart .icon-box.icon-box2 .txt {
  top: -0.6rem;
}
.card___wrapper .text_wrapper.style5 .trend-chart .icon-box.icon-box3 {
  top: 41%;
  left: 97%;
}
.card___wrapper .text_wrapper.style5 .trend-chart .icon-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  background: -webkit-linear-gradient(315deg, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(135deg, #00FFFF 0%, #0059FF 100%);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.card___wrapper .text_wrapper.style5 .trend-chart .icon-box .txt {
  position: absolute;
  top: -0.48rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Num);
}
.card___wrapper .text_wrapper.style6 {
  padding: 0.32rem;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card___wrapper .text_wrapper.style6 .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  text-align: center;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style6 .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.card___wrapper .text_wrapper.style6 .item-bottom {
  text-align: center;
  max-width: 8rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style6 .item-bottom {
    width: 100%;
  }
}
.card___wrapper .text_wrapper.style6 .item-bottom .name {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style6 .item-bottom .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.card___wrapper .text_wrapper.style6 .item-bottom .txt {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style6 .item-bottom .txt {
    margin-top: 0.08rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.card___wrapper .text_wrapper.style7 {
  height: 100%;
  padding: 0.32rem;
  height: 6.4rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 {
    height: 6.88rem;
  }
}
.card___wrapper .text_wrapper.style7 .title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  width: 4.64rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .title {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.card___wrapper .text_wrapper.style7 .text {
  margin-top: 0.24rem;
  width: 3.4rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .text {
    width: 100%;
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style7 .card_body {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.2rem);
  padding: 0.32rem;
  position: absolute;
  bottom: 0.32rem;
  right: 0.16rem;
}
.card___wrapper .text_wrapper.style7 .card_body .num {
  font-size: 0.64rem;
  line-height: 0.72rem;
  font-family: var(--sk-font-Num);
}
.card___wrapper .text_wrapper.style7 .card_body .txt {
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
.card___wrapper .text_wrapper.style7 .card_body .progress-list {
  margin-top: 0.56rem;
}
.card___wrapper .text_wrapper.style7 .card_body .progress-list .progress-item {
  margin-bottom: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.card___wrapper .text_wrapper.style7 .card_body .progress-list .progress-item:last-child {
  margin-bottom: 0;
}
.card___wrapper .text_wrapper.style7 .card_body .progress-list .progress-item .label {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  margin-right: 0.12rem;
}
.card___wrapper .text_wrapper.style7 .card_body .progress-list .progress-item .bar {
  height: 0.08rem;
  background: -webkit-linear-gradient(left, #00FFFF 0%, #0059FF 100%);
  background: linear-gradient(90deg, #00FFFF 0%, #0059FF 100%);
}
.card___wrapper .text_wrapper.style7 .card_body .progress-list .progress-item .num {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
.card___wrapper .text_wrapper.style7 .label-list .label-box {
  position: absolute;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
  width: 3.36rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box .txt {
  -webkit-transition: var(--transition-3-22, 0s linear);
  transition: var(--transition-3-22, 0s linear);
  opacity: var(--opacity-1, 1);
  visibility: visible;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box .before {
  position: absolute;
  bottom: -0.14rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  -webkit-transition: var(--transition-5-28, 0s linear);
  transition: var(--transition-5-28, 0s linear);
  visibility: visible;
  -webkit-clip-path: var(--clip-path-1, inset(0 0 0 0));
          clip-path: var(--clip-path-1, inset(0 0 0 0));
}
.card___wrapper .text_wrapper.style7 .label-list .label-box .before::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.02rem;
  right: 0.04rem;
  background-color: rgba(255, 255, 255, 0.6);
  top: 0.02rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box .before::after {
  content: "";
  top: 0.01rem;
  right: 0.01rem;
  position: absolute;
  height: 0.04rem;
  width: 0.04rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.6);
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(1) {
  width: 5.28rem;
  top: 2.8rem;
  left: 2.56rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(1) {
    width: 3.3rem;
    top: 4.4rem;
    left: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(2) {
  width: 3.28rem;
  bottom: 1.84rem;
  left: 2.56rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(2) {
    width: 2.08rem;
    bottom: 1.6rem;
    left: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(3) {
  top: 0.48rem;
  right: 2rem;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(3) {
    top: 3.04rem;
    right: 0.32rem;
    width: 2.08rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(3) .before {
  -webkit-clip-path: var(--clip-path-2, inset(0 0 0 0));
          clip-path: var(--clip-path-2, inset(0 0 0 0));
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(3) .before::before {
  right: auto;
  left: 0.04rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(3) .before::after {
  right: auto;
  left: 0.01rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(4) {
  top: 1.04rem;
  right: 3.47rem;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(4) {
    top: 3.68rem;
    right: 0.32rem;
    width: 1.64rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(4) .before {
  -webkit-clip-path: var(--clip-path-2, inset(0 0 0 0));
          clip-path: var(--clip-path-2, inset(0 0 0 0));
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(4) .before::before {
  right: auto;
  left: 0.04rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(4) .before::after {
  right: auto;
  left: 0.01rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(5) {
  top: 1.68rem;
  right: 2.56rem;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(5) {
    top: 4.32rem;
    width: 2.32rem;
    right: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(5) .before {
  -webkit-clip-path: var(--clip-path-2, inset(0 0 0 0));
          clip-path: var(--clip-path-2, inset(0 0 0 0));
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(5) .before::before {
  right: auto;
  left: 0.04rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(5) .before::after {
  right: auto;
  left: 0.01rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(6) {
  top: 2.24rem;
  right: 3.04rem;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(6) {
    top: 4.96rem;
    width: 2.6rem;
    right: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(6) .before {
  -webkit-clip-path: var(--clip-path-2, inset(0 0 0 0));
          clip-path: var(--clip-path-2, inset(0 0 0 0));
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(6) .before::before {
  right: auto;
  left: 0.04rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(6) .before::after {
  right: auto;
  left: 0.01rem;
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(7) {
  width: 3.68rem;
  top: 3.44rem;
  left: 2.56rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(7) {
    width: 2.6rem;
    top: 4.72rem;
    left: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(7) .before {
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
}
.card___wrapper .text_wrapper.style7 .label-list .label-box:nth-child(7) .txt {
  opacity: var(--opacity, 0);
}
.card___wrapper .text_wrapper.style8 {
  height: 100%;
  padding: 0.32rem;
}
.card___wrapper .text_wrapper.style8 .title {
  width: 4.64rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .title {
    width: 100%;
    text-align: center;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.card___wrapper .text_wrapper.style8 .text {
  margin-top: 0.24rem;
  width: 4.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .text {
    margin-top: 0.16rem;
    width: 100%;
    text-align: center;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style8 .chart-box {
  position: absolute;
  width: 4.8rem;
  top: 0.56rem;
  right: 0.64rem;
}
.card___wrapper .text_wrapper.style8 .chart-box .chart-img1 {
  width: 100%;
}
.card___wrapper .text_wrapper.style8 .chart-box .chart-img2 {
  position: absolute;
  width: 3.2rem;
  top: 0.08rem;
  left: 0.8rem;
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
  -webkit-transition: 1s linear;
  transition: 1s linear;
}
.card___wrapper .text_wrapper.style8 .chart-box .txt {
  position: absolute;
  bottom: 0.1rem;
  left: 1.52rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
.card___wrapper .text_wrapper.style8 .chart-box .label-list {
  position: absolute;
  top: 0;
  right: 0;
}
.card___wrapper .text_wrapper.style8 .chart-box .label-list .label {
  font-size: 0.12rem;
  line-height: 0.16rem;
  margin-bottom: 0.08rem;
  font-family: var(--sk-font-SemiBold);
}
.card___wrapper .text_wrapper.style8 .chart-box .label-list .label:nth-child(1) {
  color: #009DFF;
}
.card___wrapper .text_wrapper.style8 .chart-box .label-list .label:nth-child(2) {
  color: #7E52E4;
}
.card___wrapper .text_wrapper.style8 .chart-box .label-list .label:nth-child(3) {
  color: #E45252;
}
.card___wrapper .text_wrapper.style8 .chart-box .label-list .label:nth-child(4) {
  color: #4EA72F;
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  position: absolute;
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item1 {
  left: 50%;
  -webkit-transform: translate(-50%, var(--translateY, -0.2rem));
      -ms-transform: translate(-50%, var(--translateY, -0.2rem));
          transform: translate(-50%, var(--translateY, -0.2rem));
  bottom: 2.55rem;
  opacity: var(--opacity, 0);
  -webkit-transition: var(--transition-3-3, 0s linear);
  transition: var(--transition-3-3, 0s linear);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .label-wrapper .label.item1 {
    font-size: 0.32rem;
    line-height: 0.48rem;
    bottom: 2.4rem;
  }
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item2 {
  left: 50%;
  -webkit-transform: translate(-50%, var(--translateY, -0.2rem));
      -ms-transform: translate(-50%, var(--translateY, -0.2rem));
          transform: translate(-50%, var(--translateY, -0.2rem));
  bottom: 0.18rem;
  opacity: var(--opacity, 0);
  -webkit-transition: var(--transition-3-12, 0s linear);
  transition: var(--transition-3-12, 0s linear);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .label-wrapper .label.item2 {
    font-size: 0.32rem;
    line-height: 0.48rem;
    bottom: 0.32rem;
  }
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item3, .card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 {
  width: 5.3rem;
  bottom: 2.06rem;
  left: 0.32rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .label-wrapper .label.item3, .card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 {
    font-size: 0.24rem;
    line-height: 0.48rem;
    bottom: 2.5rem;
    left: 0.24rem;
    width: 1.12rem;
  }
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item3 .txt, .card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 .txt {
  opacity: var(--opacity, 0);
  -webkit-transition: var(--transition-3-16, 0s linear);
  transition: var(--transition-3-16, 0s linear);
  visibility: visible;
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item3 .before, .card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 .before {
  position: absolute;
  bottom: -0.14rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  -webkit-transition: var(--transition-5-10, 0s linear);
  transition: var(--transition-5-10, 0s linear);
  visibility: visible;
  -webkit-clip-path: var(--clip-path, inset(0 100% 0 0));
          clip-path: var(--clip-path, inset(0 100% 0 0));
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item3 .before::before, .card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 .before::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.02rem;
  right: 0.04rem;
  background-color: rgba(255, 255, 255, 0.6);
  top: 0.02rem;
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item3 .before::after, .card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 .before::after {
  content: "";
  top: 0.01rem;
  right: 0.01rem;
  position: absolute;
  height: 0.04rem;
  width: 0.04rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.6);
}
.card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 {
  width: 5.3rem;
  bottom: 0.4rem;
  left: 0.32rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .label-wrapper .label.item4 {
    width: 1.22rem;
    bottom: 0.56rem;
    left: 0.24rem;
  }
}
.card___wrapper .text_wrapper.style8 .label-wrapper .arrow-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: var(--transition-3-8, 0s linear);
  transition: var(--transition-3-8, 0s linear);
  -webkit-clip-path: var(--clip-path, inset(0 0 100% 0));
          clip-path: var(--clip-path, inset(0 0 100% 0));
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .label-wrapper .arrow-box {
    bottom: 0.8rem;
  }
}
.card___wrapper .text_wrapper.style8 .label-wrapper .arrow-box .arrow-img1 {
  height: 1.12rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style8 .label-wrapper .arrow-box .arrow-img1 {
    height: 1rem;
  }
}
.card___wrapper .text_wrapper.style8 .label-wrapper .arrow-box .arrow-img2 {
  height: 0.48rem;
}
.card___wrapper .text_wrapper.style9 .video_wrapper {
  padding: 0.32rem;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --width: 8.8rem;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style9 .video_wrapper {
    padding: 0.52rem 0.32rem;
    --width: 3.36rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  width: var(--width);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper {
    padding-left: 0.32rem;
    height: 100%;
    width: auto;
  }
}
.card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box {
  position: absolute;
  width: auto;
  height: 100%;
  left: var(--top);
  text-align: right;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sk-font-SemiBold);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box {
    width: 2.56rem;
    height: auto;
    padding-top: 0;
    font-size: 0.16rem;
    line-height: 0.32rem;
    right: 0;
    left: auto;
    top: var(--top);
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.01rem;
  height: 0;
  background-image: -webkit-linear-gradient(top, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  background-image: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  -webkit-transition: 0s;
  transition: 0s;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box::before {
    top: 0;
    bottom: auto;
    left: 0;
    right: auto;
    width: 0;
    height: 0.01rem;
    background-image: -webkit-linear-gradient(right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
    background-image: linear-gradient(270deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  }
}
.card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box .text {
  -webkit-transition: 0s;
  transition: 0s;
  opacity: 0;
}
.card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box.on::before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: calc(100% - 0.4rem);
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box.on::before {
    height: 0.01rem;
    width: 100%;
  }
}
.card___wrapper .text_wrapper.style9 .video_wrapper .label_wrapper .label-box.on .text {
  -webkit-transition: 0.3s 0.3s;
  transition: 0.3s 0.3s;
  opacity: 1;
}
.card___wrapper .text_wrapper.style9 .video_wrapper .video-box {
  height: 4.96rem;
  width: var(--width);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style9 .video_wrapper .video-box {
    height: 5.84rem;
  }
}
.card___wrapper .text_wrapper.style9 .video_wrapper .video-box .video-img {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 4.96rem;
  height: var(--width);
  -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
          transform: rotate(90deg) translate3d(0, 0, 0);
  will-change: transform;
}
@media screen and (max-width: 800px) {
  .card___wrapper .text_wrapper.style9 .video_wrapper .video-box .video-img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 100%;
    height: 100%;
  }
}

.swiper___section {
  color: #fff;
  margin-top: 1.6rem;
  margin-bottom: 1.84rem;
}
@media screen and (max-width: 800px) {
  .swiper___section {
    margin-top: 0.96rem;
    margin-bottom: 0.96rem;
    overflow: hidden;
  }
}
.swiper___section.more-power-generation-section {
  margin-bottom: 0.96rem;
}
.swiper___section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .swiper___section .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
    letter-spacing: 1px;
  }
}
.swiper___section .pagination-fraction {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  text-align: right;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
}
@media screen and (max-width: 800px) {
  .swiper___section .pagination-fraction {
    margin-top: 0.64rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.swiper___section .swiper_container {
  margin-top: 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .swiper___section .swiper_container {
    margin-top: 0.46rem;
  }
}
.swiper___section .swiper_pagination_wrapper {
  margin-top: 0.64rem;
  position: relative;
}
@media screen and (min-width: 800px) {
  .swiper___section .swiper_pagination_wrapper.on::before {
    content: "";
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    height: 100%;
    width: 2rem;
    background: -webkit-linear-gradient(left, #000612 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(90deg, #000612 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: -webkit-linear-gradient(right, transparent, #000, #000);
            mask: linear-gradient(to left, transparent, #000, #000);
    backdrop-filter: blur(4px);
    pointer-events: none;
  }
  .swiper___section .swiper_pagination_wrapper.on::after {
    content: "";
    position: absolute;
    z-index: 5;
    right: 0;
    top: 0;
    height: 100%;
    width: 2rem;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #000612 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000612 100%);
    -webkit-mask: -webkit-linear-gradient(left, transparent, #000, #000);
            mask: linear-gradient(to right, transparent, #000, #000);
    backdrop-filter: blur(4px);
    pointer-events: none;
  }
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide {
  width: calc((100% - 0.32rem) / 3);
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide {
    width: 5.6rem;
    margin-right: 0;
  }
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0;
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide.on {
  --after-display: block;
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card {
  cursor: pointer;
  border-top: 0.02rem solid rgba(255, 255, 255, 0.4);
  padding-top: 0.3rem;
  padding-right: 0.14rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card {
    padding-top: 0.44rem;
    border-width: 0.04rem;
    padding-right: 0;
  }
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card .after {
  position: absolute;
  top: -0.02rem;
  left: 0;
  height: 0.04rem;
  width: 0;
  background: #FFFFFF;
  display: var(--after-display, none);
}
@media screen and (max-width: 800px) {
  .swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card .after {
    height: 0.08rem;
    top: -0.04rem;
  }
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card .title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card .text {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 800px) {
  .swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide .text_card .text {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide.on .text_card .title {
  color: #FFFFFF;
}
.swiper___section .swiper_pagination_wrapper .swiper_pagination .swiper-wrapper .swiper-slide.on .text_card .text {
  color: #FFFFFF;
}
