@charset "UTF-8";
@font-face {
  font-family: "New-Science-Regular-Extended";
  src: url(../fonts/New_Science_Regular_Extended.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "New-Science-Medium-Extended";
  src: url(../fonts/New_Science_Medium_Extended.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "New-Science-SemiBold-Extended";
  src: url(../fonts/New_Science_SemiBold_Extended.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "New-Science-SemiBold";
  src: url(../fonts/fonnts.com-New_Science_SemiBold.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
 * 富文本初始化
 */
/* 全局样式变量 */
:root {
  --sk-EN-font-Regular: 'New-Science-Regular-Extended';
  --sk-EN-font-Medium: 'New-Science-Medium-Extended';
  --sk-EN-font-SemiBold: 'New-Science-SemiBold-Extended';
  --sk-EN-font-SemiBold-Science: 'New-Science-SemiBold';
  --sk-font-Light: '';
  --sk-font-Regular: 'MiSans';
  --sk-font-Medium: 'MiSans Medium';
  --sk-font-Bold: 'MiSans';
  --sk-font-SemiBold: 'MiSans Semibold';
  --sk-font-Num: '';
  --headH: 0;
  /* 以下颜色根据设计稿的不同来设置 */
  --sk-global-color: #51B146;
  /* -------------- 主题色 ---------------*/
  --fcolor-default: #132528;
  /* -------------- 字体默认色 ---------------*/
  --fcolor-black: #000000;
  --fz-h1: .96rem;
  /* -------------- 一级标题字号 ---------------*/
  --fz-h2: .48rem;
  /* -------------- 一级标题字号 ---------------*/
  --fz-context: .16rem;
  /* -------------- 正文字号 ------------------*/
  --lh-h1: .96rem;
  /* -------------- 一级标题行高 ---------------*/
  --lh-h2: .56rem;
  /* -------------- 二级标题行高 ---------------*/
  --lh-context: .24rem;
  /* -------------- 正文行高 -------------------*/
}

@-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: 2.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: .56rem;
  position: relative;
  width: 100%;
}
.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.24rem;
  height: var(--h);
  background: #EFF8F8;
  border-radius: 0.56rem;
}
.sk_select .-select-front input::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.sk_select .-select-front input::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.sk_select .-select-front input:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.sk_select .-select-front input:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.sk_select .-select-front textarea::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.sk_select .-select-front textarea::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.sk_select .-select-front textarea:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.sk_select .-select-front textarea:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.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.16rem;
}
.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: #EFF8F8;
  border-radius: 0.08rem;
  padding: 0.16rem 0.04rem 0.21rem 0.22rem;
}
.sk_select .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.12rem;
  font-size: 0.14rem;
  line-height: 0.18rem;
  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.on {
  color: var(--fcolor-default);
}
.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: .92rem;
    width: 100%;
  }
  .sk_select .-select-front {
    padding: 0.31rem 0.2rem 0.33rem 0.31rem;
    height: var(--h);
  }
  .sk_select .-select-front input {
    font-size: 0.27rem;
  }
  .sk_select .-select-front::after {
    width: 0.46rem;
    height: 0.46rem;
  }
  .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);
  font-weight: 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: #EFF8F8;
}
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);
  font-weight: bold;
}

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

em {
  font-style: normal;
}

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

button {
  all: unset;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  outline: none; /* 可选：移除焦点轮廓 */
}

button:focus {
  outline: none; /* 可选：移除焦点边框 */
}

.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: 18.08rem;
  width: 100%;
  margin: 0 auto;
}

.wal1504 {
  max-width: 15.04rem;
  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.43rem;
  }
  .wal1504 {
    width: 100%;
    padding: 0 0.43rem;
  }
  .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;
  }
}
.sk-load-frame {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  pointer-events: none;
}
.sk-load-frame.animated {
  display: none;
}
.sk-load-frame .wrapper {
  pointer-events: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  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;
}
.sk-load-frame .wrapper:first-child {
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
}
.sk-load-frame .wrapper:last-child {
  -webkit-clip-path: inset(0 0 0 50%);
          clip-path: inset(0 0 0 50%);
}
.sk-load-frame .wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.32rem;
  width: 100%;
  height: 0.04rem;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #FFFFFF 50%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #FFFFFF 50%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 800px) {
  .sk-load-frame .wrapper::before {
    height: 0.07rem;
    bottom: 0.58rem;
  }
}
.sk-load-frame .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.38rem;
  width: 100%;
  height: 0.02rem;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 800px) {
  .sk-load-frame .wrapper::after {
    height: 0.04rem;
    bottom: 0.69rem;
  }
}
.sk-load-frame .wrapper .logo-img {
  height: 1.2rem;
}
@media screen and (max-width: 800px) {
  .sk-load-frame .wrapper .logo-img {
    height: 0.87rem;
  }
}

@-webkit-keyframes icon-forward {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #132528;
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    color: #132528;
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    color: #fff;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #fff;
  }
}

@keyframes icon-forward {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #132528;
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    color: #132528;
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    color: #fff;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #fff;
  }
}
@-webkit-keyframes icon-forward-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #132528;
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    color: #132528;
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    color: #fff;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #fff;
  }
}
@keyframes icon-forward-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #132528;
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    color: #132528;
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    color: #fff;
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    color: #fff;
  }
}
@-webkit-keyframes icon-forward-current {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes icon-forward-current {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.g-text-hover {
  --color: var(--sk-global-color);
}
.g-text-hover .text-underline,
.g-text-hover span {
  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);
}
.g-text-hover:hover .text-underline,
.g-text-hover:hover span {
  background-size: 100% 100%;
}

.default___btn {
  height: 0.48rem;
  border-radius: 0.4rem;
  background: var(--sk-global-color);
  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;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .default___btn {
    height: 0.92rem;
    border-radius: 0.76rem;
  }
}
.default___btn .btn-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0 0.32rem 0 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .default___btn .btn-text {
    font-size: 0.27rem;
    line-height: 0.46rem;
    padding: 0 0.61rem 0 0.46rem;
  }
}
.default___btn .btn-arrow-inner {
  width: 0.32rem;
  height: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
  margin-right: 0.08rem;
  border-radius: 0.4rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .default___btn .btn-arrow-inner {
    width: 0.61rem;
    height: 0.61rem;
    margin-right: 0.15rem;
    border-radius: 0.76rem;
  }
}
.default___btn .btn-arrow-inner .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .default___btn .btn-arrow-inner .icon {
    width: 0.31rem;
    height: 0.31rem;
  }
}
.default___btn .btn-arrow-inner .icon path {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.default___btn .btn-arrow-inner .icon-play {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .default___btn .btn-arrow-inner .icon-play {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.default___btn:hover .btn-arrow-inner .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.sk-animate-text {
  --c-text: rgba(0, 0, 0, 0.2);
}
.sk-animate-text span {
  color: var(--c-text);
}

.contact-page .page-main {
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main {
    padding-bottom: 0.64rem;
  }
}
.contact-page .page-main .contact-section {
  padding-top: 1.84rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section {
    padding-top: 1.08rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.contact-page .page-main .contact-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.52rem;
  margin-right: 0.48rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section .flex-box {
    padding-left: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.contact-page .page-main .contact-section .flex-box .h1 {
  padding-top: 1.12rem;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section .flex-box .h1 {
    margin-top: 0.31rem;
    padding-top: 0;
    text-align: center;
    font-size: 0.76rem;
    line-height: 0.92rem;
  }
}
.contact-page .page-main .contact-section .flex-box .right-box {
  width: 10rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section .flex-box .right-box {
    width: 100%;
    margin-top: 0.31rem;
    margin-bottom: -0.46rem;
    padding-bottom: 0.2rem;
  }
}
.contact-page .page-main .contact-section .flex-box .right-box .img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section .flex-box .right-box .img {
    width: 108%;
    max-width: 108%;
  }
}
.contact-page .page-main .contact-section .flex-box .right-box .bubble1 {
  position: absolute;
  z-index: -1;
  top: 0.16rem;
  left: 0.24rem;
  height: 1.6rem;
  width: 1.6rem;
  border-radius: 50%;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section .flex-box .right-box .bubble1 {
    width: 1.22rem;
    height: 1.22rem;
    top: 0.15rem;
    left: 0.31rem;
  }
}
.contact-page .page-main .contact-section .flex-box .right-box .bubble2 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 1.04rem;
  height: 0.32rem;
  width: 0.32rem;
  border-radius: 50%;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section .flex-box .right-box .bubble2 {
    width: 0.31rem;
    height: 0.31rem;
    right: 0.32rem;
  }
}
.contact-page .page-main .contact-section .flex-box .right-box .bubble3 {
  position: absolute;
  z-index: -1;
  top: 2.23rem;
  right: 0;
  height: 4.4rem;
  width: 4.4rem;
  border-radius: 50%;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .contact-section .flex-box .right-box .bubble3 {
    width: 3.5rem;
    height: 3.5rem;
    top: 2.14rem;
    right: -0.59rem;
  }
}
.contact-page .page-main .card___wrap {
  background: #FFFFFF;
  border-radius: 0.24rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap {
    border-radius: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .contact-sales-section {
  padding-top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .contact-sales-section {
    padding: 0.61rem 0 0;
  }
}
.contact-page .page-main .card___wrap .contact-sales-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) {
  .contact-page .page-main .card___wrap .contact-sales-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-page .page-main .card___wrap .contact-sales-section .flex-box .left-box {
  width: 4.4rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .contact-sales-section .flex-box .left-box {
    width: 100%;
  }
}
.contact-page .page-main .card___wrap .contact-sales-section .flex-box .left-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .contact-sales-section .flex-box .left-box .h2 {
    font-size: 0.46rem;
    line-height: 0.61rem;
  }
}
.contact-page .page-main .card___wrap .contact-sales-section .flex-box .left-box .contact-sales-content {
  margin-top: 0.72rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .contact-sales-section .flex-box .left-box .contact-sales-content {
    margin-top: 0.76rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box {
  margin-top: 0.96rem;
  padding-top: 0.96rem;
  border-top: 1px solid #E6E6E6;
  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-page .page-main .card___wrap .technical-support-section .flex-box {
    margin-top: 1.22rem;
    padding: 0.61rem 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .left-box {
  width: 4.4rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .left-box {
    width: 100%;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .left-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .left-box .h2 {
    font-size: 0.46rem;
    line-height: 0.61rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .left-box .technical-support-content {
  margin-top: 0.72rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .left-box .technical-support-content {
    margin-top: 0.76rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box {
  width: 8.96rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box {
    width: 100%;
    margin-top: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-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;
  margin: -0.08rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list {
    margin: -0.075rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item {
  margin: 0.08rem;
  border: 1px solid #E6E6E6;
  border-radius: 0.24rem;
  padding: 0.24rem;
  width: calc(33.3333333333% - 0.16rem);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item {
    margin: 0.075rem;
    width: 100%;
    border-radius: 0.46rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item:hover .link-box {
  color: var(--sk-global-color);
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item:hover .link-box .svg path {
  stroke: var(--sk-global-color);
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .icon {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .icon {
    width: 0.46rem;
    height: 0.46rem;
  }
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .left-box {
    margin-left: 0.31rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .left-box .label {
  margin-top: 0.4rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .left-box .label {
    margin-top: 0;
    font-size: 0.34rem;
    line-height: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .left-box .link-box {
  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;
  font-size: 0.16rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .left-box .link-box {
    margin-top: 0;
    font-size: 0.27rem;
    line-height: 0.38rem;
  }
}
.contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .left-box .link-box .svg {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .technical-support-section .flex-box .right-box .card-list .card-item .left-box .link-box .svg {
    width: 0.46rem;
    height: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .card-section {
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section {
    padding-bottom: 1.22rem;
  }
}
.contact-page .page-main .card___wrap .card-section .card-wrap {
  margin-top: 0.96rem;
  padding-top: 0.96rem;
  border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section .card-wrap {
    margin-top: 1.22rem;
    padding: 0.61rem 0 0;
  }
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.08rem;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section .card-wrap .card-list {
    margin: -0.15rem;
  }
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item {
  margin: 0.08rem;
  width: calc(50% - 0.17rem);
  height: 4.24rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  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;
  --color: #fff;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item {
    margin: 0.15rem;
    width: 100%;
    height: 4.27rem;
    border-radius: 0.46rem;
  }
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item:hover .img-bg {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item:hover .cell-box .arrow-inner {
  background: var(--sk-global-color);
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item:hover .cell-box .arrow-inner .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box {
  padding: 0.32rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(80px);
  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;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box {
    padding: 0.31rem 0.31rem 0.31rem 0.46rem;
  }
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box .card-text {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #FFFFFF;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box .card-text {
    font-size: 0.31rem;
    line-height: 0.61rem;
  }
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 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;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner {
    width: 0.61rem;
    height: 0.61rem;
  }
}
.contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .contact-page .page-main .card___wrap .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner .icon {
    width: 0.31rem;
    height: 0.31rem;
  }
}

.form___box {
  width: 8.96rem;
}
@media screen and (max-width: 800px) {
  .form___box {
    width: 100%;
    margin-top: 0.61rem;
  }
}
.form___box.dark {
  --input-bg: rgba(255, 255, 255, 0.1);
  --text-color: #FFFFFF;
  --text-placeholder-color: rgba(255, 255, 255, 0.8);
  --checkbox-color: rgba(255, 255, 255, 0.8);
  --justify-content: flex-start;
  --btn-display: inline-flex;
}
.form___box .__form .content-container {
  margin: -0.08rem;
  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) {
  .form___box .__form .content-container {
    margin: -0.075rem;
  }
}
.form___box .__form .content-container .input___content {
  margin: 0.078rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content {
    margin: 0.074rem;
  }
}
.form___box .__form .content-container .input___content.row2 {
  width: calc(50% - 0.16rem);
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content.row2 {
    width: 100%;
  }
}
.form___box .__form .content-container .input___content .input-box {
  position: relative;
}
.form___box .__form .content-container .input___content .input-box input::-webkit-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box input::-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box input:-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box input:-ms-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box textarea::-webkit-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box textarea::-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box textarea:-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box textarea:-ms-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .input-box input {
  height: 0.56rem;
  width: 100%;
  border-radius: 0.56rem;
  background: var(--input-bg, #EFF8F8);
  padding: 0 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--text-color, #132528);
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .input-box input {
    height: 0.92rem;
    padding: 0 0.31rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.form___box .__form .content-container .input___content .input-box.code-box input {
  padding-right: 1.41rem;
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .input-box.code-box input {
    padding-right: 2rem;
  }
}
.form___box .__form .content-container .input___content .input-box .code-img {
  position: absolute;
  right: 0.08rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.4rem;
  width: auto;
  cursor: pointer;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .input-box .code-img {
    right: 0.15rem;
    height: 0.61rem;
  }
}
.form___box .__form .content-container .input___content .select-input {
  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.56rem;
  border-radius: 0.56rem;
  background: #EFF8F8;
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .select-input {
    height: 0.92rem;
  }
}
.form___box .__form .content-container .input___content .select-input .sk_select {
  width: 1.04rem;
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .select-input .sk_select {
    width: 1.83rem;
  }
}
.form___box .__form .content-container .input___content .select-input .sk_select .-select-front {
  padding: 0 0.16rem 0 0.1rem;
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .select-input .sk_select .-select-front {
    padding: 0 0.31rem 0 0.1rem;
  }
}
.form___box .__form .content-container .input___content .select-input .sk_select .-select-front::after {
  margin-left: 0;
}
.form___box .__form .content-container .input___content .select-input .sk_select .-select-front input {
  text-align: center;
}
.form___box .__form .content-container .input___content .select-input .input_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form___box .__form .content-container .input___content .select-input .input_box input {
  padding-right: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .select-input .input_box input {
    padding-right: 0.31rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.form___box .__form .content-container .input___content .textarea-box input::-webkit-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box input::-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box input:-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box input:-ms-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box textarea::-webkit-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box textarea::-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box textarea:-moz-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box textarea:-ms-input-placeholder {
  color: var(--text-placeholder-color, rgba(19, 37, 40, 0.6));
}
.form___box .__form .content-container .input___content .textarea-box textarea {
  width: 100%;
  height: 1.68rem;
  border-radius: 0.24rem;
  background: var(--input-bg, #EFF8F8);
  padding: 0.16rem 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  resize: none;
  color: var(--text-color, #132528);
}
@media screen and (max-width: 800px) {
  .form___box .__form .content-container .input___content .textarea-box textarea {
    height: 2.75rem;
    border-radius: 0.46rem;
    padding: 0.31rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.form___box .__form .privacy_policy_checkbox {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .form___box .__form .privacy_policy_checkbox {
    margin-top: 0.31rem;
    -webkit-box-pack: var(--justify-content, center);
    -webkit-justify-content: var(--justify-content, center);
        -ms-flex-pack: var(--justify-content, center);
            justify-content: var(--justify-content, center);
  }
}
.form___box .__form .privacy_policy_checkbox .checkbox {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .form___box .__form .privacy_policy_checkbox .checkbox {
    width: 0.46rem;
    height: 0.46rem;
  }
}
.form___box .__form .privacy_policy_checkbox .checkbox .svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.form___box .__form .privacy_policy_checkbox .checkbox .svg.true {
  display: none;
}
.form___box .__form .privacy_policy_checkbox .checkbox .svg.false {
  display: block;
}
.form___box .__form .privacy_policy_checkbox .checkbox .svg.false rect {
  stroke: #fff;
}
.form___box .__form .privacy_policy_checkbox .checkbox.on .svg.true {
  display: block;
}
.form___box .__form .privacy_policy_checkbox .checkbox.on .svg.false {
  display: none;
}
.form___box .__form .privacy_policy_checkbox .checkbox-text {
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--checkbox-color, #132528);
}
@media screen and (max-width: 800px) {
  .form___box .__form .privacy_policy_checkbox .checkbox-text {
    margin-left: 0.31rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.form___box .__form .privacy_policy_checkbox .checkbox-text a {
  text-decoration: underline;
  color: var(--checkbox-color, #132528);
}
.form___box .__form .default___btn {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .form___box .__form .default___btn {
    margin: 0.46rem auto 0;
    display: var(--btn-display, flex);
  }
}

.line__ellipsis__wrap {
  position: relative;
}
.line__ellipsis__wrap.ffffff .line__ellipsis span {
  background: #fff;
}
.line__ellipsis__wrap.center {
  text-align: center;
}
.line__ellipsis__wrap.center .line__ellipsis {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .line__ellipsis__wrap.phone-center {
    text-align: center;
  }
  .line__ellipsis__wrap.phone-center .line__ellipsis {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .line__ellipsis__wrap.phone-ffffff .line__ellipsis span {
    background: #fff;
  }
}
.line__ellipsis__wrap .line__ellipsis {
  position: absolute;
  bottom: -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;
  height: 0.08rem;
}
@media screen and (max-width: 800px) {
  .line__ellipsis__wrap .line__ellipsis {
    height: 0.15rem;
    bottom: -0.46rem;
  }
}
.line__ellipsis__wrap .line__ellipsis span {
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .line__ellipsis__wrap .line__ellipsis span {
    width: 0.08rem;
    height: 0.08rem;
  }
}
.line__ellipsis__wrap .line__ellipsis span:not(:last-child) {
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .line__ellipsis__wrap .line__ellipsis span:not(:last-child) {
    margin-right: 0.15rem;
  }
}

.sk-index-banner {
  height: 100vh;
  color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 800px) {
  .sk-index-banner {
    height: 11.34rem;
  }
}
.sk-index-banner .-wrapper {
  height: 100%;
}
.sk-index-banner .-wrapper .inner {
  height: 100%;
}
.sk-index-banner .-wrapper .inner .-background {
  z-index: 1;
}
.sk-index-banner .-wrapper .inner .-background .bg-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sk-index-banner .-wrapper .inner .content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 8.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;
  text-align: center;
  -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;
}
.sk-index-banner .-wrapper .inner .content .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .sk-index-banner .-wrapper .inner .content .subtitle {
    font-size: 0.23rem;
    line-height: 0.31rem;
  }
}
.sk-index-banner .-wrapper .inner .content .title {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .sk-index-banner .-wrapper .inner .content .title {
    margin-top: 0.15rem;
    font-size: 0.46rem;
    line-height: 0.61rem;
  }
}
.sk-index-banner .-wrapper .inner .content .default___btn {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .sk-index-banner .-wrapper .inner .content .default___btn {
    margin-top: 0.43rem;
  }
}

.career-page .page-main .text-section {
  max-width: 8.96rem;
  padding-top: 0.96rem;
  padding-bottom: 1.28rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .text-section {
    padding-top: 0.92rem;
    padding-bottom: 0.92rem;
  }
}
.career-page .page-main .text-section .text {
  font-size: 0.32rem;
  line-height: 0.4rem;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .text-section .text {
    font-size: 0.34rem;
    line-height: 0.46rem;
  }
}
.career-page .page-main .card-section {
  color: #fff;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section {
    padding: 0;
  }
}
.career-page .page-main .card-section .card_wrap {
  padding: 0.96rem 1.52rem 0.56rem 1.52rem;
  position: relative;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap {
    padding: 0.92rem 0.48rem 0.92rem;
    border-radius: 0;
  }
}
.career-page .page-main .card-section .card_wrap .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.career-page .page-main .card-section .card_wrap .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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .left-box {
  width: 7.44rem;
  padding-bottom: 0.1rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .left-box {
    width: 100%;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .left-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .left-box .h2 {
    font-size: 0.38rem;
    line-height: 0.61rem;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .left-box .card-content {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .left-box .card-content {
    margin-top: 1.07rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .left-box .card-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.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.career-page .page-main .card-section .card_wrap .flex-box .left-box .card-content ul li {
  display: list-item;
  list-style-type: inherit;
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box {
  width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .right-box {
    width: 100%;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper {
  width: 100%;
  overflow: hidden;
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .swiper-wrapper .swiper-slide .img-box {
  height: 4rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .swiper-wrapper .swiper-slide .img-box {
    height: 4.43rem;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .swiper-wrapper .swiper-slide .img-box .img {
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .swiper-wrapper .swiper-slide .img-box .img {
    border-radius: 0.31rem;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination {
  margin: 0.2rem auto 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.28rem;
  padding: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination {
    margin: 0.38rem auto 0;
    padding: 0.15rem;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination .swiper-pagination-bullet {
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 0.04rem;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFFFFF;
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.46rem;
  }
}
.career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination .swiper-pagination-bullet:not(:first-child) {
  margin-left: 0.08rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-section .card_wrap .flex-box .right-box .img-swiper .pagination .swiper-pagination-bullet:not(:first-child) {
    margin-left: 0.15rem;
  }
}
.career-page .page-main .employee-stories-section {
  margin-top: 0.16rem;
  overflow: hidden;
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section {
    margin-top: 0.31rem;
    padding: 0;
  }
}
.career-page .page-main .employee-stories-section .card-box {
  border-radius: 0.24rem;
  padding: 0.96rem 0 1.2rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box {
    border-radius: 0;
    padding: 0.92rem 0.48rem 1.11rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .h2 {
    font-size: 0.46rem;
    line-height: 0.61rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap {
  position: relative;
  margin: 1.04rem auto 0;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap {
    width: 100%;
    margin: 1.07rem auto 0;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 4.96rem;
  background: -webkit-linear-gradient(right, rgba(239, 248, 248, 0) 0%, #EFF8F8 100%);
  background: linear-gradient(270deg, rgba(239, 248, 248, 0) 0%, #EFF8F8 100%);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap::before {
    display: none;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  height: 100%;
  width: 4.96rem;
  background: -webkit-linear-gradient(left, rgba(239, 248, 248, 0) 0%, #EFF8F8 100%);
  background: linear-gradient(90deg, rgba(239, 248, 248, 0) 0%, #EFF8F8 100%);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap::after {
    display: none;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  width: 8.96rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide {
    width: 5.34rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box {
  padding: 0.7rem 1.08rem 0.82rem 0.64rem;
  border-radius: 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;
  height: 100%;
  background-color: #fff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box {
    padding: 0.43rem;
    border-radius: 0.29rem;
    border: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box {
  width: 100%;
  padding-top: 0;
  width: 3.76rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box {
    width: 100%;
    padding-top: 0.67rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box .name {
  color: var(--sk-global-color);
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box .name {
    width: 3.05rem;
    font-size: 0.36rem;
    line-height: 0.43rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box .position {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box .position {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box .card-text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .left-box .card-text {
    margin-top: 0.58rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .right-box {
  width: 2.32rem;
  height: 2.32rem;
  position: relative;
  -webkit-transform: translate(0.04rem, 0.04rem);
      -ms-transform: translate(0.04rem, 0.04rem);
          transform: translate(0.04rem, 0.04rem);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .right-box {
    width: 2rem;
    height: 2rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .right-box .img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .right-box .bg-url {
  position: absolute;
  max-width: none;
  width: 100%;
  height: 100%;
  top: calc(50% + 0.16rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .employee-swiper .swiper-wrapper .swiper-slide .card-box .right-box .bg-url {
    top: calc(50% + 0.08rem);
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination {
  margin: 0.28rem auto 0;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 0.28rem;
  padding: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination {
    margin: 0.5rem auto 0;
    border-radius: 0.53rem;
    padding: 0.15rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination .swiper-pagination-bullet {
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 0.04rem;
  background: rgba(19, 37, 40, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #132528;
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.46rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination .swiper-pagination-bullet:not(:first-child) {
  margin-left: 0.08rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .pagination .swiper-pagination-bullet:not(:first-child) {
    margin-left: 0.15rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-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) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn {
    margin-top: 0.43rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev,
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next {
  margin: 0 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev,
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev.swiper-button-disabled,
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  background: rgba(19, 37, 40, 0.1);
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev .icon,
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev .icon,
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next .icon {
    width: 0.31rem;
    height: 0.31rem;
  }
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev .icon path,
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next .icon path {
  stroke: #132528;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: #132528;
}
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover path,
.career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover path {
  stroke: #fff;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-prev {
    left: 0.46rem;
  }
}
@media screen and (max-width: 800px) {
  .career-page .page-main .employee-stories-section .card-box .swiper-wrap .swiper-btn .btn-next {
    right: 0.46rem;
  }
}
.career-page .page-main .get-to-know-our-team-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section {
    margin-top: 0.92rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .text-wrap {
  text-align: center;
  max-width: 8.96rem;
  margin: 0 auto;
}
.career-page .page-main .get-to-know-our-team-section .text-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .text-wrap .h2 {
    font-size: 0.46rem;
    line-height: 0.61rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .text-wrap .text-box {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .text-wrap .text-box {
    margin-top: 1.07rem;
    font-size: 0.27rem;
    line-height: 0.46rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .card-wrap {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .card-wrap {
    margin-top: 0.61rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list {
  margin: -0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item {
  margin: 0.08rem;
  width: calc(33.3333333333% - 0.16rem);
  padding: 0.24rem;
  border-radius: 0.16rem;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item {
    width: 100%;
    border-radius: 0.31rem;
    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.31rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item:hover {
  border-color: var(--sk-global-color);
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item:hover .title {
  color: var(--sk-global-color);
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item:hover .icon-box {
  background: var(--sk-global-color);
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item:hover .icon-box .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item .title {
    font-size: 0.31rem;
    line-height: 0.61rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item .icon-box {
  margin-top: 0.4rem;
  width: 0.32rem;
  height: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(19, 37, 40, 0.05);
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item .icon-box {
    margin-top: 0;
    width: 0.61rem;
    height: 0.61rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item .icon-box .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .card-wrap .card-list .card-item .icon-box .icon {
    width: 0.31rem;
    height: 0.31rem;
  }
}
.career-page .page-main .get-to-know-our-team-section .card-wrap .btn-box {
  margin-top: 0.64rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .get-to-know-our-team-section .card-wrap .btn-box {
    margin-top: 0.92rem;
  }
}
.career-page .page-main .card-list-section {
  margin-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section {
    margin-top: 1.22rem;
    padding-bottom: 1.22rem;
  }
}
.career-page .page-main .card-list-section .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.08rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .card-list {
    margin: -0.15rem;
  }
}
.career-page .page-main .card-list-section .card-list .card-item {
  margin: 0.08rem;
  width: calc(50% - 0.16rem);
  height: 5.6rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  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;
  --color: #fff;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .card-list .card-item {
    margin: 0.15rem;
    width: 100%;
    height: 6.56rem;
    border-radius: 0.46rem;
  }
}
.career-page .page-main .card-list-section .card-list .card-item:hover .img-bg {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.career-page .page-main .card-list-section .card-list .card-item:hover .cell-box .arrow-inner {
  background: var(--sk-global-color);
}
.career-page .page-main .card-list-section .card-list .card-item:hover .cell-box .arrow-inner .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.career-page .page-main .card-list-section .card-list .card-item .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.career-page .page-main .card-list-section .card-list .card-item .cell-box {
  padding: 0.32rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(80px);
  width: 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) {
  .career-page .page-main .card-list-section .card-list .card-item .cell-box {
    padding: 0.31rem 0.31rem 0.46rem 0.46rem;
  }
}
.career-page .page-main .card-list-section .card-list .card-item .cell-box .card-text {
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .card-list .card-item .cell-box .card-text {
    width: 4.27rem;
  }
}
.career-page .page-main .card-list-section .card-list .card-item .cell-box .card-text .card-text-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .card-list .card-item .cell-box .card-text .card-text-title {
    font-size: 0.31rem;
    line-height: 0.61rem;
  }
}
.career-page .page-main .card-list-section .card-list .card-item .cell-box .card-text .card-text-text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .card-list .card-item .cell-box .card-text .card-text-text {
    margin-top: 0;
    font-size: 0.23rem;
    line-height: 0.31rem;
  }
}
.career-page .page-main .card-list-section .card-list .card-item .cell-box .arrow-inner {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 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;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .card-list .card-item .cell-box .arrow-inner {
    width: 0.61rem;
    height: 0.61rem;
  }
}
.career-page .page-main .card-list-section .card-list .card-item .cell-box .arrow-inner .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .card-list .card-item .cell-box .arrow-inner .icon {
    width: 0.31rem;
    height: 0.31rem;
  }
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  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;
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper.show {
  opacity: 1;
  visibility: visible;
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper {
  padding: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  width: 4.4rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper {
    padding: 0.43rem;
    border-radius: 0.43rem;
    width: 6.92rem;
  }
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .close-box {
  position: absolute;
  top: 0.08rem;
  right: 0.08rem;
  width: 0.4rem;
  height: 0.4rem;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 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;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .close-box {
    top: 0.14rem;
    right: 0.14rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .close-box:hover {
  background: rgba(19, 37, 40, 0.2);
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .close-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .close-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .reminder-title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .reminder-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .reminder-text {
  margin-top: 0.32rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .career-page .page-main .card-list-section .warm-reminder_dialog__wrapper .dialog__wrapper .reminder-text {
    margin-top: 0.43rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.pagination_wrapper {
  margin-top: 0.65rem;
  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_wrapper.flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper.flex-end {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  .pagination_wrapper {
    margin-top: 0.56rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pagination_wrapper .pagination_warp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.04rem 0.08rem;
  background: #FFFFFF;
  border-radius: 0.48rem;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .pagination_warp {
    padding: 0.07rem 0.14rem;
    border-radius: 0.87rem;
  }
}
.pagination_wrapper .pagination_warp .next,
.pagination_wrapper .pagination_warp .prev {
  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;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .pagination_warp .next,
  .pagination_wrapper .pagination_warp .prev {
    width: 0.72rem;
    height: 0.72rem;
  }
}
.pagination_wrapper .pagination_warp .next.on,
.pagination_wrapper .pagination_warp .prev.on {
  cursor: pointer;
}
.pagination_wrapper .pagination_warp .next.on .icon,
.pagination_wrapper .pagination_warp .prev.on .icon {
  opacity: 1;
}
.pagination_wrapper .pagination_warp .next.on .icon path,
.pagination_wrapper .pagination_warp .prev.on .icon path {
  stroke-opacity: 1;
}
.pagination_wrapper .pagination_warp .next.on:hover path,
.pagination_wrapper .pagination_warp .prev.on:hover path {
  stroke: var(--sk-global-color);
}
.pagination_wrapper .pagination_warp .next .icon,
.pagination_wrapper .pagination_warp .prev .icon {
  height: 0.24rem;
  width: 0.24rem;
  opacity: 0.6;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .pagination_warp .next .icon,
  .pagination_wrapper .pagination_warp .prev .icon {
    height: 0.43rem;
    width: 0.43rem;
  }
}
.pagination_wrapper .pagination_warp .next .icon path,
.pagination_wrapper .pagination_warp .prev .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination_wrapper .pagination_warp .pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pagination_wrapper .pagination_warp .pager .number {
  cursor: pointer;
  height: 0.4rem;
  min-width: 0.4rem;
  padding: 0 0.06rem;
  border-radius: 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;
  font-size: 0.14rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .pagination_warp .pager .number {
    min-width: 0.72rem;
    height: 0.72rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 0.14rem;
  }
}
.pagination_wrapper .pagination_warp .pager .number.on {
  background: var(--sk-global-color);
  color: #fff;
}
@media screen and (min-width: 800px) {
  .pagination_wrapper .pagination_warp .pager .number:hover {
    background: var(--sk-global-color);
    color: #fff;
  }
}

.careers-page .page-main {
  padding-top: 2.08rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main {
    padding-top: 1.73rem;
    padding-bottom: 1.15rem;
  }
}
.careers-page .page-main .h1 {
  font-size: 0.96rem;
  line-height: 0.96rem;
  text-align: center;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
  }
}
.careers-page .page-main .input-box {
  margin-top: 0.64rem;
  position: relative;
}
.careers-page .page-main .input-box input::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-page .page-main .input-box input::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-page .page-main .input-box input:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-page .page-main .input-box input:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-page .page-main .input-box textarea::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-page .page-main .input-box textarea::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-page .page-main .input-box textarea:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-page .page-main .input-box textarea:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .input-box {
    margin-top: 0.58rem;
  }
}
.careers-page .page-main .input-box input {
  width: 100%;
  height: 0.56rem;
  background: #FFFFFF;
  border-radius: 0.48rem;
  padding: 0 1.1rem 0 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .input-box input {
    height: 0.87rem;
    border-radius: 0.87rem;
    padding: 0 1.6rem 0 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-page .page-main .input-box .clear {
  cursor: pointer;
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 0.48rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.72rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .input-box .clear {
    width: 0.43rem;
    height: 0.43rem;
    right: 1rem;
  }
}
.careers-page .page-main .input-box .clear .icon {
  width: 100%;
  height: 100%;
}
.careers-page .page-main .input-box .icon-box {
  position: absolute;
  right: 0.04rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 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;
  cursor: pointer;
  background: var(--sk-global-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .input-box .icon-box {
    right: 0.07rem;
    width: 0.72rem;
    height: 0.72rem;
  }
}
.careers-page .page-main .input-box .icon-box:hover {
  opacity: 0.8;
}
.careers-page .page-main .input-box .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .input-box .icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.careers-page .page-main .con {
  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;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con {
    margin-top: 0.58rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.careers-page .page-main .con .filter-w {
  width: 4.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w {
    width: 100%;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 1.2rem;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-h .filter-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-h .filter-title .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-h .filter-title .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-h .filter-title .title-text {
  margin-left: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-h .filter-title .title-text {
    margin-left: 0.14rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-h .filter-title .statistics {
  margin-left: 0.14rem;
  background-color: var(--sk-global-color);
  height: 0.43rem;
  min-width: 0.43rem;
  border-radius: 0.58rem;
  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.22rem;
  line-height: 0.29rem;
  padding: 0 0.12rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap {
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap.show {
    opacity: 1;
    visibility: visible;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content {
  margin-top: 0.32rem;
  padding: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content {
    margin-top: 0;
    padding: 0.43rem 0.43rem 0.72rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #EFF8F8;
    border-radius: 0.43rem 0.43rem 0px 0px;
  }
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .dialog-h .dialog-title {
    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;
  }
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .dialog-h .dialog-title .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .dialog-h .dialog-title .title-text {
    margin-left: 0.14rem;
    font-family: var(--sk-font-SemiBold);
  }
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .dialog-h .clone-box {
    position: absolute;
    top: 0.29rem;
    right: 0.29rem;
    width: 0.72rem;
    height: 0.72rem;
    background: #FFFFFF;
    border-radius: 0.87rem;
    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;
  }
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .dialog-h .clone-box .clone-img {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .filter-btn-list-wrap {
  margin-top: 0.43rem;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .filter-btn-list-wrap .filter-btn-list {
  margin: -0.07rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .filter-btn-list-wrap .filter-btn-list .item {
  margin: 0.07rem;
  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;
  padding: 0 0.14rem 0 0.29rem;
  border: 1px solid #132528;
  border-radius: 0.58rem;
  font-size: 0.25rem;
  line-height: 0.43rem;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .filter-btn-list-wrap .filter-btn-list .item .clone-img {
  margin-left: 0.14rem;
  width: 0.43rem;
  height: 0.43rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content {
    margin-top: 0.43rem;
    background: #FFFFFF;
    border-radius: 0.43rem;
    padding: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item:not(:last-child) {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item:not(:last-child) {
    padding-bottom: 0.43rem;
    margin-bottom: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item.show .filter-item-title .icon-box .icon:first-child {
  display: block;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item.show .filter-item-title .icon-box .icon:last-child {
  display: none;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item.show .filter-item-content {
  height: auto;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title {
  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;
  cursor: pointer;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title .item-title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title .item-title {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title .icon-box {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title .icon-box {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title .icon-box .icon {
  width: 100%;
  width: 100%;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title .icon-box .icon:first-child {
  display: none;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-title .icon-box .icon:last-child {
  display: block;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content {
  height: 0;
  overflow: hidden;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item:first-child {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item:first-child {
    margin-top: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item:not(:last-child) {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item:not(:last-child) {
    margin-bottom: 0.29rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .check-box {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .check-box {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .check-box.on .icon:first-child {
  display: block;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .check-box.on .icon:last-child {
  display: none;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .check-box .icon {
  width: 100%;
  height: 100%;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .check-box .icon:first-child {
  display: none;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .check-box .icon:last-child {
  display: block;
}
.careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .filter-item-content-item-title {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .filter-w .filter-wrap .filter-content-wrap .filter-content .card-content .filter-item .filter-item-content .filter-item-content-item .filter-item-content-item-title {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-page .page-main .con .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box {
    padding-left: 0;
    margin-top: 0.58rem;
  }
}
.careers-page .page-main .con .right-box .count-title {
  font-size: 0.24rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box .count-title {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
}
.careers-page .page-main .con .right-box .card-list {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box .card-list {
    margin-top: 0.29rem;
  }
}
.careers-page .page-main .con .right-box .card-list .card-item {
  display: block;
  padding: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box .card-list .card-item {
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
}
.careers-page .page-main .con .right-box .card-list .card-item:hover .title {
  color: var(--sk-global-color);
}
.careers-page .page-main .con .right-box .card-list .card-item:not(:last-child) {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box .card-list .card-item:not(:last-child) {
    margin-bottom: 0.14rem;
  }
}
.careers-page .page-main .con .right-box .card-list .card-item .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box .card-list .card-item .title {
    font-size: 0.32rem;
    line-height: 0.58rem;
  }
}
.careers-page .page-main .con .right-box .card-list .card-item .tag {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box .card-list .card-item .tag {
    margin-top: 0;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-page .page-main .con .right-box .card-list .card-item .text {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .careers-page .page-main .con .right-box .card-list .card-item .text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-page .page-main .con .right-box .card-list .card-item .text .p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.careers-page .page-main .con .right-box .card-list .card-item .text .p span {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.job-details-page .page-main {
  padding-top: 1.52rem;
  padding-bottom: 1.6rem;
  max-width: 12rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main {
    padding: 1.59rem 0 1.15rem;
  }
}
.job-details-page .page-main .return-box {
  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;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .return-box {
    margin-left: 0.43rem;
  }
}
.job-details-page .page-main .return-box:hover .icon-box {
  background-color: var(--sk-global-color);
}
.job-details-page .page-main .return-box:hover .icon-box .img {
  -webkit-animation: icon-forward-left 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward-left 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.job-details-page .page-main .return-box .icon-box {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  background: #FFFFFF;
  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) {
  .job-details-page .page-main .return-box .icon-box {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.job-details-page .page-main .return-box .icon-box .img {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .return-box .icon-box .img {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.job-details-page .page-main .return-box .return-text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .return-box .return-text {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.job-details-page .page-main .card-wrapper {
  margin-top: 0.32rem;
  border-radius: 0.24rem;
  background: #FFFFFF;
  padding: 0.96rem 1.52rem 1.2rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper {
    border-radius: 0.43rem;
    padding: 0.58rem 0.43rem 0.87rem;
  }
}
.job-details-page .page-main .card-wrapper .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .h1 {
    font-size: 0.58rem;
    line-height: 0.72rem;
  }
}
.job-details-page .page-main .card-wrapper .tag-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) {
  .job-details-page .page-main .card-wrapper .tag-list {
    margin-top: 0.14rem;
    row-gap: 0.14rem;
    -webkit-column-gap: 0.29rem;
       -moz-column-gap: 0.29rem;
            column-gap: 0.29rem;
  }
}
.job-details-page .page-main .card-wrapper .tag-list .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.32rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .tag-list .tag {
    margin-right: 0;
  }
}
.job-details-page .page-main .card-wrapper .tag-list .tag .label-icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .tag-list .tag .label-icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.job-details-page .page-main .card-wrapper .tag-list .tag .tag-value {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .tag-list .tag .tag-value {
    margin-left: 0.14rem;
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.job-details-page .page-main .card-wrapper .location-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;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .location-box {
    margin-top: 0.43rem;
  }
}
.job-details-page .page-main .card-wrapper .location-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .location-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.job-details-page .page-main .card-wrapper .location-box .location-text {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .location-box .location-text {
    margin-left: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.job-details-page .page-main .card-wrapper .tag-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .tag-text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.job-details-page .page-main .card-wrapper .tag-text .m {
  font-family: var(--sk-font-Medium);
}
.job-details-page .page-main .card-wrapper .hr {
  height: 1px;
  background-color: #E6E6E6;
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .hr {
    margin-top: 0.58rem;
    margin-bottom: -0.29rem;
  }
}
.job-details-page .page-main .card-wrapper .item-box {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .item-box {
    margin-top: 0.87rem;
  }
}
.job-details-page .page-main .card-wrapper .item-box .label-text {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .item-box .label-text {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
}
.job-details-page .page-main .card-wrapper .item-box .html-box {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .item-box .html-box {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.58rem;
  }
}
.job-details-page .page-main .card-wrapper .item-box .html-box video {
  max-width: 100%;
}
.job-details-page .page-main .card-wrapper .item-box .html-box 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.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.job-details-page .page-main .card-wrapper .item-box .html-box ul li {
  display: list-item;
  list-style-type: inherit;
}
.job-details-page .page-main .card-wrapper .item-box .html-box a {
  color: var(--sk-global-color);
  text-decoration: underline;
}
.job-details-page .page-main .card-wrapper .btn__box {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .card-wrapper .btn__box {
    margin-top: 0.87rem;
  }
}
.job-details-page .page-main .similar-job-vacancies {
  margin-top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies {
    margin-top: 0.87rem;
    padding: 0 0.43rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .section-label {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .section-label {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list {
    margin-top: 0.29rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item {
  display: block;
  padding: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item {
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item:hover .title {
  color: var(--sk-global-color);
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item:not(:last-child) {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item:not(:last-child) {
    margin-bottom: 0.29rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item .title {
    font-size: 0.32rem;
    line-height: 0.58rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-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;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-list {
    margin-top: 0.14rem;
    row-gap: 0.14rem;
    -webkit-column-gap: 0.29rem;
       -moz-column-gap: 0.29rem;
            column-gap: 0.29rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-list .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.32rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-list .tag {
    margin-right: 0;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-list .tag .label-icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-list .tag .label-icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-list .tag .tag-value {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item .tag-list .tag .tag-value {
    margin-left: 0.14rem;
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .text {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .job-details-page .page-main .similar-job-vacancies .card-list .card-item .text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .text .p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.job-details-page .page-main .similar-job-vacancies .card-list .card-item .text .p span {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.list-page .page-main {
  padding-top: 2.08rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .list-page .page-main {
    padding-top: 1.73rem;
    padding-bottom: 1.15rem;
  }
}
.list-page .page-main .h1 {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
  }
}
.list-page .page-main .page-header {
  margin-top: 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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header {
    margin-top: 0.72rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-page .page-main .page-header .class-list {
  margin: -0.08rem;
  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) {
  .list-page .page-main .page-header .class-list {
    margin: -0.07rem;
  }
}
.list-page .page-main .page-header .class-list .class {
  margin: 0.08rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  border: 1px solid #132528;
  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.24rem;
  cursor: pointer;
  padding: 0 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .class-list .class {
    margin: 0.07rem;
    height: 0.72rem;
    border-radius: 0.87rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 0.43rem;
  }
}
.list-page .page-main .page-header .class-list .class.on {
  background: #132528;
  color: #fff;
  font-family: var(--sk-font-Medium);
}
.list-page .page-main .page-header .class-list .class:hover {
  background: #132528;
  color: #fff;
}
.list-page .page-main .page-header .filter-list {
  margin: -0.08rem;
  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) {
  .list-page .page-main .page-header .filter-list {
    margin: -0.07rem;
    margin-top: 0.22rem;
  }
}
.list-page .page-main .page-header .filter-list .select-box {
  margin: 0.08rem;
  min-width: 1.36rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .filter-list .select-box {
    margin: 0.07rem;
    min-width: 2.31rem;
  }
}
.list-page .page-main .page-header .filter-list .select-box.on {
  z-index: 2;
}
.list-page .page-main .page-header .filter-list .select-box.on .cell-box .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.list-page .page-main .page-header .filter-list .select-box .cell-box {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.16rem 0 0.24rem;
  border: 1px solid rgba(19, 37, 40, 0.4);
  border-radius: 0.48rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .filter-list .select-box .cell-box {
    height: 0.72rem;
    padding: 0 0.29rem 0 0.43rem;
    border-radius: 0.72rem;
  }
}
.list-page .page-main .page-header .filter-list .select-box .cell-box .input-value {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .filter-list .select-box .cell-box .input-value {
    font-size: 0.25rem;
    line-height: 0.43rem;
    margin-right: 0.14rem;
  }
}
.list-page .page-main .page-header .filter-list .select-box .cell-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .filter-list .select-box .cell-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.list-page .page-main .page-header .filter-list .select-box .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.1rem;
  left: 0;
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
  background: rgba(19, 37, 40, 0.05);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .filter-list .select-box .-select-layer {
    bottom: -0.14rem;
    box-shadow: 0 0.08rem 0.24rem 0 rgba(0, 0, 0, 0.1);
  }
}
.list-page .page-main .page-header .filter-list .select-box .-select-layer .-inner {
  background: #FFFFFF;
  border-radius: 0.24rem;
  padding: 0.08rem;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .filter-list .select-box .-select-layer .-inner {
    border-radius: 0.15rem;
    padding: 0.16rem;
  }
}
.list-page .page-main .page-header .filter-list .select-box .-select-layer .-inner dl dd {
  cursor: pointer;
  font-size: 0.14rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.08rem 0.16rem;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .page-header .filter-list .select-box .-select-layer .-inner dl dd {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.list-page .page-main .page-header .filter-list .select-box .-select-layer .-inner dl dd.on {
  background: #EFF8F8;
  color: var(--sk-global-color);
}
.list-page .page-main .page-header .filter-list .select-box .-select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.list-page .page-main .page-header .filter-list .select-box .-select-layer .-inner dl dd:hover {
  background: #EFF8F8;
}
.list-page .page-main .pagination_wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-page .page-main .empty-wrap {
  margin-top: 2.24rem;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .empty-wrap {
    margin-top: 1.73rem;
  }
}
.list-page .page-main .empty-wrap .empty-box {
  text-align: center;
}
.list-page .page-main .empty-wrap .empty-box .empty-img {
  width: 2rem;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .empty-wrap .empty-box .empty-img {
    width: 2.88rem;
  }
}
.list-page .page-main .empty-wrap .empty-box .empty-text {
  margin-top: 0.16rem;
  margin-bottom: 1.6rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #132528;
}
@media screen and (max-width: 800px) {
  .list-page .page-main .empty-wrap .empty-box .empty-text {
    margin-top: 0.29rem;
    margin-bottom: 3.61rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.news-page .card-list-wrap {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap {
    margin-top: 0.58rem;
  }
}
.news-page .card-list-wrap .card-list {
  margin: -0.32rem -0.08rem;
  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 .card-list-wrap .card-list {
    margin: -0.15rem;
  }
}
.news-page .card-list-wrap .card-list .card-box {
  margin: 0.32rem 0.08rem;
  width: calc(33.3333333333% - 0.16rem);
  background: #FFFFFF;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box {
    margin: 0.15rem;
    width: 100%;
    border-radius: 0.43rem;
  }
}
.news-page .card-list-wrap .card-list .card-box:hover .img-box .img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.news-page .card-list-wrap .card-list .card-box:hover .card-con-box .card-title {
  color: var(--sk-global-color);
}
.news-page .card-list-wrap .card-list .card-box:hover .card-con-box .date-icon .icon-box {
  background-color: var(--sk-global-color);
}
.news-page .card-list-wrap .card-list .card-box:hover .card-con-box .date-icon .icon-box .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.news-page .card-list-wrap .card-list .card-box .img-box {
  height: 3.36rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .img-box {
    height: 3.75rem;
  }
}
.news-page .card-list-wrap .card-list .card-box .img-box .img {
  height: 100%;
  width: 100%;
}
.news-page .card-list-wrap .card-list .card-box .card-con-box {
  padding: 0.4rem;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .card-con-box {
    padding: 0.43rem;
  }
}
.news-page .card-list-wrap .card-list .card-box .card-con-box .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .card-con-box .card-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon {
  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;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon {
    margin-top: 0.58rem;
  }
}
.news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .left-data {
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
.news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .left-data .day {
  font-size: 0.24rem;
  line-height: 0.32rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .left-data .day {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .left-data .year {
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: rgba(19, 37, 40, 0.4);
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .left-data .year {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .icon-box {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(19, 37, 40, 0.05);
  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.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .icon-box {
    width: 0.72rem;
    height: 0.72rem;
  }
}
.news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .icon-box .icon {
  width: 0.16rem;
  height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .news-page .card-list-wrap .card-list .card-box .card-con-box .date-icon .icon-box .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}

.events-page .events-card-wrap {
  margin-top: 0.64rem;
  padding: 0.96rem 1.52rem 1.2rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap {
    background-color: transparent;
    margin-top: 0.58rem;
    padding: 0;
  }
}
.events-page .events-card-wrap .card-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0.43rem;
    overflow: hidden;
    background: #FFFFFF;
  }
}
.events-page .events-card-wrap .card-box:hover .img-box .img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.events-page .events-card-wrap .card-box:hover .card-con .con-text .card-title {
  color: var(--sk-global-color);
}
.events-page .events-card-wrap .card-box:hover .card-con .icon-box {
  background-color: var(--sk-global-color);
}
.events-page .events-card-wrap .card-box:hover .card-con .icon-box .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.events-page .events-card-wrap .card-box:not(:last-child) {
  margin-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box:not(:last-child) {
    margin-bottom: 0.43rem;
  }
}
.events-page .events-card-wrap .card-box .img-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 4.4rem;
  height: 2.8rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .img-box {
    width: 100%;
    border-radius: 0;
    height: 3.75rem;
  }
}
.events-page .events-card-wrap .card-box .img-box .img {
  width: 100%;
  height: 100%;
}
.events-page .events-card-wrap .card-box .card-con {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 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-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .card-con {
    padding: 0.43rem;
  }
}
.events-page .events-card-wrap .card-box .card-con .con-text .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .card-con .con-text .card-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.events-page .events-card-wrap .card-box .card-con .con-text .tag-list {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .card-con .con-text .tag-list {
    margin-top: 0.43rem;
  }
}
.events-page .events-card-wrap .card-box .card-con .con-text .tag-list .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.events-page .events-card-wrap .card-box .card-con .con-text .tag-list .tag:not(:first-child) {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .card-con .con-text .tag-list .tag:not(:first-child) {
    margin-top: 0.14rem;
  }
}
.events-page .events-card-wrap .card-box .card-con .con-text .tag-list .tag .icon {
  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 .events-card-wrap .card-box .card-con .con-text .tag-list .tag .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.events-page .events-card-wrap .card-box .card-con .con-text .tag-list .tag .tag-text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .card-con .con-text .tag-list .tag .tag-text {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.events-page .events-card-wrap .card-box .card-con .con-text .tag-list .tag .tag-text.b {
  font-family: var(--sk-font-SemiBold);
}
.events-page .events-card-wrap .card-box .card-con .icon-box {
  width: 0.4rem;
  height: 0.4rem;
  background: rgba(19, 37, 40, 0.05);
  border-radius: 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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .card-con .icon-box {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
    margin-top: 0.58rem;
  }
}
.events-page .events-card-wrap .card-box .card-con .icon-box .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .events-page .events-card-wrap .card-box .card-con .icon-box .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}

.events-details-page .page-main {
  padding-top: 1.52rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main {
    padding: 1.59rem 0 4.04rem;
  }
}
.events-details-page .page-main .page-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;
  position: relative;
}
.events-details-page .page-main .page-wrapper .content-box {
  max-width: 12rem;
  width: 100%;
}
.events-details-page .page-main .page-wrapper .content-box .return-box {
  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;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .return-box {
    margin-left: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .return-box:hover .icon-box {
  background-color: var(--sk-global-color);
}
.events-details-page .page-main .page-wrapper .content-box .return-box:hover .icon-box .img {
  -webkit-animation: icon-forward-left 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward-left 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.events-details-page .page-main .page-wrapper .content-box .return-box .icon-box {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  background: #FFFFFF;
  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-details-page .page-main .page-wrapper .content-box .return-box .icon-box {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .return-box .icon-box .img {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .return-box .icon-box .img {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .return-box .return-text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .return-box .return-text {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper {
  margin-top: 0.32rem;
  border-radius: 0.24rem;
  background: #FFFFFF;
  padding: 0.96rem 1.52rem 1.2rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper {
    margin-top: 0.43rem;
    border-radius: 0.43rem;
    padding: 0.58rem 0.43rem 0.87rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .h1 {
    font-size: 0.58rem;
    line-height: 0.72rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper {
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper {
    margin-top: 0.58rem;
    padding-bottom: 0.58rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box:not(:last-child) {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box:not(:last-child) {
    margin-bottom: 0.14rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box .tag-text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box .tag-text {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-list .tag-box .tag-text.m {
  font-family: var(--sk-font-Medium);
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-date-box {
  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;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-date-box {
    margin-top: 0;
    margin-bottom: -0.29rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-date-box .tag {
  padding: 0.04rem 0.08rem;
  background: #EFF8F8;
  border-radius: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-date-box .tag {
    padding: 0.07rem 0.14rem;
    border-radius: 0.14rem;
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-date-box .date {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.8);
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .tag-date-box .date {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box {
  padding: 0.04rem;
  background: #EFF8F8;
  border-radius: 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;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box {
    margin-top: 0.58rem;
    border-radius: 0.87rem;
    padding: 0.07rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .label-text {
  margin: 0 0.24rem 0 0.2rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .label-text {
    margin: 0 0.58rem 0 0.36rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .icon-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-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .icon-link-list .icon-link {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 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) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .icon-link-list .icon-link {
    width: 0.72rem;
    height: 0.72rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .icon-link-list .icon-link:hover {
  background-color: #fff;
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .icon-link-list .icon-link .icon {
  height: 0.24rem;
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .date-wrapper .share-box .icon-link-list .icon-link .icon {
    height: 0.43rem;
    width: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .html-box {
  margin-top: 0.48rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .content-box .card-wrapper .html-box {
    margin-top: 0.58rem;
    font-size: 0.25rem;
    line-height: 0.58rem;
  }
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .html-box video {
  max-width: 100%;
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .html-box 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.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.events-details-page .page-main .page-wrapper .content-box .card-wrapper .html-box ul li {
  display: list-item;
  list-style-type: inherit;
}
.events-details-page .page-main .page-wrapper .link-button {
  width: 2.4rem;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .link-button {
    width: 3.17rem;
    position: absolute;
    bottom: 0;
    left: 0.43rem;
    -webkit-transform: translateY(calc(100% + 0.43rem));
        -ms-transform: translateY(calc(100% + 0.43rem));
            transform: translateY(calc(100% + 0.43rem));
  }
}
.events-details-page .page-main .page-wrapper .link-button.right-box {
  text-align: right;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .link-button.right-box {
    left: auto;
    right: 0.43rem;
  }
}
.events-details-page .page-main .page-wrapper .link-button .navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 45%;
  display: block;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .link-button .navigation {
    position: static;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.events-details-page .page-main .page-wrapper .link-button .navigation:hover .img-box .img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.events-details-page .page-main .page-wrapper .link-button .navigation .img-box {
  width: 100%;
  height: 1.36rem;
  border-radius: 0.08rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .link-button .navigation .img-box {
    height: 1.88rem;
    border-radius: 0.14rem;
  }
}
.events-details-page .page-main .page-wrapper .link-button .navigation .img-box .img {
  height: 100%;
  width: 100%;
}
.events-details-page .page-main .page-wrapper .link-button .navigation .name {
  margin-top: 0.16rem;
  padding: 0 0.32rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
  letter-spacing: 2px;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .events-details-page .page-main .page-wrapper .link-button .navigation .name {
    margin-top: 0.14rem;
    padding: 0 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.technical-articles-page .page-main {
  padding-top: 2.08rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main {
    padding-top: 1.73rem;
    padding-bottom: 1.15rem;
  }
}
.technical-articles-page .page-main .h1 {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
  }
}
.technical-articles-page .page-main .class-warp {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .class-warp {
    margin-top: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: -0.43rem;
    margin-right: -0.43rem;
    width: calc(100% + 0.86rem);
    padding: 0 0.43rem;
  }
}
.technical-articles-page .page-main .class-warp .class-list {
  margin: -0.08rem;
  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;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .class-warp .class-list {
    margin: -0.07rem;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.technical-articles-page .page-main .class-warp .class-list .class {
  margin: 0.08rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  border: 1px solid #132528;
  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.24rem;
  cursor: pointer;
  padding: 0 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .class-warp .class-list .class {
    margin: 0.07rem;
    height: 0.72rem;
    border-radius: 0.87rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 0.43rem;
  }
}
.technical-articles-page .page-main .class-warp .class-list .class.on {
  background: #132528;
  color: #fff;
  font-family: var(--sk-font-Medium);
}
.technical-articles-page .page-main .class-warp .class-list .class:hover {
  background: #132528;
  color: #fff;
}
.technical-articles-page .page-main .card-warp {
  margin-top: 0.64rem;
  padding: 0.96rem 1.52rem 1.2rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp {
    margin-top: 0.58rem;
    margin-left: -0.43rem;
    margin-right: -0.43rem;
    border-radius: 0.43rem;
    padding: 0.43rem 0.43rem 0.87rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item:not(:last-child) {
  margin-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item:not(:last-child) {
    margin-bottom: 0.87rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item:hover .img-box .img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.technical-articles-page .page-main .card-warp .card-list .card-item:hover .con-box .card-title {
  color: var(--sk-global-color);
}
.technical-articles-page .page-main .card-warp .card-list .card-item:hover .con-box .icon-box {
  background-color: var(--sk-global-color);
}
.technical-articles-page .page-main .card-warp .card-list .card-item:hover .con-box .icon-box .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.technical-articles-page .page-main .card-warp .card-list .card-item .date {
  width: 3.04rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: 0;
      -ms-flex-direction: 0;
          flex-direction: 0;
  padding-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .date {
    position: absolute;
    bottom: 0;
    left: 0.43rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item .date .month-day {
  font-size: 0.32rem;
  line-height: 0.4rem;
  letter-spacing: 3px;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .date .month-day {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item .date .year {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.8);
  font-family: var(--sk-EN-font-Regular);
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .date .year {
    margin-top: 0;
    font-size: 0.22rem;
    line-height: 0.29rem;
    letter-spacing: 2px;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item .img-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: 0;
      -ms-flex-direction: 0;
          flex-direction: 0;
  width: 4.4rem;
  height: 2.8rem;
  border-radius: 0.24rem;
  border: 1px solid rgba(19, 37, 40, 0.2);
  padding: 0.32rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .img-box {
    width: 100%;
    height: 3.75rem;
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.technical-articles-page .page-main .card-warp .card-list .card-item .con-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.16rem 0 0.16rem 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-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .con-box {
    padding: 0.29rem 0.43rem 1.3rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item .con-box .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  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) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .con-box .card-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item .con-box .icon-box {
  width: 0.4rem;
  height: 0.4rem;
  background: rgba(19, 37, 40, 0.05);
  border-radius: 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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .con-box .icon-box {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
    margin-top: 0.58rem;
    position: absolute;
    bottom: 0;
    right: 0.43rem;
  }
}
.technical-articles-page .page-main .card-warp .card-list .card-item .con-box .icon-box .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .technical-articles-page .page-main .card-warp .card-list .card-item .con-box .icon-box .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}

.download-page .page-main {
  padding-top: 2.08rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .download-page .page-main {
    padding-top: 1.73rem;
    padding-bottom: 1.15rem;
  }
}
.download-page .page-main .h1 {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
  }
}
.download-page .page-main .class-warp {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .class-warp {
    margin-top: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: -0.43rem;
    margin-right: -0.43rem;
    width: calc(100% + 0.86rem);
    padding: 0 0.43rem;
  }
}
.download-page .page-main .class-warp .class-list {
  margin: -0.08rem;
  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;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .class-warp .class-list {
    margin: -0.07rem;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.download-page .page-main .class-warp .class-list .class {
  margin: 0.08rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  border: 1px solid #132528;
  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.24rem;
  cursor: pointer;
  padding: 0 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .class-warp .class-list .class {
    margin: 0.07rem;
    height: 0.72rem;
    border-radius: 0.87rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 0.43rem;
  }
}
.download-page .page-main .class-warp .class-list .class.on {
  background: #132528;
  color: #fff;
  font-family: var(--sk-font-Medium);
}
.download-page .page-main .class-warp .class-list .class:hover {
  background: #132528;
  color: #fff;
}
.download-page .page-main .conent-wrap {
  display: none;
}
.download-page .page-main .conent-wrap.show {
  display: block;
}
.download-page .page-main .conent-wrap .card-wrap {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .card-wrap {
    margin-top: 0.58rem;
  }
}
.download-page .page-main .conent-wrap .card-wrap .card-list {
  margin: -0.32rem -0.08rem;
  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) {
  .download-page .page-main .conent-wrap .card-wrap .card-list {
    margin: 0;
  }
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item {
  margin: 0.32rem 0.08rem;
  width: calc(33.3333333333% - 0.16rem);
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item {
    margin: 0;
    width: 100%;
  }
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item:not(:first-child) {
    margin-top: 0.87rem;
  }
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item:last-child {
    margin-bottom: 0.56rem;
  }
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item:hover .card-img .img-warp .img-mask {
  opacity: 1;
  visibility: visible;
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item .card-img {
  height: 5.92rem;
  background: #FFFFFF;
  border-radius: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item .card-img {
    height: 5.34rem;
    border-radius: 0.43rem;
  }
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item .card-img .img-warp {
  position: relative;
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item .card-img .img-warp .img-box .img {
  max-width: 4.16rem;
  max-height: 4.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item .card-img .img-warp .img-box .img {
    max-width: 4.18rem;
    max-height: 4.18rem;
  }
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item .card-img .img-warp .img-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  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;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item .card-img .img-warp .img-mask {
    opacity: 1;
    visibility: visible;
  }
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item .type {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item .type {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.download-page .page-main .conent-wrap .card-wrap .card-list .card-item .name {
  margin-top: 0.08rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  width: calc(100% - 0.64rem);
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .card-wrap .card-list .card-item .name {
    font-size: 0.29rem;
    line-height: 0.43rem;
    width: 100%;
  }
}
.download-page .page-main .conent-wrap .video-wrap {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap {
    margin-top: 0.58rem;
  }
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.32rem -0.08rem;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap .video-card-list {
    margin: 0;
  }
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card {
  margin: 0.32rem 0.08rem;
  width: calc(33.3333333333% - 0.16rem);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card {
    margin: 0;
    width: 100%;
  }
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card:not(:first-child) {
    margin-top: 0.87rem;
  }
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card:last-child {
    margin-bottom: 0.56rem;
  }
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card:hover .img-warp .card-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card:hover .img-warp .play-icon {
  opacity: 1;
  visibility: visible;
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card:hover .video-name {
  color: var(--sk-global-color);
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .img-warp {
  height: 3.36rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .img-warp {
    height: 3.75rem;
    border-radius: 0.43rem;
  }
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .img-warp .card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .img-warp .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.56rem;
  height: 0.56rem;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .img-warp .play-icon {
    width: 1rem;
    height: 1rem;
    opacity: 1;
    visibility: visible;
  }
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .img-warp .duration {
  position: absolute;
  color: #FFFFFF;
  z-index: 2;
  bottom: 0.08rem;
  right: 0.08rem;
  padding: 0.04rem 0.08rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.08rem;
  backdrop-filter: blur(40px);
  font-size: 0.12rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .img-warp .duration {
    bottom: 0.14rem;
    right: 0.14rem;
    padding: 0 0.14rem;
    border-radius: 0.14rem;
    font-size: 0.14rem;
    line-height: 0.29rem;
  }
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .video-name {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: calc(100% - 0.64rem);
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .video-name {
    margin-top: 0.29rem;
    font-size: 0.29rem;
    line-height: 0.58rem;
    width: 100%;
  }
}
.download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .video-text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  width: calc(100% - 0.64rem);
}
@media screen and (max-width: 800px) {
  .download-page .page-main .conent-wrap .video-wrap .video-card-list .video-card .video-text {
    margin-top: 0;
    font-size: 0.25rem;
    line-height: 0.43rem;
    width: 100%;
  }
}

.case-page .conent-section {
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .case-page .conent-section {
    padding-top: 1rem;
    padding-bottom: 1.15rem;
  }
}
.case-page .conent-section .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .case-page .conent-section .h2 {
    font-size: 0.46rem;
    line-height: 0.61rem;
  }
}
.case-page .conent-section .tag-wrapper {
  margin-top: 1.04rem;
}
.case-page .conent-section .tag-wrapper .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;
}
.case-page .conent-section .tag-wrapper .item:not(:first-child) {
  margin-top: 0.16rem;
}
.case-page .conent-section .tag-wrapper .item .tag-label {
  width: 1.52rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
.case-page .conent-section .tag-wrapper .item .tag-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;
}
.case-page .conent-section .tag-wrapper .item .tag-list .tag-item {
  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;
  padding: 0 0.24rem;
  border-radius: 0.48rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border: 1px solid #132528;
  margin-right: 0.16rem;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  cursor: pointer;
}
.case-page .conent-section .tag-wrapper .item .tag-list .tag-item:last-child {
  margin-right: 0;
}
.case-page .conent-section .tag-wrapper .item .tag-list .tag-item .icon {
  width: 0;
  height: 0.24rem;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  opacity: 0;
}
.case-page .conent-section .tag-wrapper .item .tag-list .tag-item.on {
  color: #FFFFFF;
  background: #132528;
  padding: 0 0.24rem 0 0.16rem;
}
.case-page .conent-section .tag-wrapper .item .tag-list .tag-item.on .icon {
  width: 0.24rem;
  margin-right: 0.08rem;
  opacity: 1;
}
.case-page .conent-section .filter-list {
  margin: -0.07rem;
  margin-top: 1rem;
  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;
}
.case-page .conent-section .filter-list .select-box {
  margin: 0.07rem;
  min-width: 2.02rem;
  position: relative;
}
.case-page .conent-section .filter-list .select-box.on {
  z-index: 2;
}
.case-page .conent-section .filter-list .select-box.on .cell-box .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.case-page .conent-section .filter-list .select-box .cell-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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.14rem 0 0.29rem;
  border: 1px solid rgba(19, 37, 40, 0.4);
  border-radius: 0.72rem;
  cursor: pointer;
}
.case-page .conent-section .filter-list .select-box .cell-box .input-value {
  font-size: 0.25rem;
  line-height: 0.43rem;
  margin-right: 0.14rem;
}
.case-page .conent-section .filter-list .select-box .cell-box .icon {
  width: 0.43rem;
  height: 0.43rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case-page .conent-section .filter-list .select-box .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.14rem;
  left: 0;
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
  background: rgba(19, 37, 40, 0.05);
  box-shadow: 0 0.08rem 0.24rem 0 rgba(0, 0, 0, 0.1);
}
.case-page .conent-section .filter-list .select-box .-select-layer .-inner {
  background: #EFF8F8;
  border-radius: 0.15rem;
  padding: 0.24rem 0.08rem 0.3rem 0.24rem;
}
.case-page .conent-section .filter-list .select-box .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Medium);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case-page .conent-section .filter-list .select-box .-select-layer .-inner dl dd.on {
  color: var(--fcolor-default);
}
.case-page .conent-section .filter-list .select-box .-select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.case-page .conent-section .filter-list .select-box .-select-layer .-inner dl dd:hover {
  color: #000;
}
.case-page .conent-section .card-wrap {
  margin-top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .case-page .conent-section .card-wrap {
    margin-top: 0.58rem;
  }
}

.case__card___list {
  margin: -0.32rem -0.08rem;
  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__card___list {
    margin: 0;
  }
}
.case__card___list .card-item {
  width: calc(33.3333333333% - 0.16rem);
  margin: 0.32rem 0.08rem;
  border-radius: 0.24rem;
  overflow: hidden;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item {
    width: 100%;
    margin: 0;
    border-radius: 0.43rem;
  }
  .case__card___list .card-item:not(:last-child) {
    margin-bottom: 0.29rem;
  }
}
.case__card___list .card-item:hover .img-box .img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.case__card___list .card-item:hover .card-con .card-title {
  color: var(--sk-global-color);
}
.case__card___list .card-item:hover .card-con .icon-bottom-box .icon-box {
  background: var(--sk-global-color);
}
.case__card___list .card-item:hover .card-con .icon-bottom-box .icon-box .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.case__card___list .card-item .img-box {
  height: 3.36rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .img-box {
    height: 3.75rem;
  }
}
.case__card___list .card-item .img-box .img {
  height: 100%;
  width: 100%;
}
.case__card___list .card-item .img-box .tag {
  position: absolute;
  z-index: 1;
  top: 0.16rem;
  left: 0.16rem;
  padding: 0.04rem 0.16rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(40px);
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #FFFFFF;
  border-radius: 0.48rem;
  max-width: calc(100% - 0.32rem);
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .img-box .tag {
    top: 0.14rem;
    left: 0.14rem;
    padding: 0.07rem 0.29rem;
    border-radius: 0.87rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
    max-width: calc(100% - 0.28rem);
  }
}
.case__card___list .card-item .card-con {
  padding: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con {
    padding: 0.43rem;
  }
}
.case__card___list .card-item .card-con .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .card-title {
    font-size: 0.36rem;
    line-height: 0.43rem;
  }
}
.case__card___list .card-item .card-con .tag-list {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.08rem;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .tag-list {
    margin-top: 0.29rem;
    gap: 0.14rem;
  }
}
.case__card___list .card-item .card-con .tag-list .tag-item {
  padding: 0.04rem 0.16rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  background: rgba(81, 177, 70, 0.1);
  border-radius: 0.48rem;
  color: #004728;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .tag-list .tag-item {
    padding: 0.07rem 0.29rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
    border-radius: 0.87rem;
  }
}
.case__card___list .card-item .card-con .icon-bottom-box {
  margin-top: 0.48rem;
  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;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .icon-bottom-box {
    margin-top: 0.58rem;
  }
}
.case__card___list .card-item .card-con .icon-bottom-box .icon-list .icon-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.case__card___list .card-item .card-con .icon-bottom-box .icon-list .icon-item:not(:last-child) {
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .icon-bottom-box .icon-list .icon-item:not(:last-child) {
    margin-bottom: 0.14rem;
  }
}
.case__card___list .card-item .card-con .icon-bottom-box .icon-list .icon-item .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .icon-bottom-box .icon-list .icon-item .icon {
    width: 0.43rem;
    height: 0.43rem;
    margin-right: 0.29rem;
  }
}
.case__card___list .card-item .card-con .icon-bottom-box .icon-list .icon-item .icon-text {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .icon-bottom-box .icon-list .icon-item .icon-text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.case__card___list .card-item .card-con .icon-bottom-box .icon-box {
  width: 0.56rem;
  height: 0.56rem;
  background: rgba(19, 37, 40, 0.05);
  border-radius: 0.56rem;
  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.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .icon-bottom-box .icon-box {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.case__card___list .card-item .card-con .icon-bottom-box .icon-box .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .case__card___list .card-item .card-con .icon-bottom-box .icon-box .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}

.case-details-page .page-main {
  padding-top: 2.08rem;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main {
    padding-top: 1.73rem;
    padding-bottom: 0.28rem;
  }
}
.case-details-page .page-main .header-wal .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  max-width: 9rem;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .header-wal .h1 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.case-details-page .page-main .header-wal .content-text-center {
  margin: 0.72rem auto 0;
  max-width: 9rem;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .header-wal .content-text-center {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .header-wal .img-warp {
  margin-top: 0.96rem;
  height: 8.4rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .header-wal .img-warp {
    margin-top: 0.58rem;
    border-radius: 0.43rem;
    height: 4.47rem;
  }
}
.case-details-page .page-main .header-wal .img-warp .img-bg {
  height: 100%;
  width: 100%;
}
.case-details-page .page-main .header-wal .img-warp .tag {
  position: absolute;
  z-index: 1;
  bottom: 0.16rem;
  left: 0.16rem;
  padding: 0.12rem 0.24rem 0.12rem 0.16rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.48rem;
  backdrop-filter: blur(40px);
  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-details-page .page-main .header-wal .img-warp .tag {
    bottom: 0.14rem;
    left: 0.14rem;
    padding: 0.07rem 0.29rem 0.07rem 0.14rem;
    border-radius: 0.87rem;
  }
}
.case-details-page .page-main .header-wal .img-warp .tag .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.08rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .header-wal .img-warp .tag .icon {
    width: 0.43rem;
    height: 0.43rem;
    margin-right: 0.14rem;
  }
}
.case-details-page .page-main .header-wal .img-warp .tag .tag-text {
  color: #FFFFFF;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .header-wal .img-warp .tag .tag-text {
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .achievements-and-transformations-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .achievements-and-transformations-section {
    margin-top: 0.87rem;
  }
}
.case-details-page .page-main .achievements-and-transformations-section .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .achievements-and-transformations-section .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.case-details-page .page-main .achievements-and-transformations-section .card-wrap {
  margin-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .achievements-and-transformations-section .card-wrap {
    margin-top: 0.87rem;
  }
}
.case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list {
  margin: -0.16rem;
  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-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list {
    margin: 0;
  }
}
.case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box {
  width: calc(33.3333333333% - 0.16rem);
  margin: 0.08rem;
  height: 3.52rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  padding: 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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box {
    width: 100%;
    margin: 0;
    padding: 0.43rem;
  }
  .case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box:not(:last-child) {
    margin-bottom: 0.29rem;
  }
}
.case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box .top-box .title {
  color: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box .top-box .title {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box .top-box .text {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box .top-box .text {
    margin-top: 0.14rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box .number {
  font-size: 0.64rem;
  line-height: 0.64rem;
  color: var(--sk-global-color);
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .achievements-and-transformations-section .card-wrap .card-list .card-box .number {
    font-size: 0.72rem;
    line-height: 0.87rem;
  }
}
.case-details-page .page-main .customer-background-section {
  margin-top: 1.6rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .customer-background-section {
    margin-top: 0.87rem;
  }
}
.case-details-page .page-main .customer-background-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) {
  .case-details-page .page-main .customer-background-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case-details-page .page-main .customer-background-section .flex-box .left-box {
  width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .customer-background-section .flex-box .left-box {
    width: 100%;
  }
}
.case-details-page .page-main .customer-background-section .flex-box .left-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .customer-background-section .flex-box .left-box .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.case-details-page .page-main .customer-background-section .flex-box .left-box .customer-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .customer-background-section .flex-box .left-box .customer-text {
    margin-top: 0.72rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .customer-background-section .flex-box .right-box {
  width: 10.48rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .customer-background-section .flex-box .right-box {
    width: 100%;
    margin-top: 0.43rem;
    border-radius: 0.43rem;
  }
}
.case-details-page .page-main .customer-background-section .flex-box .right-box .img {
  width: 100%;
}
.case-details-page .page-main .challenges-and-pain-points-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .challenges-and-pain-points-section {
    margin-top: 0.87rem;
  }
}
.case-details-page .page-main .challenges-and-pain-points-section .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .challenges-and-pain-points-section .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.case-details-page .page-main .challenges-and-pain-points-section .card-wrap {
  margin-top: 0.88rem;
}
.case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list {
  margin: -0.08rem;
  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-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list {
    margin: 0;
  }
}
.case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list .card-box {
  background: #FFFFFF;
  margin: 0.08rem;
  width: calc(33.3333333333% - 0.16rem);
  border-radius: 0.24rem;
  padding: 0.48rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list .card-box {
    width: 100%;
    border-radius: 0.43rem;
    padding: 0.43rem;
    margin: 0;
  }
  .case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list .card-box:not(:last-child) {
    margin-bottom: 0.29rem;
  }
}
.case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list .card-box .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list .card-box .card-title {
    font-size: 0.32rem;
    line-height: 0.58rem;
  }
}
.case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list .card-box .card-text {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .challenges-and-pain-points-section .card-wrap .card-list .card-box .card-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .product-viewer-component .head-wrap {
  text-align: left;
  max-width: 100%;
}
.case-details-page .page-main .why-josun-section {
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section {
    overflow: hidden;
    margin-top: 0.87rem;
    margin-bottom: 1.15rem;
  }
}
.case-details-page .page-main .why-josun-section .head-wrap {
  margin: 0 auto;
}
.case-details-page .page-main .why-josun-section .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  color: #004728;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.case-details-page .page-main .why-josun-section .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap {
  margin-top: 0.88rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap {
    margin-top: 1.44rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .card-list {
    margin: 0;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item {
  width: calc(33.3333333333% - 0.16rem);
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item {
    width: 5.34rem;
    border-radius: 0.43rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item:hover .img-box .img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .img-box {
  height: 3.36rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .img-box {
    height: 3.03rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .img-box .img {
  width: 100%;
  height: 100%;
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .con-wrap {
  padding: 0.32rem 0.64rem 0.32rem 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .con-wrap {
    padding: 0.43rem 0.43rem 1.15rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .con-wrap .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .con-wrap .card-title {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .con-wrap .card-text {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .card-list .card-item .con-wrap .card-text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn {
  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;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .swiper-btn {
    margin-top: 0.43rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev,
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next {
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 0.56rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev,
  .case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next {
    margin-left: 0.14rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled,
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(19, 37, 40, 0.1);
}
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled .icon path,
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled .icon path {
  stroke: #132528;
}
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev .icon,
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev .icon,
  .case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev .icon path,
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.case-details-page .page-main .why-josun-section .card-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}

.error-page {
  width: 100vw;
  height: 100vh;
}
.error-page .flex-box {
  height: 100%;
  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;
}
@media screen and (max-width: 800px) {
  .error-page .flex-box {
    width: 5.77rem;
    -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;
    margin: 0 auto;
  }
}
.error-page .flex-box .h1 {
  font-size: 1.28rem;
  line-height: 1.28rem;
  color: var(--sk-global-color);
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .error-page .flex-box .h1 {
    font-size: 1.73rem;
    line-height: 1.73rem;
  }
}
.error-page .flex-box .con-box {
  margin-left: 2.6rem;
  width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .error-page .flex-box .con-box {
    margin-left: 0;
    margin-top: 2.16rem;
    width: 100%;
  }
}
.error-page .flex-box .con-box .icon-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;
}
.error-page .flex-box .con-box .icon-box .icon {
  width: 0.44rem;
}
@media screen and (max-width: 800px) {
  .error-page .flex-box .con-box .icon-box .icon {
    width: 0.87rem;
  }
}
.error-page .flex-box .con-box .icon-box .ellipsis {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.error-page .flex-box .con-box .icon-box .ellipsis span {
  margin: 0 0.02rem;
  width: 0.04rem;
  height: 0.04rem;
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .error-page .flex-box .con-box .icon-box .ellipsis span {
    margin: 0 0.035rem;
    width: 0.07rem;
    height: 0.07rem;
  }
}
.error-page .flex-box .con-box .title {
  margin-top: 0.32rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .error-page .flex-box .con-box .title {
    margin-top: 0.58rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.error-page .flex-box .con-box .text {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .error-page .flex-box .con-box .text {
    margin-top: 0.29rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.error-page .flex-box .con-box .default___btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .error-page .flex-box .con-box .default___btn {
    margin-top: 0.87rem;
  }
}

.privacy-policy-page {
  padding-top: 2.08rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page {
    padding-top: 1.73rem;
  }
}
.privacy-policy-page .page-main {
  max-width: 12rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .page-main {
    padding: 0;
    padding-bottom: 1.15rem;
  }
}
.privacy-policy-page .page-main .h1 {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
    white-space: nowrap;
  }
}
.privacy-policy-page .page-main .card-warp {
  margin-top: 0.64rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  padding: 0.96rem 1.52rem 1.2rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .page-main .card-warp {
    margin-top: 0.72rem;
    border-radius: 0.43rem;
    padding: 0.87rem 0.43rem;
  }
}
.privacy-policy-page .page-main .card-warp .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .page-main .card-warp .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.privacy-policy-page .page-main .card-warp .card-text {
  margin-top: 0.72rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .page-main .card-warp .card-text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.privacy-policy-page .page-main .card-warp .hr {
  margin-top: 0.64rem;
  margin-bottom: 0.64rem;
  height: 1px;
  background: #E6E6E6;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .page-main .card-warp .hr {
    margin-top: 0.58rem;
    margin-bottom: 0.58rem;
    height: 2px;
  }
}
.privacy-policy-page .page-main .card-warp .html-box {
  font-size: 0.18rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .page-main .card-warp .html-box {
    font-size: 0.25rem;
    line-height: 0.58rem;
  }
}
.privacy-policy-page .page-main .card-warp .html-box video {
  max-width: 100%;
}
.privacy-policy-page .page-main .card-warp .html-box 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.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.privacy-policy-page .page-main .card-warp .html-box ul li {
  display: list-item;
  list-style-type: inherit;
}

.cookies-wrap {
  position: fixed;
  z-index: 10;
  bottom: 0.16rem;
  right: 0.16rem;
  width: 4.4rem;
  border-radius: 0.24rem;
  padding: 0.32rem;
  background: #FFFFFF;
  box-shadow: 0 0 14px rgba(43, 31, 31, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .cookies-wrap {
    bottom: 0.54rem;
    right: 0.29rem;
    width: calc(100% - 0.58rem);
    border-radius: 0.43rem;
    padding: 0.43rem;
  }
}
.cookies-wrap.show {
  opacity: 1;
  visibility: visible;
}
.cookies-wrap .close {
  position: absolute;
  top: 0.08rem;
  right: 0.08rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0.48rem;
}
@media screen and (max-width: 800px) {
  .cookies-wrap .close {
    top: 0.14rem;
    right: 0.14rem;
    width: 0.72rem;
    height: 0.72rem;
  }
}
.cookies-wrap .close:hover {
  background: rgba(19, 37, 40, 0.1);
}
.cookies-wrap .close .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .cookies-wrap .close .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.cookies-wrap .cookies-title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .cookies-wrap .cookies-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.cookies-wrap .cookies-text {
  margin-top: 0.32rem;
  color: #000000;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .cookies-wrap .cookies-text {
    margin-top: 0.43rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.cookies-wrap .cookies-text a {
  text-decoration: underline;
}
.cookies-wrap .btn-s {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .cookies-wrap .btn-s {
    margin-top: 0.58rem;
  }
}
.cookies-wrap .btn-s .btn {
  height: 0.48rem;
  border: 1px solid #132528;
  border-radius: 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;
  font-size: 0.16rem;
  line-height: 0.24rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .cookies-wrap .btn-s .btn {
    height: 0.87rem;
    border-radius: 0.72rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.cookies-wrap .btn-s .btn:hover {
  opacity: 0.8;
}
.cookies-wrap .btn-s .btn.on {
  background: #132528;
  color: #FFFFFF;
}
.cookies-wrap .btn-s .btn:not(:last-child) {
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .cookies-wrap .btn-s .btn:not(:last-child) {
    margin-bottom: 0.14rem;
  }
}

.cookies_set_wrapper {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  bottom: 0;
  left: 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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #1E1E1E;
}
.cookies_set_wrapper.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.cookies_set_wrapper .cookies_set-dialog {
  width: 6.56rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog {
    width: 100%;
    border-radius: 0.32rem 0.32rem 0 0;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog-header {
  padding: 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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog-header {
    padding: 0.48rem 0.32rem 0.32rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog-header .header-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog-header .header-title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog-header .close_icon {
  width: 0.4rem;
  height: 0.4rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 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;
  top: 0.08rem;
  right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog-header .close_icon {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog-header .close_icon:hover {
  background: rgba(19, 37, 40, 0.1);
}
.cookies_set_wrapper .cookies_set-dialog .dialog-header .close_icon .img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog-header .close_icon .img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body {
  padding: 0 0.32rem;
  max-height: calc(100vh - 3.5rem);
  overflow-y: auto;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body {
    max-height: calc(100vh - 4.48rem);
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .body_txt {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .body_txt {
    font-size: 0.28rem;
    line-height: 0.44rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .manage-consent-box {
  margin-top: 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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem solid rgba(230, 230, 230, 0.8);
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .manage-consent-box {
    padding-bottom: 0.32rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .manage-consent-box .manage-title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .manage-consent-box .manage-title {
    font-size: 0.32rem;
    line-height: 0.48rem;
    width: 3.5rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .manage-consent-box .select-all {
  font-size: 0.16rem;
  line-height: 0.24rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .manage-consent-box .select-all {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box {
  padding: 0.16rem 0;
  border-bottom: 0.01rem solid rgba(230, 230, 230, 0.8);
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box {
    padding: 0.32rem 0;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box.show {
  --display-none: none;
  --display-block: block;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-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;
  cursor: pointer;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .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;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .left-box .icon-box {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .left-box .icon-box {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .left-box .icon-box .icon {
  width: 100%;
  height: 100%;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .left-box .icon-box .icon.add {
  display: var(--display-none, block);
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .left-box .icon-box .icon.del {
  display: var(--display-block, none);
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .left-box .item-title {
  margin: 0 0.16rem 0 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .left-box .item-title {
    margin: 0 0.32rem 0 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .switch-box {
  position: relative;
  width: 0.48rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .switch-box {
    width: 0.96rem;
    height: 0.48rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .switch-box .switch-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .switch-box .switch-icon.active {
  --active-display-none: none;
  --active-display-block: block;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .switch-box .switch-icon.off {
  display: var(--active-display-none, block);
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .switch-box .switch-icon.on {
  display: var(--active-display-block, none);
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .always-active {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  cursor: default;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .cell-box .right-box .always-active {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .layer-box {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .layer-box .layer-text-box {
  padding-top: 0.22rem;
}
.cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .layer-box .layer-text-box .layer-text {
  padding: 0.16rem;
  background: #F7F9FA;
  border-radius: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #1E1E1E;
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog_body .item-list .item-box .layer-box .layer-text-box .layer-text {
    padding: 0.32rem;
    border-radius: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog-foot {
  padding: 0.32rem;
  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) {
  .cookies_set_wrapper .cookies_set-dialog .dialog-foot {
    padding: 0.32rem 0.68rem 0.48rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog-foot .btn {
  min-width: 1.28rem;
  height: 0.48rem;
  padding: 0 0.24rem;
  border-radius: 0.48rem;
  background: #132528;
  color: #FFFFFF;
  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.24rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .cookies_set_wrapper .cookies_set-dialog .dialog-foot .btn {
    min-width: 1.8rem;
    height: 0.87rem;
    border-radius: 0.72rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.cookies_set_wrapper .cookies_set-dialog .dialog-foot .btn:hover {
  opacity: 0.8;
}

.search-results-page {
  padding-top: 2.08rem;
}
.search-results-page .page-main {
  padding-bottom: 1.6rem;
}
.search-results-page .page-main .h1 {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
    white-space: nowrap;
    margin: 0 -0.3rem;
  }
}
.search-results-page .page-main .input-box {
  margin: 0.64rem auto 0;
  max-width: 8.97rem;
  position: relative;
}
.search-results-page .page-main .input-box input::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.search-results-page .page-main .input-box input::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.search-results-page .page-main .input-box input:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.search-results-page .page-main .input-box input:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.search-results-page .page-main .input-box textarea::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.search-results-page .page-main .input-box textarea::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.search-results-page .page-main .input-box textarea:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.search-results-page .page-main .input-box textarea:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .input-box {
    margin: 0.72rem auto 0;
  }
}
.search-results-page .page-main .input-box input {
  width: 100%;
  height: 0.56rem;
  border-radius: 0.48rem;
  padding: 0 1.1rem 0 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border: 1px solid rgba(19, 37, 40, 0.2);
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .input-box input {
    height: 0.87rem;
    border-radius: 0.87rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 1.6rem 0 0.29rem;
  }
}
.search-results-page .page-main .input-box .clear {
  cursor: pointer;
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 0.48rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.72rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .input-box .clear {
    width: 0.43rem;
    height: 0.43rem;
    right: 1.15rem;
    border-radius: 0.87rem;
    right: 1.15rem;
  }
}
.search-results-page .page-main .input-box .clear .icon {
  width: 100%;
  height: 100%;
}
.search-results-page .page-main .input-box .icon-box {
  position: absolute;
  right: 0.04rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 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;
  cursor: pointer;
  background: var(--sk-global-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .input-box .icon-box {
    width: 0.72rem;
    height: 0.72rem;
    right: 0.07rem;
    border-radius: 0.72rem;
  }
}
.search-results-page .page-main .input-box .icon-box:hover {
  opacity: 0.8;
}
.search-results-page .page-main .input-box .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .input-box .icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.search-results-page .page-main .class-warp {
  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) {
  .search-results-page .page-main .class-warp {
    margin-top: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: -0.43rem;
    margin-right: -0.43rem;
    width: calc(100% + 0.86rem);
    padding: 0 0.43rem;
  }
}
.search-results-page .page-main .class-warp .class-list {
  margin: -0.08rem;
  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;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .class-warp .class-list {
    margin: -0.07rem;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.search-results-page .page-main .class-warp .class-list .class {
  margin: 0.08rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  border: 1px solid #132528;
  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.24rem;
  cursor: pointer;
  padding: 0 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .class-warp .class-list .class {
    margin: 0.07rem;
    height: 0.72rem;
    border-radius: 0.87rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 0.43rem;
  }
}
.search-results-page .page-main .class-warp .class-list .class.on {
  background: #132528;
  color: #fff;
  font-family: var(--sk-font-Medium);
}
.search-results-page .page-main .class-warp .class-list .class:hover {
  background: #132528;
  color: #fff;
}
.search-results-page .page-main .conent-warp .card-warp {
  margin-top: 0.64rem;
  padding: 0.96rem 1.52rem 1.2rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .conent-warp .card-warp {
    margin: 0.87rem -0.43rem 0;
    border-radius: 0.43rem;
    padding: 0.43rem 0.43rem 0.87rem;
  }
}
.search-results-page .page-main .conent-warp .card-warp .link-list .link {
  display: block;
}
.search-results-page .page-main .conent-warp .card-warp .link-list .link:hover .title {
  color: var(--sk-global-color);
}
.search-results-page .page-main .conent-warp .card-warp .link-list .link:not(:last-child) {
  margin-bottom: 0.48rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .conent-warp .card-warp .link-list .link:not(:last-child) {
    margin-bottom: 0.72rem;
  }
}
.search-results-page .page-main .conent-warp .card-warp .link-list .link .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .conent-warp .card-warp .link-list .link .title {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.search-results-page .page-main .conent-warp .card-warp .link-list .link .text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .conent-warp .card-warp .link-list .link .text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    word-break: break-all;
  }
}
.search-results-page .page-main .conent-warp .card-warp .link-list .link .link-text {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  -moz-text-decoration-line: underline;
       text-decoration-line: underline;
}
@media screen and (max-width: 800px) {
  .search-results-page .page-main .conent-warp .card-warp .link-list .link .link-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    word-break: break-all;
  }
}

.industry-page {
  background: #ffffff;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sk-index-banner .-wrapper .inner .content .title {
    padding: 0 0.4rem;
  }
}
.industry-page .page-main .cost-optimization-section {
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
  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) {
  .industry-page .page-main .cost-optimization-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.87rem;
    margin-bottom: 2.88rem;
    position: relative;
  }
}
.industry-page .page-main .cost-optimization-section.type_2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section.type_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.industry-page .page-main .cost-optimization-section .left-box {
  width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box {
    width: 100%;
  }
}
.industry-page .page-main .cost-optimization-section .left-box .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: #004728;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.industry-page .page-main .cost-optimization-section .left-box .h2 {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box .h2 {
    margin-top: 0.14rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.industry-page .page-main .cost-optimization-section .left-box .text {
  margin-top: 0.72rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box .text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.industry-page .page-main .cost-optimization-section .left-box .text .p {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box .text .p {
    margin-bottom: 0.29rem;
  }
}
.industry-page .page-main .cost-optimization-section .left-box .text .ul {
  display: block;
  list-style-type: disc;
  -webkit-padding-start: 1.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
  font-size: 0.16rem;
  line-height: 0.3rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box .text .ul {
    font-size: 0.25rem;
    line-height: 0.43rem;
    -webkit-padding-start: 1.5em;
       -moz-padding-start: 1.5em;
            padding-inline-start: 1.5em;
  }
}
.industry-page .page-main .cost-optimization-section .left-box .text .ul li {
  display: list-item;
  list-style-type: inherit;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box .text .ul li:not(:last-child) {
    margin-bottom: 0.12rem;
  }
}
.industry-page .page-main .cost-optimization-section .left-box .default___btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .left-box .default___btn {
    position: absolute;
    bottom: -1.74rem;
  }
}
.industry-page .page-main .cost-optimization-section .right-box {
  width: 10.48rem;
  height: 6rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .cost-optimization-section .right-box {
    margin-top: 0.87rem;
    width: 100%;
    height: 3.75rem;
    border-radius: 0.43rem;
  }
}
.industry-page .page-main .cost-optimization-section .right-box .img {
  width: 100%;
  height: 100%;
}
.industry-page .page-main .sustainable-development-section {
  height: 9.6rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section {
    height: 11.97rem;
  }
}
.industry-page .page-main .sustainable-development-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.industry-page .page-main .sustainable-development-section .con-box {
  position: relative;
  z-index: 1;
  padding-top: 0.96rem;
  padding-bottom: 0.56rem;
  height: 100%;
  color: #FFFFFF;
  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) {
  .industry-page .page-main .sustainable-development-section .con-box {
    padding-top: 0.58rem;
    padding-bottom: 0.43rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .top-box .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .top-box .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .top-box .h2 {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .top-box .h2 {
    margin-top: 0.14rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .top-box .text-box {
  margin-top: 0.72rem;
  max-width: 5.92rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .top-box .text-box {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list {
    margin: 0;
    height: auto;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item {
  width: calc(33.3333333333% - 0.16rem);
  height: auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.24rem;
  backdrop-filter: blur(20px);
  padding: 0.32rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item {
    width: 2.45rem;
    margin: 0;
    border-radius: 0.43rem;
    padding: 0.29rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .icon-box {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--sk-global-color);
  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) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .icon-box {
    width: 1rem;
    height: 1rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .card-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) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .card-title {
    margin-top: 0.43rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .card-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .card-list .card-item .card-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn {
  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;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn {
    margin-top: 0.43rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-prev,
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-next {
  margin-left: 0.16rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-prev,
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-next {
    margin-left: 0.14rem;
    height: 0.72rem;
    width: 0.72rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-prev.swiper-button-disabled,
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.2);
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-prev .icon,
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-prev .icon,
  .industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-prev .icon path,
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.industry-page .page-main .sustainable-development-section .con-box .bottom-box .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}
.industry-page .page-main .architecture-section {
  padding-bottom: 1.6rem;
  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) {
  .industry-page .page-main .architecture-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.88rem;
    position: relative;
  }
}
.industry-page .page-main .architecture-section .left-box {
  width: 5.92rem;
  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) {
  .industry-page .page-main .architecture-section .left-box {
    width: 100%;
  }
}
.industry-page .page-main .architecture-section .left-box .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.16rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: #004728;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .architecture-section .left-box .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.industry-page .page-main .architecture-section .left-box .h2 {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .architecture-section .left-box .h2 {
    margin-top: 0.14rem;
  }
}
.industry-page .page-main .architecture-section .left-box .text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .architecture-section .left-box .text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.industry-page .page-main .architecture-section .left-box .bottom-box {
  margin-top: auto;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .architecture-section .left-box .bottom-box {
    position: absolute;
    bottom: 0.58rem;
    width: calc(100% - 0.86rem);
  }
}
.industry-page .page-main .architecture-section .left-box .bottom-box .label {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid rgba(19, 37, 40, 0.1);
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .architecture-section .left-box .bottom-box .label {
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding-bottom: 0.14rem;
  }
}
.industry-page .page-main .architecture-section .left-box .bottom-box .number {
  margin-top: 0.16rem;
  text-align: right;
  font-size: 0.64rem;
  line-height: 0.64rem;
  color: var(--sk-global-color);
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .architecture-section .left-box .bottom-box .number {
    margin-top: 0.29rem;
    font-size: 0.87rem;
    line-height: 0.87rem;
  }
}
.industry-page .page-main .architecture-section .right-box {
  width: 10.48rem;
  height: 6rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .architecture-section .right-box {
    margin-top: 0.43rem;
    width: 100%;
    height: 3.75rem;
    border-radius: 0.43rem;
  }
}
.industry-page .page-main .architecture-section .right-box .img {
  height: 100%;
  width: 100%;
}
.industry-page .page-main .related-cases-section {
  margin-bottom: 0;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .related-cases-section {
    padding-bottom: 1.15rem;
  }
}
.industry-page .page-main .join-us-section {
  min-height: 6.4rem;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section {
    height: 9.38rem;
  }
}
.industry-page .page-main .join-us-section::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 9.52rem;
  background: -webkit-linear-gradient(left, #004728 0%, rgba(0, 71, 40, 0) 100%);
  background: linear-gradient(90deg, #004728 0%, rgba(0, 71, 40, 0) 100%);
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section::before {
    height: 5.48rem;
    width: 100%;
    background: -webkit-linear-gradient(top, #004728 0%, rgba(0, 71, 40, 0) 100%);
    background: linear-gradient(180deg, #004728 0%, rgba(0, 71, 40, 0) 100%);
  }
}
.industry-page .page-main .join-us-section .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.industry-page .page-main .join-us-section .con {
  position: relative;
  z-index: 2;
  padding-bottom: 1.44rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section .con {
    padding-bottom: 3.32rem;
  }
}
.industry-page .page-main .join-us-section .con .head-wrap {
  padding-top: 0.96rem;
  max-width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section .con .head-wrap {
    padding-top: 0.87rem;
    max-width: 6.2rem;
  }
}
.industry-page .page-main .join-us-section .con .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section .con .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.industry-page .page-main .join-us-section .con .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
  color: #fff;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section .con .head-wrap .h2 {
    font-size: 0.5rem;
    line-height: 0.58rem;
  }
}
.industry-page .page-main .join-us-section .con .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section .con .head-wrap .section-text {
    margin-top: 1rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.industry-page .page-main .join-us-section .con .default___btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .industry-page .page-main .join-us-section .con .default___btn {
    margin-top: 0.87rem;
  }
}

.delivery-section {
  background: #fff;
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .delivery-section {
    padding-top: 0.87rem;
    padding-bottom: 0.87rem;
    border-radius: 0.43rem;
  }
}
.delivery-section .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
  color: #004728;
}
@media screen and (max-width: 800px) {
  .delivery-section .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.delivery-section .subtitle.color {
  color: #004728;
}
.delivery-section .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .delivery-section .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
  .delivery-section .h2 br {
    display: none;
  }
}
.delivery-section .card-wrap {
  margin-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap {
    margin-top: 0.87rem;
  }
}
.delivery-section .card-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .card-list {
    margin: 0;
  }
}
.delivery-section .card-wrap .card-list .card-item {
  width: calc(25% - 0.16rem);
  height: 5.28rem;
  border-radius: 0.24rem;
  background: #EDF5F5;
  padding: 0.48rem 0.32rem 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;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .card-list .card-item {
    margin: 0;
    width: 5.34rem;
    border-radius: 0.43rem;
    height: 6.2rem;
    padding: 0.58rem 0.43rem 1rem;
  }
}
.delivery-section .card-wrap .card-list .card-item .icon {
  width: 0.96rem;
  height: 0.96rem;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .card-list .card-item .icon {
    width: 1.73rem;
    height: 1.73rem;
  }
}
.delivery-section .card-wrap .card-list .card-item .index {
  margin-top: auto;
  font-size: 0.64rem;
  line-height: 0.72rem;
  color: var(--sk-global-color);
  font-family: var(--sk-EN-font-Regular);
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .card-list .card-item .index {
    font-size: 0.87rem;
    line-height: 1.01rem;
  }
}
.delivery-section .card-wrap .card-list .card-item .title {
  margin-top: 0.08rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .card-list .card-item .title {
    margin-top: 0.14rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.delivery-section .card-wrap .card-list .card-item .add-icon-box {
  position: absolute;
  right: 0.16rem;
  bottom: 0.16rem;
  width: 0.48rem;
  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;
  background: #FFFFFF;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .card-list .card-item .add-icon-box {
    width: 0.72rem;
    height: 0.72rem;
    right: 0.29rem;
    bottom: 0.29rem;
  }
}
.delivery-section .card-wrap .card-list .card-item .add-icon-box .add-icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .card-list .card-item .add-icon-box .add-icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.delivery-section .card-wrap .swiper-btn {
  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;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .swiper-btn {
    margin-top: 0.43rem;
  }
}
.delivery-section .card-wrap .swiper-btn .btn-prev,
.delivery-section .card-wrap .swiper-btn .btn-next {
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 0.56rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .swiper-btn .btn-prev,
  .delivery-section .card-wrap .swiper-btn .btn-next {
    margin-left: 0.14rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.delivery-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled,
.delivery-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(19, 37, 40, 0.1);
}
.delivery-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled .icon path,
.delivery-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled .icon path {
  stroke: #132528;
}
.delivery-section .card-wrap .swiper-btn .btn-prev .icon,
.delivery-section .card-wrap .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .delivery-section .card-wrap .swiper-btn .btn-prev .icon,
  .delivery-section .card-wrap .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.delivery-section .card-wrap .swiper-btn .btn-prev .icon path,
.delivery-section .card-wrap .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.delivery-section .card-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.delivery-section .card-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}
.delivery-section .dialog_box_warp-list .dialog_box_warp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 999;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.delivery-section .dialog_box_warp-list .dialog_box_warp.show {
  opacity: 1;
  visibility: visible;
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box {
  width: 5.6rem;
  padding: 0.16rem;
  background: #FFFFFF;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box {
    width: 6.63rem;
    padding: 0.14rem;
    border-radius: 0.43rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .colse-box {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  top: 0.16rem;
  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;
  cursor: pointer;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 0.4rem;
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .colse-box {
    width: 0.72rem;
    height: 0.72rem;
    top: 0.14rem;
    right: 0.14rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .colse-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .colse-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_title {
  padding: 0.4rem 0.32rem 0.32rem 0.32rem;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_title {
    padding: 0.58rem 0.29rem 0.29rem 0.29rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body {
  border-radius: 0.16rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body {
    border-radius: 0.29rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text {
  position: relative;
  z-index: 2;
  padding: 0.48rem;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text {
    padding: 0.43rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text .cell-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text .cell-box {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text .cell-box:not(:last-child) {
  margin-bottom: 0.08rem;
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text .cell-box span {
  min-width: 0.24rem;
  height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text .cell-box span {
    min-width: 0.43rem;
    height: 0.43rem;
  }
}
.delivery-section .dialog_box_warp-list .dialog_box_warp .dialog_box .dialog_body .dialog_text .cell-box p {
  white-space: pre-wrap;
}

.related-cases-section {
  padding-top: 1.2rem;
  margin-bottom: 1.6rem;
  background: #EFF8F8;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .related-cases-section {
    padding-top: 0.87rem;
    margin-bottom: 1.15rem;
  }
}
.related-cases-section .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .related-cases-section .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.related-cases-section .subtitle.color {
  color: #004728;
}
.related-cases-section .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .related-cases-section .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.related-cases-section .card-wrap {
  margin-top: 1.04rem;
}
.related-cases-section .card-wrap .case__card___list {
  margin: 0;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.related-cases-section .card-wrap .case__card___list .card-item {
  margin: 0;
}
@media screen and (max-width: 800px) {
  .related-cases-section .card-wrap {
    margin-top: 0.87rem;
  }
  .related-cases-section .card-wrap .swiper-wrapper {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .related-cases-section .card-wrap .swiper-wrapper .card-item {
    width: 5.34rem;
  }
  .related-cases-section .card-wrap .swiper-wrapper .card-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.related-cases-section .swiper-btn {
  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;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .related-cases-section .swiper-btn {
    margin-top: 0.43rem;
  }
}
.related-cases-section .swiper-btn .btn-prev,
.related-cases-section .swiper-btn .btn-next {
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 0.56rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .related-cases-section .swiper-btn .btn-prev,
  .related-cases-section .swiper-btn .btn-next {
    margin-left: 0.14rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.related-cases-section .swiper-btn .btn-prev.swiper-button-disabled,
.related-cases-section .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(19, 37, 40, 0.1);
}
.related-cases-section .swiper-btn .btn-prev.swiper-button-disabled .icon path,
.related-cases-section .swiper-btn .btn-next.swiper-button-disabled .icon path {
  stroke: #132528;
}
.related-cases-section .swiper-btn .btn-prev .icon,
.related-cases-section .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .related-cases-section .swiper-btn .btn-prev .icon,
  .related-cases-section .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.related-cases-section .swiper-btn .btn-prev .icon path,
.related-cases-section .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.related-cases-section .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.related-cases-section .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}

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

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes marquee-left {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee-left {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.products-page .page-main .banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .banner-section {
    height: 10.53rem;
  }
}
.products-page .page-main .banner-section .bg-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.products-page .page-main .banner-section .marquee {
  position: absolute;
  z-index: 2;
  top: 61%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  --animation-duration: 20s;
  -webkit-animation: marquee var(--animation-duration) linear infinite;
          animation: marquee var(--animation-duration) linear infinite;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .banner-section .marquee {
    top: 65%;
  }
}
.products-page .page-main .banner-section .marquee .marquee-content {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 2.03rem;
  font-size: 2.4rem;
  line-height: 2.4rem;
  color: transparent;
  background: -webkit-linear-gradient(top, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .banner-section .marquee .marquee-content {
    font-size: 2.3rem;
    line-height: 2.3rem;
    margin-right: 1rem;
  }
}
.products-page .page-main .banner-section .banner-content {
  position: relative;
  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;
  padding-top: 5.87%;
  color: #FFFFFF;
  height: 100%;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .banner-section .banner-content {
    padding-top: 1.73rem;
  }
}
.products-page .page-main .banner-section .banner-content .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .banner-section .banner-content .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.products-page .page-main .banner-section .banner-content .h1 {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .products-page .page-main .banner-section .banner-content .h1 {
    margin-top: 0.14rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.products-page .page-main .banner-section .banner-content .pro-img {
  margin-top: -0.32rem;
  width: 7.52rem;
  height: 7.52rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .banner-section .banner-content .pro-img {
    margin-top: 0.58rem;
    width: 6.63rem;
    height: 6.63rem;
  }
}
@media screen and (max-width: 800px) {
  .products-page .page-main .card-section {
    padding: 0;
  }
}
.products-page .page-main .card-section .card-box {
  margin-top: 0.56rem;
  margin-bottom: 1.6rem;
  border-radius: 0.24rem;
  background: #FFFFFF;
  padding: 1.28rem 1.52rem;
  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) {
  .products-page .page-main .card-section .card-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    margin-bottom: 1.15rem;
    padding: 0.87rem 0.43rem 0.58rem;
  }
}
.products-page .page-main .card-section .card-box .left-box {
  width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .card-section .card-box .left-box {
    width: 100%;
  }
}
.products-page .page-main .card-section .card-box .left-box .type {
  font-size: 0.24rem;
  line-height: 0.32rem;
  letter-spacing: 2px;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .products-page .page-main .card-section .card-box .left-box .type {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.products-page .page-main .card-section .card-box .left-box .title {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .products-page .page-main .card-section .card-box .left-box .title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.products-page .page-main .card-section .card-box .left-box .text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .card-section .card-box .left-box .text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.products-page .page-main .card-section .card-box .left-box .default___btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .card-section .card-box .left-box .default___btn {
    margin-top: 0.87rem;
  }
}
.products-page .page-main .card-section .card-box .img-box {
  width: 7.44rem;
  height: 7.44rem;
}
@media screen and (max-width: 800px) {
  .products-page .page-main .card-section .card-box .img-box {
    margin-top: 0.58rem;
    width: 100%;
    height: auto;
  }
}
.products-page .page-main .card-section .card-box .img-box .img {
  width: 100%;
  object-fit: contain;
}

.product-viewer-component {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component {
    margin-top: 0.87rem;
    margin-bottom: 0.87rem;
    overflow: hidden;
  }
}
.product-viewer-component .head-wrap {
  text-align: center;
  max-width: 12rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .head-wrap {
    max-width: 5.77rem;
  }
}
.product-viewer-component .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-bottom: 0.16rem;
  color: #004728;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.product-viewer-component .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
    max-width: 6.2rem;
  }
}
.product-viewer-component .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .head-wrap .section-text {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.product-viewer-component .head-wrap .btn-box {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .head-wrap .btn-box {
    margin-top: 0.58rem;
  }
}
.product-viewer-component .card-component {
  margin-top: 0.64rem;
  border-radius: 0.24rem;
  background: #FFFFFF;
  padding: 0.64rem 0.48rem 0.64rem 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;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component {
    margin: 0.58rem -0.29rem 0;
    border-radius: 0.43rem;
    padding: 0.29rem;
  }
}
.product-viewer-component .card-component .btn-wrap {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 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) {
  .product-viewer-component .card-component .btn-wrap {
    display: none;
  }
}
.product-viewer-component .card-component .btn-wrap .btn-prev,
.product-viewer-component .card-component .btn-wrap .btn-next {
  margin: 0.04rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  background: rgba(19, 37, 40, 0.1);
  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;
}
.product-viewer-component .card-component .btn-wrap .btn-prev.active,
.product-viewer-component .card-component .btn-wrap .btn-next.active {
  background: #132528;
  color: #FFFFFF;
  cursor: pointer;
}
.product-viewer-component .card-component .btn-wrap .btn-prev.active:hover,
.product-viewer-component .card-component .btn-wrap .btn-next.active:hover {
  background: var(--sk-global-color);
}
.product-viewer-component .card-component .btn-wrap .btn-prev .icon,
.product-viewer-component .card-component .btn-wrap .btn-next .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.product-viewer-component .card-component .cell-wrap {
  --sk-cell-width: 4.8rem;
  width: var(--sk-cell-width);
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap {
    --sk-cell-width: 100%;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content:not(:last-child) {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content:not(:last-child) {
    margin-bottom: 0.14rem;
  }
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content.on .control-item .control-bg {
    border-radius: 0.43rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content.on .control-item .control-tour {
  opacity: 0;
  visibility: hidden;
}
.product-viewer-component .card-component .cell-wrap .cell-content.on .control-item .control-content {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.product-viewer-component .card-component .cell-wrap .cell-content.on .img-img {
  margin-top: 0.14rem;
  height: var(--height, 6.63rem);
}
.product-viewer-component .card-component .cell-wrap .cell-content.on .phone-two-class-warp {
  display: block;
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item {
    width: 100%;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EDF5F5;
  border-radius: 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-bg {
    border-radius: 0.58rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour {
  position: relative;
  z-index: 2;
  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;
  padding: 0.24rem 0.32rem 0.24rem 0.24rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: var(--sk-font-SemiBold);
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour {
    padding: 0.29rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour .icon-box {
  height: 0.32rem;
  width: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.4rem;
  background: #FFFFFF;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour .icon-box {
    height: 0.58rem;
    width: 0.58rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour .icon-box .icon {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour .tour-text {
  margin-left: 0.24rem;
  color: #004728;
  font-size: 0.24rem;
  line-height: 0.32rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-tour .tour-text {
    margin-left: 0.29rem;
    font-size: 0.29rem;
    line-height: 0.58rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  top: 0;
  left: 0;
  padding: 0.32rem;
  width: var(--sk-cell-width);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content {
    padding: 0.43rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content .content-title {
  color: var(--sk-global-color);
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content .content-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content .content-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content .content-text {
    margin-top: 0.29rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content .content-text a {
  text-decoration: underline;
}
.product-viewer-component .card-component .cell-wrap .cell-content .control-item .control-content .content-text a:hover {
  color: var(--sk-global-color);
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img {
  height: 6.63rem;
  width: 100%;
  border-radius: 0.43rem;
  height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box {
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box.show {
  opacity: 1;
  visibility: visible;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type1] .img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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.43rem 0 0;
  color: #fff;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .w-text-title {
  font-size: 0.32rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.6rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list {
  margin-top: 0.58rem;
  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;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 43%;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list .icon-item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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;
  position: relative;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list .icon-item.on .icon-box {
  opacity: 1;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list .icon-item.on .icon-text {
  opacity: 1;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list .icon-item:not(:last-child) {
  margin-right: 0.58rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list .icon-item .icon-box {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  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;
  opacity: 0.4;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list .icon-item .icon-box .icon {
  width: 0.43rem;
  height: 0.43rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .w-text .icon-list-wrap .icon-list .icon-item .icon-text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  margin-top: 0.14rem;
  font-size: 0.25rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .bottom-img {
  height: 3rem;
  width: 6.06rem;
  margin: 0 auto;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type2] .con-card-box-w .bottom-img .img {
  border-radius: 0.43rem 0.43rem 0 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type3] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type3] .con-img-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.07rem;
  border-radius: 0.18rem;
  background-color: #000;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type3] .con-img-wrap .con-img {
  max-width: 6.06rem;
  max-height: 6.06rem;
  border-radius: 0.14rem;
  object-fit: contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type4] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type4] .con-card-box-w {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0.58rem 0.26rem 0;
  color: #fff;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type4] .con-card-box-w .w-text {
  font-size: 0.29rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
  max-width: 4.33rem;
  margin: 0 auto;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type4] .con-card-box-w .bottom-img {
  margin-top: 0.7rem;
  height: 4rem;
  width: 100%;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type4] .con-card-box-w .bottom-img .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type5] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type5] .con-card-flex {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 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.29rem 0 0;
  color: #fff;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type5] .con-card-flex .con-card-item {
  text-align: center;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type5] .con-card-flex .con-card-item .con-card-title {
  font-size: 0.25rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
  margin-bottom: 0.14rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type5] .con-card-flex .con-card-item .con-card-img {
  height: 2.45rem;
  object-fit: contain;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type6] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type6] .con-card-box-w {
  position: absolute;
  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;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type6] .con-card-box-w .cell-box {
  padding: 0.43rem;
  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;
  color: #fff;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type6] .con-card-box-w .cell-box .cell-title {
  font-size: 0.32rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type6] .con-card-box-w .cell-box .img-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;
  position: absolute;
  bottom: 1.44rem;
  right: 0.14rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type6] .con-card-box-w .cell-box .img-list .img {
  margin-top: 0.14rem;
  width: 0.87rem;
  height: 0.87rem;
  object-fit: contain;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type7] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type7] .con-card-box-w {
  position: absolute;
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.14rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type7] .con-card-box-w .cell-card {
  width: 100%;
  padding: 0.29rem;
  border-radius: 0.29rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  color: #fff;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type7] .con-card-box-w .cell-card .cell-title {
  font-size: 0.25rem;
  line-height: 0.43rem;
  padding-bottom: 0.14rem;
  border-bottom: 1px solid #FFFFFF;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type7] .con-card-box-w .cell-card .cell-num {
  margin-top: 0.29rem;
  font-size: 0.87rem;
  line-height: 1;
  font-family: var(--sk-EN-font-Regular);
  text-align: right;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .img-box-wrap {
  position: absolute;
  height: 100%;
  z-index: 1;
  top: 50%;
  left: 50%;
  -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;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .img-box-wrap .img {
  width: 6.1rem;
  height: 100%;
  object-fit: contain;
  max-width: none;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .con-card-box-w {
  position: absolute;
  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;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .con-card-box-w .cell-box {
  padding: 0.43rem;
  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;
  color: #fff;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .con-card-box-w .cell-box .cell-title {
  font-size: 0.32rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .con-card-box-w .cell-box .img-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;
  position: absolute;
  bottom: 1.44rem;
  right: 0.14rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .img-img .con-card-box[data-type8] .con-card-box-w .cell-box .img-list .img {
  margin-top: 0.14rem;
  width: 0.87rem;
  height: 0.87rem;
  object-fit: contain;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp {
  padding: 0.43rem 0;
  display: none;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots {
  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;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin: 0 0.15rem;
  border: 1px solid rgba(0, 71, 40, 0.2);
  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;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot.on {
  background: #004728;
  border-color: #004728;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot.on .icon.default {
  display: none;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot.on .icon:not(.default) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot.on .svg {
  display: block;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot .icon {
  width: 0.43rem;
  height: 0.43rem;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot .icon.default {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot .icon:not(.default) {
  display: none;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.86rem;
  height: 0.86rem;
  --size: 0.86rem;
  --border-width: 0.04rem;
  display: none;
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot .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);
}
.product-viewer-component .card-component .cell-wrap .cell-content .phone-two-class-warp .dots .dot .svg circle:nth-child(2) {
  stroke-opacity: 0.4;
  stroke: #fff;
  stroke-dasharray: calc(6.283 * (var(--size) - var(--border-width)) / 2 * var(--percent) / 100), 1000;
}
.product-viewer-component .card-component .cell-wrap .btn-box {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .cell-wrap .btn-box {
    margin-top: 0.58rem;
    text-align: center;
  }
}
.product-viewer-component .card-component .two-class-warp {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
}
.product-viewer-component .card-component .two-class-warp .dots {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-viewer-component .card-component .two-class-warp .dots.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .two-class-warp .dots .dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  margin: 0.08rem 0;
  border: 1px solid rgba(0, 71, 40, 0.2);
  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;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-viewer-component .card-component .two-class-warp .dots .dot.on {
  background: #004728;
  border-color: #004728;
}
.product-viewer-component .card-component .two-class-warp .dots .dot.on .icon.default {
  display: none;
}
.product-viewer-component .card-component .two-class-warp .dots .dot.on .icon:not(.default) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .two-class-warp .dots .dot.on .svg {
  display: block;
}
.product-viewer-component .card-component .two-class-warp .dots .dot .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.product-viewer-component .card-component .two-class-warp .dots .dot .icon.default {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .two-class-warp .dots .dot .icon:not(.default) {
  display: none;
}
.product-viewer-component .card-component .two-class-warp .dots .dot .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.48rem;
  height: 0.48rem;
  --size: 0.48rem;
  --border-width: 0.02rem;
  display: none;
}
.product-viewer-component .card-component .two-class-warp .dots .dot .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);
}
.product-viewer-component .card-component .two-class-warp .dots .dot .svg circle:nth-child(2) {
  stroke-opacity: 0.4;
  stroke: #fff;
  stroke-dasharray: calc(6.283 * (var(--size) - var(--border-width)) / 2 * var(--percent) / 100), 1000;
}
.product-viewer-component .card-component .img-wrap {
  width: 10rem;
  height: 6rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .product-viewer-component .card-component .img-wrap {
    display: none;
  }
}
.product-viewer-component .card-component .img-wrap .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.24rem;
  opacity: 0;
  visibility: hidden;
}
.product-viewer-component .card-component .img-wrap .img-box.on {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0.24rem;
  overflow: hidden;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box.show {
  opacity: 1;
  visibility: visible;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type1] .img {
  height: 100%;
  width: 100%;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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.48rem 0;
  color: #fff;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .w-text .w-text-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .w-text .icon-list {
  margin-top: 0.32rem;
  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;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .w-text .icon-list .icon-item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .w-text .icon-list .icon-item:not(:last-child) {
  margin-right: 0.48rem;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .w-text .icon-list .icon-item .icon-box {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  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;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .w-text .icon-list .icon-item .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .w-text .icon-list .icon-item .icon-text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .bottom-img {
  height: 3.68rem;
  width: 100%;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type2] .con-card-box-w .bottom-img .img {
  border-radius: 0.24rem 0.24rem 0 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type3] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type3] .con-img-wrap {
  padding: 0.08rem;
  border-radius: 0.24rem;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #000000;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type3] .con-img-wrap .con-img {
  max-width: 8.72rem;
  max-height: 4.72rem;
  object-fit: contain;
  border-radius: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type4] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type4] .con-card-box-w {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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.48rem 0.6rem 0;
  color: #fff;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type4] .con-card-box-w .w-text {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type4] .con-card-box-w .bottom-img {
  height: 4.56rem;
  width: 100%;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type4] .con-card-box-w .bottom-img .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type5] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type5] .con-card-flex {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.96rem 0.4rem 0.4rem;
  color: #fff;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type5] .con-card-flex .con-card-item {
  text-align: center;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type5] .con-card-flex .con-card-item:not(:last-child) {
  margin-right: 0.5rem;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type5] .con-card-flex .con-card-item .con-card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  margin-bottom: 0.16rem;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type5] .con-card-flex .con-card-item .con-card-img {
  width: 4.48rem;
  height: 4.48rem;
  object-fit: contain;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type6] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type6] .con-card-box-w {
  position: absolute;
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type6] .con-card-box-w .cell-box {
  min-height: 0.96rem;
  padding: 0.16rem 0.16rem 0.16rem 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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type6] .con-card-box-w .cell-box .cell-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type6] .con-card-box-w .cell-box .img-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type6] .con-card-box-w .cell-box .img-list .img {
  margin-left: 0.08rem;
  width: 0.64rem;
  height: 0.64rem;
  object-fit: contain;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type7] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type7] .con-card-box-w {
  position: absolute;
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.08rem;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type7] .con-card-box-w .cell-card {
  width: 5.84rem;
  padding: 0.32rem 0.32rem 0.16rem;
  border-radius: 0.16rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  color: #fff;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type7] .con-card-box-w .cell-card .cell-title {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #FFFFFF;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type7] .con-card-box-w .cell-card .cell-num {
  margin-top: 0.16rem;
  font-size: 1.28rem;
  line-height: 1;
  font-family: var(--sk-EN-font-Regular);
  text-align: right;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .img-box-wrap {
  position: absolute;
  height: 100%;
  z-index: 1;
  top: 50%;
  left: 50%;
  -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;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .img-box-wrap .img {
  width: 8.8rem;
  height: 100%;
  object-fit: contain;
  max-width: none;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .con-card-box-w {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .con-card-box-w .img {
  max-width: 0;
  width: 8.8rem;
  max-height: 95%;
  object-fit: contain;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .con-card-box-w {
  position: absolute;
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .con-card-box-w .cell-box {
  min-height: 0.96rem;
  padding: 0.16rem 0.16rem 0.16rem 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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .con-card-box-w .cell-box .cell-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .con-card-box-w .cell-box .img-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-viewer-component .card-component .img-wrap .img-box .con-card-box[data-type8] .con-card-box-w .cell-box .img-list .img {
  margin-left: 0.08rem;
  width: 0.64rem;
  height: 0.64rem;
  object-fit: contain;
}
.product-viewer-component .sk-tab-box {
  margin: 1.04rem 0 0.32rem;
}
.product-viewer-component .tab-contents .tab-content {
  display: none;
}
.product-viewer-component .tab-contents .tab-content.active {
  display: block;
}
.product-viewer-component .tab-contents .tab-content .card-component {
  margin-top: 0;
}

.support-contact-section {
  margin-top: 1.2rem;
  padding-bottom: 1.6rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .support-contact-section {
    margin-top: 0.87rem;
    padding-bottom: 1.15rem;
  }
}
.support-contact-section .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .support-contact-section .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.support-contact-section .subtitle.color {
  color: #004728;
}
.support-contact-section .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-contact-section .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.support-contact-section .card-wrap {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .support-contact-section .card-wrap {
    margin-top: 1rem;
  }
}
.support-contact-section .card-wrap .card-list {
  margin: -0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .support-contact-section .card-wrap .card-list {
    margin: 0;
  }
}
.support-contact-section .card-wrap .card-list[data-slides="4"] .card-link {
  width: calc(25% - 0.16rem);
}
@media screen and (max-width: 800px) {
  .support-contact-section .card-wrap .card-list[data-slides="4"] .card-link {
    margin: 0;
    width: 5.34rem;
    height: 3.75rem;
    border-radius: 0.43rem;
    padding: 0.43rem;
  }
}
.support-contact-section .card-wrap .card-list[data-slides="4"] .card-link:hover .card-title {
  color: var(--fcolor-default);
}
.support-contact-section .card-wrap .card-list .card-link {
  margin: 0.08rem;
  width: calc(33.3333333333% - 0.16rem);
  background: #FFFFFF;
  border-radius: 0.24rem;
  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;
}
@media screen and (max-width: 800px) {
  .support-contact-section .card-wrap .card-list .card-link {
    margin: 0;
    width: 5.34rem;
    height: 3.75rem;
    border-radius: 0.43rem;
    padding: 0.43rem;
  }
}
.support-contact-section .card-wrap .card-list .card-link:hover .card-title {
  color: var(--sk-global-color);
}
.support-contact-section .card-wrap .card-list .card-link .icon {
  width: 0.48rem;
  height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .support-contact-section .card-wrap .card-list .card-link .icon {
    width: 0.87rem;
    height: 0.87rem;
  }
}
.support-contact-section .card-wrap .card-list .card-link .card-title {
  margin-top: 0.64rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .support-contact-section .card-wrap .card-list .card-link .card-title {
    margin-top: 0.58rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.support-contact-section .card-wrap .card-list .card-link .cart-text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .support-contact-section .card-wrap .card-list .card-link .cart-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.support-contact-section .card-wrap .swiper-btn {
  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;
  margin-top: 0.43rem;
}
.support-contact-section .card-wrap .swiper-btn .btn-prev,
.support-contact-section .card-wrap .swiper-btn .btn-next {
  margin-left: 0.14rem;
  height: 0.72rem;
  width: 0.72rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.support-contact-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled,
.support-contact-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(19, 37, 40, 0.1);
}
.support-contact-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled path,
.support-contact-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled path {
  stroke: #132528;
}
.support-contact-section .card-wrap .swiper-btn .btn-prev .icon,
.support-contact-section .card-wrap .swiper-btn .btn-next .icon {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
}
.support-contact-section .card-wrap .swiper-btn .btn-prev .icon path,
.support-contact-section .card-wrap .swiper-btn .btn-next .icon path {
  stroke: #132528;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.support-contact-section .card-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled) path,
.support-contact-section .card-wrap .swiper-btn .btn-next:not(.swiper-button-disabled) path {
  stroke: #fff;
}
.support-contact-section .card-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.support-contact-section .card-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}
.support-contact-section .card-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover path,
.support-contact-section .card-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover path {
  stroke: #fff;
}

.about-page .core-leadership-section {
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section {
    padding-top: 0.87rem;
    padding-bottom: 1.15rem;
  }
}
.about-page .core-leadership-section .wrapper {
  max-width: 12rem;
}
.about-page .core-leadership-section .wrapper .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box {
  margin-top: 1.04rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box {
    margin-top: 1.01rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-page .core-leadership-section .wrapper .card-box .left-card {
  margin-right: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0.72rem 0.64rem 0.64rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .left-card {
    padding: 0.36rem 0.5rem 0.36rem 0.43rem;
    border-radius: 0.29rem;
    margin-right: 0;
    margin-bottom: 0.14rem;
    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-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.about-page .core-leadership-section .wrapper .card-box .left-card .img-box {
  width: 3.12rem;
  height: 3.12rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .left-card .img-box {
    width: 2.02rem;
    height: 2.02rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .left-card .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.about-page .core-leadership-section .wrapper .card-box .left-card .img-box .bg-url {
  position: absolute;
  max-width: none;
  width: 100%;
  height: 100%;
  top: calc(50% + 0.16rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .left-card .img-box .bg-url {
    top: calc(50% + 0.08rem);
  }
}
.about-page .core-leadership-section .wrapper .card-box .left-card .name {
  text-align: center;
  margin-top: 0.64rem;
  font-size: 0.32rem;
  line-height: 0.4rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .left-card .name {
    margin-top: 0;
    text-align: left;
    font-size: 0.43rem;
    line-height: 0.43rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .left-card .job {
  text-align: center;
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .left-card .job {
    text-align: left;
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.64rem;
  position: relative;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card {
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card .bg-img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content .label {
  font-size: 0.32rem;
  line-height: 0.4rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card .content .label {
    font-size: 0.36rem;
    line-height: 0.58rem;
    padding-bottom: 0.43rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content .ul {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card .content .ul {
    margin-top: 0.43rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li {
  padding-left: 0.24rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li {
    padding-left: 0.43rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li:not(:last-child) {
  margin-bottom: 0.32rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li:not(:last-child) {
    padding-left: 0.43rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li::before {
  content: "";
  position: absolute;
  top: 0.13rem;
  left: 0.08rem;
  width: 0.06rem;
  height: 0.06rem;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li::before {
    width: 0.1rem;
    height: 0.1rem;
    top: 0.2rem;
    left: 0.14rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li .li-title {
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li .li-title {
    font-size: 0.32rem;
    line-height: 0.58rem;
  }
}
.about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li .li-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .core-leadership-section .wrapper .card-box .right-card .content .ul .li .li-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.about-page .global-section {
  height: 9.6rem;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .about-page .global-section {
    height: 11.97rem;
  }
}
.about-page .global-section .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-page .global-section .content-box {
  padding-top: 0.96rem;
  padding-bottom: 0.96rem;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .global-section .content-box {
    padding-top: 0.58rem;
    padding-bottom: 1.15rem;
  }
}
.about-page .global-section .content-box .con-box {
  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;
}
.about-page .global-section .content-box .con-box .data .number {
  font-family: var(--sk-EN-font-Regular);
  display: inline-block;
  font-size: 1.28rem;
  line-height: 1.28rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 800px) {
  .about-page .global-section .content-box .con-box .data .number {
    font-size: 0.87rem;
    line-height: 0.87rem;
    padding-bottom: 0.29rem;
  }
}
.about-page .global-section .content-box .con-box .data .label {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-section .content-box .con-box .data .label {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.about-page .global-section .content-box .con-box .bottom-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-section .content-box .con-box .bottom-box .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.about-page .global-section .content-box .con-box .bottom-box .default___btn {
  margin-top: 0.72rem;
}
.about-page .global-section .content-box .map-img {
  position: absolute;
  max-width: 12.8rem;
  height: 6.54rem;
  right: 0;
  top: 1.6rem;
}
@media screen and (max-width: 800px) {
  .about-page .global-section .content-box .map-img {
    top: 3.17rem;
    width: 100vw;
  }
}
.about-page .honor-qualification {
  position: relative;
  padding-top: 0.96rem;
  padding-bottom: 0.96rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification {
    padding-top: 0.87rem;
    padding-bottom: 0.87rem;
    overflow: hidden;
  }
}
.about-page .honor-qualification .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-page .honor-qualification .head-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 .honor-qualification .head-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-page .honor-qualification .head-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .head-box .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.about-page .honor-qualification .head-box .text {
  width: 4.4rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .head-box .text {
    margin-top: 0.72rem;
    width: 100%;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.about-page .honor-qualification .data-wer {
  margin-top: 1.36rem;
  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;
  -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 .honor-qualification .data-wer {
    margin-top: 0.87rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-page .honor-qualification .data-wer .left-data {
  width: 4.4rem;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .left-data {
    width: 100%;
  }
}
.about-page .honor-qualification .data-wer .left-data .number {
  font-family: var(--sk-EN-font-Regular);
  font-size: 1.28rem;
  line-height: 1.28rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .left-data .number {
    font-size: 0.87rem;
    line-height: 0.87rem;
    padding-bottom: 0.29rem;
  }
}
.about-page .honor-qualification .data-wer .left-data .label {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .left-data .label {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    margin-bottom: 0.87rem;
  }
}
.about-page .honor-qualification .data-wer .honor-swiper-warp {
  width: calc(100vw - 6.08rem);
  -webkit-transform: translateX(calc(100vw - 18.04rem));
      -ms-transform: translateX(calc(100vw - 18.04rem));
          transform: translateX(calc(100vw - 18.04rem));
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .honor-swiper-warp {
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    overflow: visible;
  }
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper {
  width: 12rem;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper {
    width: 100%;
  }
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-wrapper .swiper-slide {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-wrapper .swiper-slide {
    width: 2.88rem;
  }
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide {
  opacity: 0.6;
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn {
  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;
  margin-top: 0.36rem;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn {
    margin-top: 0.58rem;
  }
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next {
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: #FFFFFF;
  border-radius: 0.56rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev,
  .about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next {
    margin-left: 0.14rem;
    height: 0.72rem;
    width: 0.72rem;
  }
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev.swiper-button-disabled,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.1);
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev.swiper-button-disabled path,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next.swiper-button-disabled path {
  stroke: #132528;
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev .icon,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev .icon,
  .about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev .icon path,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev:not(.swiper-button-disabled) path,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next:not(.swiper-button-disabled) path {
  stroke: #132528;
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-prev:not(.swiper-button-disabled):hover path,
.about-page .honor-qualification .data-wer .honor-swiper-warp .honor-swiper .swiper-btn .btn-next:not(.swiper-button-disabled):hover path {
  stroke: #fff;
}
.about-page .cooperative-enterprise-section {
  padding-top: 1.2rem;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-page .cooperative-enterprise-section {
    overflow: hidden;
    padding-top: 0.87rem;
  }
}
.about-page .cooperative-enterprise-section .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .about-page .cooperative-enterprise-section .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.about-page .cooperative-enterprise-section .radio-box {
  margin: 0.72rem auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.08rem;
  border-radius: 0.48rem;
  background: #EFF8F8;
}
@media screen and (max-width: 800px) {
  .about-page .cooperative-enterprise-section .radio-box {
    margin: 1.01rem auto 0;
    padding: 0.07rem;
    border-radius: 0.87rem;
  }
}
.about-page .cooperative-enterprise-section .radio-box .radio-li {
  height: 0.4rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  border-radius: 0.48rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .about-page .cooperative-enterprise-section .radio-box .radio-li {
    height: 0.58rem;
    padding: 0.07rem 0.22rem;
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.about-page .cooperative-enterprise-section .radio-box .radio-li:not(:first-child) {
  margin-left: 0.08rem;
}
@media screen and (max-width: 800px) {
  .about-page .cooperative-enterprise-section .radio-box .radio-li:not(:first-child) {
    margin-left: 0;
  }
}
.about-page .cooperative-enterprise-section .radio-box .radio-li:not(.on):hover {
  background: rgba(19, 37, 40, 0.1);
}
.about-page .cooperative-enterprise-section .radio-box .radio-li.on {
  background: #132528;
  color: #fff;
}
.about-page .cooperative-enterprise-section .marquee-wrap {
  margin-top: 0.64rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .about-page .cooperative-enterprise-section .marquee-wrap {
    margin-top: 0.58rem;
  }
}
.about-page .cooperative-enterprise-section .marquee-wrap.show {
  display: block;
}
.about-page .cooperative-enterprise-section .marquee-wrap .marquee {
  --animation-duration: 15s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-page .cooperative-enterprise-section .marquee-wrap .marquee:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.about-page .cooperative-enterprise-section .marquee-wrap .marquee .marquee-content {
  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;
  margin: -0.08rem;
  min-width: 100%;
}
.about-page .cooperative-enterprise-section .marquee-wrap .marquee .marquee-content .card-img {
  display: inline-block;
  width: calc(16.6666666667% - 0.16rem);
  height: 0.72rem;
  margin: 0.08rem;
}
@media screen and (max-width: 800px) {
  .about-page .cooperative-enterprise-section .marquee-wrap .marquee .marquee-content .card-img {
    width: calc(50% - 0.14rem);
    height: 0.87rem;
    margin: 0.07rem;
  }
}
.about-page .cooperative-enterprise-section .marquee-wrap .marquee .marquee-content .card-img .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-page .card-section {
  padding-bottom: 1.6rem;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-page .card-section {
    padding-bottom: 1.15rem;
  }
}
.about-page .card-section .card-wrap {
  padding-top: 1.6rem;
}
@media screen and (max-width: 800px) {
  .about-page .card-section .card-wrap {
    padding-top: 0.87rem;
  }
}
.about-page .card-section .card-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.08rem;
}
@media screen and (max-width: 800px) {
  .about-page .card-section .card-wrap .card-list {
    margin: 0;
  }
}
.about-page .card-section .card-wrap .card-list .card-item {
  margin: 0.08rem;
  width: calc(50% - 0.16rem);
  height: 5.6rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  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;
  --color: #fff;
}
@media screen and (max-width: 800px) {
  .about-page .card-section .card-wrap .card-list .card-item {
    margin: 0;
    width: 100%;
    height: 4.18rem;
    border-radius: 0.43rem;
  }
  .about-page .card-section .card-wrap .card-list .card-item:not(:first-child) {
    margin-top: 0.29rem;
  }
}
.about-page .card-section .card-wrap .card-list .card-item:hover .img-bg {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.about-page .card-section .card-wrap .card-list .card-item:hover .cell-box .arrow-inner {
  background: var(--sk-global-color);
}
.about-page .card-section .card-wrap .card-list .card-item:hover .cell-box .arrow-inner .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.about-page .card-section .card-wrap .card-list .card-item .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.about-page .card-section .card-wrap .card-list .card-item .cell-box {
  padding: 0.32rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(80px);
  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;
}
@media screen and (max-width: 800px) {
  .about-page .card-section .card-wrap .card-list .card-item .cell-box {
    padding: 0.29rem 0.29rem 0.29rem 0.43rem;
  }
}
.about-page .card-section .card-wrap .card-list .card-item .cell-box .card-text {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-page .card-section .card-wrap .card-list .card-item .cell-box .card-text {
    font-size: 0.29rem;
    line-height: 0.58rem;
  }
}
.about-page .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 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;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .about-page .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner {
    width: 0.58rem;
    height: 0.58rem;
  }
}
.about-page .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .about-page .card-section .card-wrap .card-list .card-item .cell-box .arrow-inner .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}

.g__footer {
  background: #132528;
  padding-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .g__footer {
    padding-top: 0.87rem;
    overflow: hidden;
  }
}
.g__footer .title-form {
  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 .title-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g__footer .title-form .left-text {
  width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .g__footer .title-form .left-text {
    width: 100%;
  }
}
.g__footer .title-form .left-text .h2 {
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
  display: inline-block;
  font-size: 0.96rem;
  line-height: 0.96rem;
  color: transparent;
  background: -webkit-linear-gradient(left, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
@media screen and (max-width: 800px) {
  .g__footer .title-form .left-text .h2 {
    font-size: 0.87rem;
    line-height: 1rem;
  }
}
.g__footer .title-form .left-text .left-text {
  margin-top: 0.72rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .g__footer .title-form .left-text .left-text {
    margin-top: 1rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.g__footer .logo-nav {
  margin-top: 1.6rem;
  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.88rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav {
    margin-top: 1.73rem;
    padding-bottom: 0.58rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g__footer .logo-nav .logo-box {
  height: 0.4rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .logo-box {
    height: 0.72rem;
  }
}
.g__footer .logo-nav .logo-box .logo {
  height: 100%;
}
.g__footer .logo-nav .nav-contact {
  max-width: 13.52rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .nav-contact {
    width: 100%;
    margin-top: 0.72rem;
  }
}
.g__footer .logo-nav .nav-contact .nav-list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .nav-contact .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 .nav-contact .nav-list .ft_link {
  width: 3.14rem;
  padding-right: 0.32rem;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .nav-contact .nav-list .ft_link {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.29rem;
  }
}
@media screen and (min-width: 800px) {
  .g__footer .logo-nav .nav-contact .nav-list .ft_link:last-child {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 3.14rem;
    padding-right: 0;
  }
  .g__footer .logo-nav .nav-contact .nav-list .ft_link:last-child .a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.g__footer .logo-nav .nav-contact .nav-list .ft_link .dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .nav-contact .nav-list .ft_link .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;
    cursor: pointer;
  }
}
.g__footer .logo-nav .nav-contact .nav-list .ft_link .dt .a {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .nav-contact .nav-list .ft_link .dt .a {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.g__footer .logo-nav .nav-contact .nav-list .ft_link .dt .icon-box.phone-show {
  width: 0.43rem;
  height: 0.43rem;
}
.g__footer .logo-nav .nav-contact .nav-list .ft_link .dt .icon-box.phone-show .icon {
  width: 100%;
  height: 100%;
}
.g__footer .logo-nav .nav-contact .nav-list .ft_link .dd {
  margin-top: 0.24rem;
  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;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .nav-contact .nav-list .ft_link .dd {
    margin-top: 0.29rem;
    padding-left: 0.29rem;
    height: 0;
    margin-top: 0;
  }
}
.g__footer .logo-nav .nav-contact .nav-list .ft_link .dd .a {
  font-size: 0.14rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.6);
  --color: #ffffff;
}
@media screen and (max-width: 800px) {
  .g__footer .logo-nav .nav-contact .nav-list .ft_link .dd .a {
    font-size: 0.25rem;
    line-height: 0.58rem;
  }
}
.g__footer .logo-nav .nav-contact .nav-list .ft_link .dd .a:hover {
  color: #ffffff;
}
.g__footer .footer-bottom {
  padding: 0.16rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  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;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom {
    padding: 0.58rem 0;
    font-size: 0.22rem;
    line-height: 0.43rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.g__footer .footer-bottom a {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  --color: #ffffff;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom a {
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.g__footer .footer-bottom a:hover {
  color: #ffffff;
}
.g__footer .footer-bottom .left-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .left-box {
    margin-top: 0.14rem;
  }
}
.g__footer .footer-bottom .left-box a {
  margin-left: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .left-box a {
    margin-left: 0.43rem;
  }
}
.g__footer .footer-bottom .center-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -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;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .center-box {
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0.58rem;
  }
}
.g__footer .footer-bottom .center-box .icon-link {
  width: 0.24rem;
  height: 0.24rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .center-box .icon-link {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.g__footer .footer-bottom .center-box .icon-link:hover .icon {
  opacity: 1;
}
.g__footer .footer-bottom .center-box .icon-link:hover .layer_box {
  opacity: 1;
  visibility: visible;
}
.g__footer .footer-bottom .center-box .icon-link:not(:last-child) {
  margin-right: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .center-box .icon-link:not(:last-child) {
    margin-right: 0.43rem;
  }
}
.g__footer .footer-bottom .center-box .icon-link .icon {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g__footer .footer-bottom .center-box .icon-link .layer_box {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-bottom: 0.16rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .center-box .icon-link .layer_box {
    padding-bottom: 0.29rem;
  }
}
.g__footer .footer-bottom .center-box .icon-link .layer_box .qr-img {
  max-width: none;
  width: 1.2rem;
  height: 1.2rem;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .center-box .icon-link .layer_box .qr-img {
    width: 2.16rem;
    height: 2.16rem;
  }
}
.g__footer .footer-bottom .right-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .right-box {
    -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;
  }
}
.g__footer .footer-bottom .right-box a:not(:first-child) {
  margin-left: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-bottom .right-box a:not(:first-child) {
    margin-left: 0.43rem;
  }
}

.g-header {
  --totalH: 0.72rem;
}
.g-header::after {
  content: "";
  backdrop-filter: blur(20px);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 96;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.g-header .g-head {
  background-color: var(--g-head-bgColor, rgba(255, 255, 255, 0.8));
  position: fixed;
  height: var(--totalH);
  top: 0.16rem;
  left: 0.16rem;
  width: calc(100% - 0.32rem);
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 0.1rem 0.13rem rgba(0, 0, 0, 0.02);
  border-radius: var(--g-head-border-radius, 0.37rem);
}
.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;
}
.g-header .g-head .g-head-main .center-nav {
  height: 100%;
  position: relative;
  z-index: 4;
}
.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.16rem;
  line-height: 0.24rem;
  position: relative;
  font-family: var(--sk-font-Medium);
  color: var(--nav-a-text-color, var(--fcolor-default));
}
.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;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: var(--sk-global-color);
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer {
  position: fixed;
  max-height: 80vh;
  top: calc(var(--totalH) + 0.16rem);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.9);
  width: calc(100% - 0.32rem);
  left: 0.16rem;
  height: 0;
  overflow: hidden;
  border-radius: 0 0 0.37rem 0.37rem;
}
.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.card__list_wrap .card_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.card__list_wrap .card_list .card-group {
  width: 2.88rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group:not(:last-child) {
  margin-right: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-box {
  width: 100%;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list {
  padding-top: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list .card-link {
  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;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--fcolor-default);
  font-family: var(--sk-font-Medium);
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list .card-link:not(:last-child) {
  margin-bottom: 0.08rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list .card-link:hover {
  color: var(--sk-global-color);
  --color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list .card-link:hover .arrow-inner {
  opacity: 1;
  visibility: visible;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list .card-link:hover .arrow-inner .icon {
  -webkit-animation: icon-forward-current 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward-current 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list .card-link .arrow-inner {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 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;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  color: var(--sk-global-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-group .card-link-list .card-link .arrow-inner .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-box {
  width: 2.88rem;
  height: 1.6rem;
  position: relative;
  border-radius: 0.24rem;
  overflow: hidden;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-box:not(:last-child) {
  margin-right: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-box:hover .con-box .cell-box .icon {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .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.card__list_wrap .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.card__list_wrap .card_list .card-box .con-box .cell-box {
  height: 0.44rem;
  padding: 0 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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  color: #fff;
  --color: #fff;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-box .con-box .cell-box::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.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask: -webkit-linear-gradient(transparent, #000, #000);
          mask: linear-gradient(transparent, #000, #000);
  backdrop-filter: blur(2px);
  pointer-events: none;
  border-radius: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.card__list_wrap .card_list .card-box .con-box .cell-box .title {
  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.card__list_wrap .card_list .card-box .con-box .cell-box .icon {
  width: 0.16rem;
  height: 0.16rem;
  color: #fff !important;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.link__list_wrap {
  padding-bottom: 0.48rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.link__list_wrap .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.link__list_wrap .link__list .link__item:not(:last-child) {
  margin-right: 2.04rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.link__list_wrap .link__list .link__item .link__title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
  margin-bottom: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.link__list_wrap .link__list .link__item .link__link {
  display: block;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.link__list_wrap .link__list .link__item .link__link:not(:last-child) {
  margin-bottom: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav > ul .nav-item .layer .layer__wp.link__list_wrap .link__list .link__item .link__link:hover {
  color: var(--sk-global-color);
}
.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;
  height: 100%;
}
.g-header .g-head .g-head-main .g-head-right .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;
  height: 100%;
  margin-right: 0.32rem;
  cursor: pointer;
}
.g-header .g-head .g-head-main .g-head-right .search-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  color: var(--svg-color, var(--fcolor-default));
}
.g-header .g-head .g-head-main .g-head-right .search-box .search-layer {
  height: 0;
  position: fixed;
  max-height: 80vh;
  top: calc(var(--totalH) + 0.16rem);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.9);
  width: calc(100% - 0.32rem);
  left: 0.16rem;
  overflow: hidden;
  border-radius: 0 0 0.37rem 0.37rem;
}
.g-header .g-head .g-head-main .g-head-right .search-box .search-layer .layer__wp {
  padding-top: 0.48rem;
  padding-bottom: 0.64rem;
}
.g-header .g-head .g-head-main .g-head-right .search-box .search-layer .layer__wp.search_wrap .input-box {
  margin: 0 auto;
  width: 8.96rem;
  height: 0.56rem;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .search-box .search-layer .layer__wp.search_wrap .input-box input {
  width: 100%;
  height: 100%;
  padding: 0 0.24rem;
  border-radius: 0.48rem;
  border: 1px solid rgba(19, 37, 40, 0.2);
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .g-head-right .search-box .search-layer .layer__wp.search_wrap .input-box .icon-box {
  position: absolute;
  right: 0.04rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 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;
  cursor: pointer;
  background: var(--sk-global-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .search-box .search-layer .layer__wp.search_wrap .input-box .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.g-header .g-head .g-head-main .g-head-right .language-box {
  margin-right: 0.32rem;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-trigger {
  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.08rem 0.12rem;
  border: 0;
  border-radius: 0.24rem;
  background: transparent;
  color: var(--nav-a-text-color, var(--fcolor-default));
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-trigger:hover, .g-header .g-head .g-head-main .g-head-right .language-box .language-trigger:focus-visible {
  background: rgba(19, 37, 40, 0.06);
  outline: none;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-trigger .language-current {
  max-width: 1.2rem;
  overflow: hidden;
  margin-left: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--sk-font-Medium);
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-trigger .language-arrow {
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 0.04rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.g-header .g-head .g-head-main .g-head-right .language-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  color: var(--svg-color, var(--fcolor-default));
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-dropdown {
  position: absolute;
  top: calc(100% + 0.12rem);
  left: 50%;
  right: auto;
  width: 1.76rem;
  padding: 0.08rem;
  border: 1px solid rgba(19, 37, 40, 0.08);
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.16rem 0.4rem rgba(19, 37, 40, 0.14);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -0.08rem);
      -ms-transform: translate(-50%, -0.08rem);
          transform: translate(-50%, -0.08rem);
  -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s, -webkit-transform 0.2s;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 0.14rem;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-dropdown .language-option {
  display: block;
  padding: 0.1rem 0.14rem;
  border-radius: 0.14rem;
  color: #132528;
  font-size: 0.14rem;
  line-height: 0.22rem;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-dropdown .language-option:hover, .g-header .g-head .g-head-main .g-head-right .language-box .language-dropdown .language-option:focus-visible {
  background: rgba(81, 177, 70, 0.08);
  color: var(--sk-global-color);
  outline: none;
}
.g-header .g-head .g-head-main .g-head-right .language-box .language-dropdown .language-option.on {
  background: rgba(81, 177, 70, 0.12);
  color: var(--sk-global-color);
  font-family: var(--sk-font-SemiBold);
}
.g-header .g-head .g-head-main .g-head-right .language-box.show .language-trigger .language-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.g-header .g-head .g-head-main .g-head-right .language-box.show .language-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.g-header._black {
  --g-head-bgColor: rgba(255, 255, 255, 0.1);
  --g-head-phone-background: rgba(0, 0, 0, 0.1);
}
.g-header._black:not(.isScroll):not(.search-dialog__wrapper) {
  --nav-a-text-color: #fff;
  --svg-color: #fff;
}
.g-header.bg-transparent {
  --headerHeight: 0;
  --g-head-bgColor: transparent;
  --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;
  --language-link-color: #BEC6D9;
  --language-link-on-color: #252A35;
}
.g-header.hide:not(.search-dialog__wrapper) .g-head,
.g-header.hide:not(.search-dialog__wrapper) .g-head-phone {
  -webkit-transform: translateY(calc(-100% - 0.2rem));
      -ms-transform: translateY(calc(-100% - 0.2rem));
          transform: translateY(calc(-100% - 0.2rem));
}
.g-header.dialog__wrapper {
  --g-head-bgColor: rgba(255, 255, 255, 0.9);
  --g-head-border-radius: 0.37rem 0.37rem 0 0;
}
.g-header.dialog__wrapper::after {
  opacity: 1;
  visibility: visible;
}
.g-header.search-dialog__wrapper {
  --g-head-bgColor: rgba(255, 255, 255, 0.9);
  --g-head-border-radius: 0.37rem 0.37rem 0 0;
  --g-head-phone-background: #EBEBEA;
  --g-head-phone-border-radius: 0.43rem 0.43rem 0 0;
  --g-head-phone-block: block;
  --g-head-phone-none: none;
}
.g-header.search-dialog__wrapper::after {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .g-header {
    --totalH: 0.87rem;
  }
  .g-header .g-head-phone {
    height: var(--totalH);
    width: calc(100% - 0.58rem);
    left: 0.29rem;
    top: 0.14rem;
    position: fixed;
    z-index: 100;
    background: var(--g-head-phone-background, rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px);
    border-radius: var(--g-head-phone-border-radius, 0.67rem);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .g-header .g-head-phone .head-wal {
    height: 100%;
    width: 100%;
    padding: 0 0.29rem;
  }
  .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 .left-icon-box .tree-box {
    width: 0.43rem;
    height: 0.43rem;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .left-icon-box .tree-box .tree {
    width: 100%;
    height: 100%;
    color: var(--svg-color, var(--fcolor-default));
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .logo-box .img-box {
    display: block;
    height: 0.58rem;
  }
  .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.43rem;
    height: 0.43rem;
    display: var(--g-head-phone-none, block);
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-box .icon {
    height: 100%;
    width: 100%;
    color: var(--svg-color, var(--fcolor-default));
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .close-box {
    display: var(--g-head-phone-block, none);
    width: 0.43rem;
    height: 0.43rem;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .close-box .icon {
    height: 100%;
    width: 100%;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-layer {
    position: absolute;
    top: var(--totalH);
    left: 0;
    width: 100%;
    background: #EBEBEA;
    border-radius: 0 0 0.43rem 0.43rem;
    backdrop-filter: blur(20px);
    height: 0;
    overflow: hidden;
    padding: 0;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-layer .warp-box {
    padding: 0.58rem 0.29rem;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-layer .warp-box .input-box {
    margin: 0 auto;
    width: 100%;
    height: 0.87rem;
    position: relative;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-layer .warp-box .input-box input {
    width: 100%;
    height: 100%;
    padding: 0 0.29rem;
    border-radius: 0.48rem;
    border: 1px solid #132528;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-layer .warp-box .input-box .icon-box {
    position: absolute;
    right: 0.07rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 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;
    cursor: pointer;
    background: var(--sk-global-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .g-header .g-head-phone .head-wal .g-head-logo-tree .right-icon-box .search-layer .warp-box .input-box .icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
  .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 .tree-layer-wrap {
  backdrop-filter: blur(20px);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 200;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  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;
}
.g-header .tree-layer-wrap.show {
  opacity: 1;
  visibility: visible;
}
.g-header .tree-layer-wrap .tree-layer-dialogue {
  margin-bottom: 0.15rem;
  height: calc(100% - 0.43rem);
  width: calc(100% - 0.28rem);
  background: #FFFFFF;
  border-radius: 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .head-box {
  height: 1rem;
  position: relative;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .head-box .close-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.29rem;
  width: 0.43rem;
  height: 0.43rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .head-box .close-box .icon {
  width: 100%;
  height: 100%;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .head-box .logo-box {
  height: 0.36rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .head-box .logo-box .logo {
  height: 100%;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box {
  height: calc(100% - 1rem);
  overflow: auto;
  padding: 0 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .cell-box {
  padding-top: 0.21rem;
  padding-bottom: 0.21rem;
  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 .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .cell-box .cell-title {
  font-size: 0.29rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .cell-box .icon {
  width: 0.43rem;
  height: 0.43rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap {
  backdrop-filter: blur(20px);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 200;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  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;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap.show {
  opacity: 1;
  visibility: visible;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue {
  margin-bottom: 0.15rem;
  height: calc(100% - 0.43rem);
  width: calc(100% - 0.28rem);
  background: #FFFFFF;
  border-radius: 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-head-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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1rem;
  padding: 0 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-head-box .return-box {
  width: 0.43rem;
  height: 0.43rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-head-box .return-box .icon {
  width: 100%;
  height: 100%;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-head-box .head-title {
  font-size: 0.29rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-head-box .close-box {
  width: 0.43rem;
  height: 0.43rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-head-box .close-box .icon {
  width: 100%;
  height: 100%;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box {
  height: calc(100% - 1rem);
  overflow: auto;
  padding: 0.14rem 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group {
  margin-bottom: 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-box {
  margin-bottom: 0;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list {
  padding: 0.28rem 0 0.04rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list .card-link {
  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;
  font-size: 0.27rem;
  line-height: 0.4rem;
  color: var(--fcolor-default);
  font-family: var(--sk-font-Medium);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list .card-link:not(:last-child) {
  margin-bottom: 0.08rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list .card-link:hover {
  color: var(--sk-global-color);
  --color: var(--sk-global-color);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list .card-link:hover .arrow-inner {
  opacity: 1;
  visibility: visible;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list .card-link:hover .arrow-inner .icon {
  -webkit-animation: icon-forward-current 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward-current 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list .card-link .arrow-inner {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.58rem;
  height: 0.58rem;
  margin-left: 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;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  color: var(--sk-global-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-group .card-link-list .card-link .arrow-inner .icon {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-box {
  width: 100%;
  height: 2.88rem;
  position: relative;
  border-radius: 0.29rem;
  overflow: hidden;
  display: block;
  margin-bottom: 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .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 .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-box .con-box .cell-box {
  height: 1rem;
  padding: 0 0.29rem;
  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;
  color: #fff;
  --color: #fff;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-box .con-box .cell-box::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.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask: -webkit-linear-gradient(transparent, #000, #000);
          mask: linear-gradient(transparent, #000, #000);
  backdrop-filter: blur(2px);
  pointer-events: none;
  border-radius: 0.29 rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-box .con-box .cell-box .title {
  font-size: 0.25rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .two-body-box .card-box .con-box .cell-box .icon {
  width: 0.29rem;
  height: 0.29rem;
  color: #fff !important;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .link-body-box {
  height: calc(100% - 1rem);
  overflow: auto;
  padding: 0.43rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .link-body-box .link__list .link__item {
  margin-bottom: 0.58rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .link-body-box .link__list .link__item .link__title {
  font-size: 0.32rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
  margin-bottom: 0.29rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .link-body-box .link__list .link__item .link__link {
  display: block;
  font-size: 0.25rem;
  line-height: 0.43rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .link-body-box .link__list .link__item .link__link:not(:last-child) {
  margin-bottom: 0.14rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .cell-wrap .two-layer-wrap .two-layer-dialogue .link-body-box .link__list .link__item .link__link:hover {
  color: var(--sk-global-color);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select {
  position: absolute;
  left: 0.29rem;
  bottom: 0.72rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select .language-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;
  padding: 0;
  border: 0;
  background: transparent;
  color: #132528;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select .language-btn .icno {
  width: 0.32rem;
  height: 0.32rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select .language-btn .btn-text {
  margin: 0 0.14rem;
  font-size: 0.29rem;
  line-height: 0.43rem;
  font-family: var(--sk-font-SemiBold);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select .language-btn .icon {
  width: 0.43rem;
  height: 0.43rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select .language-dropdown-mobile {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.16rem);
  width: 2.8rem;
  padding: 0.12rem;
  border: 1px solid rgba(19, 37, 40, 0.08);
  border-radius: 0.28rem;
  background: #fff;
  box-shadow: 0 0.16rem 0.4rem rgba(19, 37, 40, 0.14);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.1rem);
      -ms-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
  -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s, -webkit-transform 0.2s;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select .language-dropdown-mobile .language-option {
  display: block;
  padding: 0.16rem 0.2rem;
  border-radius: 0.2rem;
  font-size: 0.25rem;
  line-height: 0.36rem;
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select .language-dropdown-mobile .language-option.on {
  background: rgba(81, 177, 70, 0.12);
  color: var(--sk-global-color);
  font-family: var(--sk-font-SemiBold);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select.show .language-btn .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.g-header .tree-layer-wrap .tree-layer-dialogue .body-box .language-mobile-select.show .language-dropdown-mobile {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.g-header .switch-language-dialog__wrapper {
  position: fixed;
  z-index: 300;
  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;
  }
}
.g-header .language-dialog-wrpa {
  position: fixed;
  backdrop-filter: blur(20px);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  opacity: 0;
  visibility: hidden;
}
.g-header .language-dialog-wrpa.show {
  opacity: 1;
  visibility: visible;
}
.g-header .language-dialog-wrpa .language-dialog-box {
  width: 5.92rem;
  background: #EFF8F8;
  border-radius: 0.24rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box {
    width: 6.92rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .header-box {
  padding: 0.24rem;
  border-bottom: 1px solid rgba(19, 37, 40, 0.05);
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .header-box {
    padding: 0.29rem 0.43rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .header-box .title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .header-box .title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .header-box .close-box {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  width: 0.4rem;
  height: 0.4rem;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 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;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .header-box .close-box {
    width: 0.72rem;
    height: 0.72rem;
    top: 0.14rem;
    right: 0.14rem;
    border-radius: 0.72rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .header-box .close-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .header-box .close-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box {
  padding: 0.32rem 0.24rem;
  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) {
  .g-header .language-dialog-wrpa .language-dialog-box .content-box {
    padding: 0.43rem 0.43rem 0.87rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box {
  width: calc(50% - 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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.16rem 0.24rem 0.16rem 0.16rem;
  background: #FFFFFF;
  border-radius: 0.48rem;
  margin-bottom: 0.16rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box {
    width: 100%;
    padding: 0.29rem 0.43rem 0.29rem;
    border-radius: 1rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box.on .left-icon-box .icon {
  border-color: var(--sk-global-color);
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box.on .left-icon-box .icon::before {
  background: var(--sk-global-color);
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box.on .title {
  color: var(--sk-global-color);
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box.on .title span {
  background-size: 100% 100%;
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box:hover .title {
  color: var(--sk-global-color);
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .left-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 .language-dialog-wrpa .language-dialog-box .content-box .cell-box .left-icon-box .icon {
  width: 0.24rem;
  height: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(19, 37, 40, 0.4);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .left-icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .left-icon-box .icon::before {
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  background: transparent;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .left-icon-box .icon::before {
    height: 0.22rem;
    width: 0.22rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .left-icon-box .label {
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .left-icon-box .label {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .title {
  font-size: 0.14rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .g-header .language-dialog-wrpa .language-dialog-box .content-box .cell-box .title {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

@media screen and (max-width: 800px) {
  .global-offices-page .head-info {
    padding: 0 0.43rem;
  }
}
.global-offices-page .head-info .h1 {
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .h1 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.global-offices-page .head-info .head-text {
  max-width: 8rem;
  margin: 0.72rem auto 0;
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .head-text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.global-offices-page .head-info .select-box {
  margin: 0.64rem auto 0;
  width: 5.92rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .select-box {
    margin: 0.07rem;
    width: 100%;
    margin: 0.87rem auto 0;
  }
}
.global-offices-page .head-info .select-box.on {
  z-index: 2;
}
.global-offices-page .head-info .select-box.on .cell-box .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.global-offices-page .head-info .select-box .cell-box {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.24rem;
  border-radius: 0.48rem;
  cursor: pointer;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .select-box .cell-box {
    height: 0.87rem;
    padding: 0 0.29rem;
    border-radius: 0.87rem;
  }
}
.global-offices-page .head-info .select-box .cell-box .input-value {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .select-box .cell-box .input-value {
    font-size: 0.25rem;
    line-height: 0.43rem;
    margin-right: 0.14rem;
  }
}
.global-offices-page .head-info .select-box .cell-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .select-box .cell-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.global-offices-page .head-info .select-box .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.1rem;
  left: 0;
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
  background: rgba(19, 37, 40, 0.05);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .select-box .-select-layer {
    bottom: -0.14rem;
    box-shadow: 0 0.08rem 0.24rem 0 rgba(0, 0, 0, 0.1);
  }
}
.global-offices-page .head-info .select-box .-select-layer .-inner {
  background: #EFF8F8;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  padding: 0.16rem 0.04rem 0.21rem 0.22rem;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .select-box .-select-layer .-inner {
    border-radius: 0.15rem;
    padding: 0.24rem 0.08rem 0.3rem 0.24rem;
  }
}
.global-offices-page .head-info .select-box .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Medium);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .global-offices-page .head-info .select-box .-select-layer .-inner dl dd {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.global-offices-page .head-info .select-box .-select-layer .-inner dl dd.on {
  color: var(--fcolor-default);
}
.global-offices-page .head-info .select-box .-select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.global-offices-page .head-info .select-box .-select-layer .-inner dl dd:hover {
  color: #000;
}

.solutions-building-page .technological-system-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .technological-system-section {
    margin-top: 0.87rem;
    margin-bottom: 0.87rem;
  }
}
.solutions-building-page .technological-system-section .head-wrap {
  text-align: center;
  max-width: 12rem;
  margin: 0 auto;
}
.solutions-building-page .technological-system-section .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  color: #004728;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .technological-system-section .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.solutions-building-page .technological-system-section .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .solutions-building-page .technological-system-section .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.solutions-building-page .technological-system-section .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .technological-system-section .head-wrap .section-text {
    max-width: 5.77rem;
    margin: 0.72rem auto 0;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.solutions-building-page .technological-system-section .img-card-wrap {
  margin-top: 1.2rem;
  height: 9.6rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .technological-system-section .img-card-wrap {
    margin-top: 0.87rem;
    border-radius: 0.43rem;
    height: 6.63rem;
  }
  .solutions-building-page .technological-system-section .img-card-wrap::before {
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
  }
}
.solutions-building-page .technological-system-section .img-card-wrap .bg-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.solutions-building-page .technological-system-section .img-card-wrap .default___btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.solutions-building-page .key-pillars-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section {
    margin-top: 0.87rem;
    margin-bottom: 0.87rem;
  }
}
.solutions-building-page .key-pillars-section .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: #004728;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.solutions-building-page .key-pillars-section .head-wrap .h2 {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .head-wrap .h2 {
    margin-top: 0.14rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.solutions-building-page .key-pillars-section .card-list-wrap {
  margin-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .card-list-wrap {
    margin-top: 1.01rem;
  }
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item {
  width: calc(33.3333333333% - 0.16rem);
  background: #FFFFFF;
  border-radius: 0.24rem;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item {
    width: 5.34rem;
    border-radius: 0.43rem;
  }
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item:hover .img-box .img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .img-box {
  height: 3.36rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .img-box {
    height: 3.03rem;
  }
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .img-box .img {
  width: 100%;
  height: 100%;
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .card-con-box {
  padding: 0.32rem 0.64rem 0.32rem 0.32rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .card-con-box {
    padding: 0.43rem;
  }
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .card-con-box .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .card-con-box .card-title {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .card-con-box .card-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .key-pillars-section .card-list-wrap .card-list .card-item .card-con-box .card-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn {
  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;
  margin-top: 0.43rem;
}
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-prev,
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-next {
  margin-left: 0.14rem;
  height: 0.72rem;
  width: 0.72rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-prev.swiper-button-disabled,
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(19, 37, 40, 0.1);
}
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-prev.swiper-button-disabled .icon path,
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-next.swiper-button-disabled .icon path {
  stroke: #132528;
}
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-prev .icon,
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-next .icon {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
}
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-prev .icon path,
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.solutions-building-page .key-pillars-section .card-list-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}
.solutions-building-page .product-viewer-component .head-wrap {
  text-align: left;
  max-width: 100%;
}
.solutions-building-page .product-viewer-component .card-component {
  margin-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .solutions-building-page .delivery-section {
    margin-bottom: 1.15rem;
  }
}

.application-scenarios-section {
  margin-top: 1.2rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section {
    overflow: hidden;
    margin-top: 0.87rem;
    padding-bottom: 1.15rem;
  }
}
.application-scenarios-section .head-wrap {
  margin: 0 auto;
}
.application-scenarios-section .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  color: #004728;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.application-scenarios-section .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.application-scenarios-section .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .head-wrap .section-text {
    font-size: 0.29rem;
    line-height: 0.43rem;
    max-width: 5.7rem;
  }
}
.application-scenarios-section .card-wrap {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap {
    margin-top: 0.58rem;
  }
}
.application-scenarios-section .card-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap .card-list {
    margin: 0;
  }
}
.application-scenarios-section .card-wrap .card-list .card-item {
  width: calc(33.3333333333% - 0.16rem);
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap .card-list .card-item {
    width: 5.34rem;
    border-radius: 0.43rem;
  }
}
.application-scenarios-section .card-wrap .card-list .card-item:hover .img-box .img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.application-scenarios-section .card-wrap .card-list .card-item .img-box {
  height: 3.36rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap .card-list .card-item .img-box {
    height: 3.03rem;
  }
}
.application-scenarios-section .card-wrap .card-list .card-item .img-box .img {
  width: 100%;
  height: 100%;
}
.application-scenarios-section .card-wrap .card-list .card-item .title-con {
  padding: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap .card-list .card-item .title-con {
    padding: 0.43rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.application-scenarios-section .card-wrap .swiper-btn {
  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;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap .swiper-btn {
    margin-top: 0.43rem;
  }
}
.application-scenarios-section .card-wrap .swiper-btn .btn-prev,
.application-scenarios-section .card-wrap .swiper-btn .btn-next {
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 0.56rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap .swiper-btn .btn-prev,
  .application-scenarios-section .card-wrap .swiper-btn .btn-next {
    margin-left: 0.14rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.application-scenarios-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled,
.application-scenarios-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(19, 37, 40, 0.1);
}
.application-scenarios-section .card-wrap .swiper-btn .btn-prev.swiper-button-disabled .icon path,
.application-scenarios-section .card-wrap .swiper-btn .btn-next.swiper-button-disabled .icon path {
  stroke: #132528;
}
.application-scenarios-section .card-wrap .swiper-btn .btn-prev .icon,
.application-scenarios-section .card-wrap .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .application-scenarios-section .card-wrap .swiper-btn .btn-prev .icon,
  .application-scenarios-section .card-wrap .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.application-scenarios-section .card-wrap .swiper-btn .btn-prev .icon path,
.application-scenarios-section .card-wrap .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.application-scenarios-section .card-wrap .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.application-scenarios-section .card-wrap .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}

.ems-page .product-viewer-component .head-wrap {
  text-align: left;
  max-width: 100%;
}
.ems-page .product-viewer-component .card-component {
  margin-top: 1.04rem;
}

.icair-page .about-iCAIR-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section {
    overflow: hidden;
    padding: 0;
  }
}
.icair-page .about-iCAIR-section .head-wrap {
  max-width: 12rem;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .head-wrap {
    max-width: 5.77rem;
  }
}
.icair-page .about-iCAIR-section .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.icair-page .about-iCAIR-section .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .head-wrap .section-text {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap {
  margin-top: 0.64rem;
  height: 7.2rem;
  position: relative;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap {
    width: 7.21rem;
    margin: 0.87rem auto 0;
    border-radius: 0.43rem;
    height: 11.54rem;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .text1 {
  position: absolute;
  z-index: 2;
  width: 5.9rem;
  text-align: center;
  left: 0;
  top: 0.96rem;
  color: #fff;
  font-family: var(--sk-font-SemiBold);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .text1 {
    width: 100%;
    top: auto;
    bottom: 3.17rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .text2 {
  position: absolute;
  z-index: 2;
  width: 5.9rem;
  text-align: center;
  right: 0;
  bottom: 0.96rem;
  color: #fff;
  font-family: var(--sk-font-SemiBold);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .text2 {
    width: 100%;
    top: 3.03rem;
    bottom: auto;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .img1 {
  position: absolute;
  height: calc(100% - 1.28rem);
  left: 0;
  top: 1.28rem;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .img1 {
    width: 3.75rem;
    height: 3.75rem;
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    object-fit: contain;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .img2 {
  position: absolute;
  height: calc(100% - 1.28rem);
  right: 0;
  top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .bg-img-2 .img2 {
    width: 3.75rem;
    height: 3.75rem;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    object-fit: contain;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .gif-wrap {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.icair-page .about-iCAIR-section .ai-model-wrap .gif-wrap .gif-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8rem;
  height: 6rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .gif-wrap .gif-img {
    width: 6.8rem;
    height: 6.8rem;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .gif-wrap .gif-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
  background: -webkit-linear-gradient(left, #FFFFFF 0%, #51B146 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, #51B146 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .gif-wrap .gif-text {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 12.16rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .flying-wire {
    width: 1px;
    overflow: hidden;
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire.on .wire::before {
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire.on .wire:nth-child(1)::before, .icair-page .about-iCAIR-section .ai-model-wrap .flying-wire.on .wire:nth-child(5)::before {
  -webkit-animation-name: flying-wire-vertical-down;
          animation-name: flying-wire-vertical-down;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire.on .wire:nth-child(2)::before, .icair-page .about-iCAIR-section .ai-model-wrap .flying-wire.on .wire:nth-child(6)::before {
  -webkit-animation-name: flying-wire-vertical-up;
          animation-name: flying-wire-vertical-up;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire.on .wire:nth-child(3)::before {
  -webkit-animation-name: flying-wire-horizontal-right;
          animation-name: flying-wire-horizontal-right;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire.on .wire:nth-child(4)::before {
  -webkit-animation-name: flying-wire-horizontal-left;
          animation-name: flying-wire-horizontal-left;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire {
    background-color: rgba(255, 255, 255, 0.05);
  }
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(1) {
  left: 0;
  top: 0;
  height: 50%;
  width: 2px;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(1)::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 0.96rem;
  width: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background: -webkit-linear-gradient(bottom, rgb(81, 177, 70), rgba(81, 177, 70, 0));
  background: linear-gradient(0deg, rgb(81, 177, 70), rgba(81, 177, 70, 0));
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(2) {
  left: 0;
  bottom: 0;
  height: 50%;
  width: 2px;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(2)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 0.96rem;
  width: 100%;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  background: -webkit-linear-gradient(top, rgb(81, 177, 70), rgba(81, 177, 70, 0));
  background: linear-gradient(180deg, rgb(81, 177, 70), rgba(81, 177, 70, 0));
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(3) {
  left: 0;
  top: 50%;
  height: 2px;
  width: 50%;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(3)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0.96rem;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  background: -webkit-linear-gradient(right, rgb(81, 177, 70), rgba(81, 177, 70, 0));
  background: linear-gradient(270deg, rgb(81, 177, 70), rgba(81, 177, 70, 0));
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(4) {
  right: 0;
  top: 50%;
  height: 2px;
  width: 50%;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(4)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 0.96rem;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  background: -webkit-linear-gradient(left, rgb(81, 177, 70), rgba(81, 177, 70, 0));
  background: linear-gradient(90deg, rgb(81, 177, 70), rgba(81, 177, 70, 0));
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(5) {
  right: 0;
  top: 0;
  height: 50%;
  width: 2px;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(5)::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 0.96rem;
  width: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background: -webkit-linear-gradient(bottom, rgb(81, 177, 70), rgba(81, 177, 70, 0));
  background: linear-gradient(0deg, rgb(81, 177, 70), rgba(81, 177, 70, 0));
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(6) {
  right: 0;
  bottom: 0;
  height: 50%;
  width: 2px;
}
.icair-page .about-iCAIR-section .ai-model-wrap .flying-wire .wire:nth-child(6)::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 0.96rem;
  width: 100%;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  background: -webkit-linear-gradient(top, rgb(81, 177, 70), rgba(81, 177, 70, 0));
  background: linear-gradient(180deg, rgb(81, 177, 70), rgba(81, 177, 70, 0));
}
@-webkit-keyframes flying-wire-vertical-down {
  0% {
    top: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  45.45% {
    top: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    top: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes flying-wire-vertical-down {
  0% {
    top: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  45.45% {
    top: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    top: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes flying-wire-vertical-up {
  0% {
    bottom: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  45.45% {
    bottom: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    bottom: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes flying-wire-vertical-up {
  0% {
    bottom: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  45.45% {
    bottom: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    bottom: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes flying-wire-horizontal-right {
  0% {
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  45.45% {
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes flying-wire-horizontal-right {
  0% {
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  45.45% {
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    left: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes flying-wire-horizontal-left {
  0% {
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  45.45% {
    right: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    right: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes flying-wire-horizontal-left {
  0% {
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  45.45% {
    right: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    right: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.icair-page .product-viewer-component .head-wrap {
  text-align: left;
  max-width: 100%;
}
.icair-page .product-viewer-component .card-component {
  margin-top: 1.04rem;
}

.jolyhi-page .about-jolyhi-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.jolyhi-page .about-jolyhi-section .head-wrap {
  max-width: 12rem;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .head-wrap {
    max-width: 5.77rem;
  }
}
.jolyhi-page .about-jolyhi-section .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.jolyhi-page .about-jolyhi-section .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .head-wrap .section-text {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap {
  margin-top: 0.64rem;
  height: 7.2rem;
  position: relative;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap {
    margin-top: 0.87rem;
    height: 10.53rem;
    border-radius: 0.43rem;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .pro-img {
  position: absolute;
  top: calc(50% + 0.16rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5.28rem;
  height: 5.28rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap .pro-img {
    top: 1.15rem;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 5.14rem;
    height: 5.14rem;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap {
    height: auto;
    top: auto;
    bottom: 0.29rem;
  }
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list {
    height: auto;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.24rem;
  backdrop-filter: blur(40px);
  padding: 0.24rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item:nth-child(1) {
  top: 27%;
  left: 22%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item:nth-child(2) {
  top: 26%;
  left: 64%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item:nth-child(3) {
  top: 41%;
  left: 87%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item:nth-child(4) {
  top: 73%;
  left: 80%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item:nth-child(5) {
  top: 81%;
  left: 65%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item:nth-child(6) {
  top: 81%;
  left: 35%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item:nth-child(7) {
  top: 62%;
  left: 14%;
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item .icon {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item .icon {
    width: 0.87rem;
    height: 0.87rem;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item .card-title {
  margin-top: 0.48rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: -webkit-linear-gradient(left, #FFFFFF 0%, #51B146 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, #51B146 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item .card-title {
    margin-top: 0.58rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item .card-text {
  margin-top: 0.08rem;
  color: #FFFFFF;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .card-list .card-item .card-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.jolyhi-page .about-jolyhi-section .ai-model-wrap .card-list-wrap .hint {
  margin-top: 0.43rem;
  text-align: center;
  font-size: 0.22rem;
  line-height: 0.29rem;
  color: rgba(255, 255, 255, 0.4);
}
.jolyhi-page .product-viewer-component .head-wrap {
  text-align: left;
  max-width: 100%;
}
.jolyhi-page .product-viewer-component .card-component {
  margin-top: 1.04rem;
}

.index-page .fff-bg {
  background-color: #fff;
}
.index-page .banner-section {
  position: relative;
  background: #0E1419;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section {
    overflow: hidden;
  }
  .index-page .banner-section .sk-tab-box {
    max-width: calc(100% - 0.43rem);
  }
}
.index-page .banner-section .bg-con {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .bg-con {
    height: 100%;
    background: -webkit-linear-gradient(top, #0E1011 33.58%, rgba(18, 20, 20, 0) 49.52%, #161818 100%);
    background: linear-gradient(180deg, #0E1011 33.58%, rgba(18, 20, 20, 0) 49.52%, #161818 100%);
  }
}
.index-page .banner-section .bg-con .bg-img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
}
.index-page .banner-section .bg-con .bg-img.show {
  display: block;
}
.index-page .banner-section .bg-con .bg-video {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .bg-con .bg-video {
    object-fit: contain;
    object-position: center calc(50% + 0.87rem);
  }
}
.index-page .banner-section .bg-con .bg-video.show {
  display: block;
}
.index-page .banner-section .con_wrap {
  position: relative;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
}
.index-page .banner-section .con_wrap .en-title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding-top: 1.52rem;
  margin: 0 auto;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-EN-font-SemiBold-Science);
  background: -webkit-linear-gradient(left, #FFFFFF 0%, #999999 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .en-title {
    padding-top: 1.6rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.index-page .banner-section .con_wrap .h1 {
  padding-top: 0.24rem;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
  background: -webkit-linear-gradient(left, #FFFFFF 0%, #999999 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .h1 {
    padding-top: 0.14rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.index-page .banner-section .con_wrap .line__ellipsis {
  bottom: -0.3rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .line__ellipsis {
    bottom: -0.46rem;
  }
}
.index-page .banner-section .con_wrap .tab-wrap {
  text-align: center;
  margin-top: 0.56rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-wrap {
    margin-top: 1rem;
  }
  .index-page .banner-section .con_wrap .tab-wrap .sk-tab-box .tab-wrapper {
    padding: 0.07rem;
    overflow: hidden;
  }
  .index-page .banner-section .con_wrap .tab-wrap .sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s .inner {
    padding: 0 0.22rem;
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item {
  display: none;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item.show {
  display: block;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.56rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper {
    padding-bottom: 1.74rem;
    margin-top: 0.43rem;
    -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 .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box {
  width: 3.6rem;
  padding: 0 0.32rem;
  border-left: 1px solid rgba(219, 225, 210, 0.2);
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box {
    margin-left: 0;
    padding: 0;
    width: 100%;
    border-left: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .default___btn {
    margin-top: 0.58rem;
  }
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0.14rem;
    border-bottom: 1px solid rgba(219, 225, 210, 0.2);
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sk-font-SemiBold);
  cursor: default;
  position: relative;
  padding: 0.08rem 0;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li {
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0;
  }
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li:not(:last-child) {
    margin-right: 0.58rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li:hover {
  color: var(--sk-global-color);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li.on {
  color: var(--sk-global-color);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li.on::before {
  background-color: var(--sk-global-color);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li::before {
  content: "";
  top: 0;
  position: absolute;
  height: 100%;
  width: 2px;
  left: -0.33rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .left-box .cell-box-wrap .cell-box .cell-li::before {
    width: 100%;
    height: 2px;
    top: auto;
    bottom: -0.15rem;
    left: 0;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap {
  width: 8.96rem;
  height: 4.88rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0.43rem;
    width: 100%;
    height: 3.61rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box {
  height: 100%;
  width: 100%;
  position: relative;
  display: none;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box.show {
  display: block;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box {
    height: 100%;
    width: 100%;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-img-box {
  position: relative;
  height: 100%;
  width: 100%;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-img-box .tab-con-img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  padding: 0.05rem;
  border-radius: 0.18rem;
  background-color: #000000;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-img-box .tab-con-img {
    padding: 0.08rem;
    border-radius: 0.2rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-img-box .tab-con-img.on {
  opacity: 1;
  visibility: visible;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-img-box .tab-con-img .img {
  height: 100%;
  border-radius: 0.13rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-img-box .tab-con-img .img {
    border-radius: 0.14rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.96rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap {
    bottom: -1.16rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item {
  cursor: pointer;
  padding: 0 0.16rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.14rem;
  line-height: 0.24rem;
  border-radius: 0.48rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sk-font-SemiBold);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item {
    padding: 0 0.25rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
    height: 0.58rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item:not(:last-child) {
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item:not(:last-child) {
    margin-right: 0.14rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item.on {
  color: var(--sk-global-color);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item.on .bg-svg {
  opacity: 1;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item.on .bg-svg rect.run {
  -webkit-animation: centerTabProgress 5s linear forwards;
          animation: centerTabProgress 5s linear forwards;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item:hover {
  color: var(--sk-global-color);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item .bg-svg {
  position: absolute;
  top: -1px;
  left: -1px;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  opacity: 0;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item .bg-svg rect {
  stroke-dashoffset: 275;
  rx: 0.19rem;
  height: 95%;
  width: 98%;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .center-box-wrap .center-box .tab-con-btn-wrap .tab-item .bg-svg rect {
    rx: 0.29rem;
    stroke-width: 1;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp {
  width: 3.6rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0.58rem;
    width: 100%;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box {
  display: none;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box.show {
  display: block;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .right-title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .right-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .right-text {
  margin-top: 0.08rem;
  color: #FFFFFF;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .right-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap {
  margin-top: 0.32rem;
  -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) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box {
  padding: 0.16rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border-radius: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box {
    width: 5.34rem;
    padding: 0.29rem;
    border-radius: 0.29rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box:not(:last-child) {
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box:not(:last-child) {
    margin-bottom: 0;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box .icon {
    width: 0.43rem;
    height: 0.43rem;
    margin-right: 0.29rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box .con-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box .con-text .card-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 .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box .con-text .card-title {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box .con-text .card-text {
  margin-top: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .flex-box-wrapper .right-box-warp .right-box .card-wrap .card-box .con-text .card-text {
    margin-top: 0.14rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex {
  padding-bottom: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex {
    padding-bottom: 0.43rem;
    padding-left: 0.43rem;
    padding-right: 0.43rem;
    margin-top: 0.79rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp {
  position: absolute;
  z-index: 3;
  min-width: 2.88rem;
  top: 0;
  left: 1.04rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp {
    position: relative;
    z-index: 10;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap {
    overflow: visible;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list {
  -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) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 1.15rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box {
  padding: 0.24rem;
  background: rgba(19, 37, 40, 0.2);
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  backdrop-filter: blur(20px);
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box {
    width: auto;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 0;
    padding: 0.29rem 0.43rem 0.29rem 0.29rem;
    border-radius: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head {
  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;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .icon-box {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 0.32rem;
  background: rgba(19, 37, 40, 0.2);
  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 .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .icon-box {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 0.58rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .icon-box .icon:first-child {
  display: block;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .icon-box .icon:last-child {
  display: none;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .head-text {
  margin-left: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-head .head-text {
    margin-left: 0.29rem;
    font-size: 0.29rem;
    line-height: 0.58rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-body {
  overflow: hidden;
  height: 0;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-body .ul {
  padding-top: 0.16rem;
  padding-left: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-body .ul {
    padding-top: 0.29rem;
    padding-left: 0.4rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-body .ul .li {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-body .ul .li {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-body .ul .li::before {
  content: "";
  position: absolute;
  left: -0.14rem;
  top: 0.1rem;
  height: 0.04rem;
  width: 0.04rem;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box .cell-body .ul .li::before {
    top: 0.18rem;
    left: -0.18rem;
    height: 0.06rem;
    width: 0.06rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box.expanded .cell-head .icon-box .icon:first-child {
  display: none;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .left-cell-warp .cell-wrap .cell-list .cell-box.expanded .cell-head .icon-box .icon:last-child {
  display: block;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap {
  margin: 0.96rem auto 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap {
    margin: 1.5rem auto 0;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap .video-box {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.05rem;
  border-radius: 0.18rem;
  background-color: #000000;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap .video-box {
    padding: 0.08rem;
    border-radius: 0.2rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap .video-box .before {
  position: absolute;
  max-width: none;
  top: calc(100% - 0.23rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 1.1rem);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap .video-box .video {
  width: 8.96rem;
  min-height: 3rem;
  border-radius: 0.13rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap .video-box .video {
    width: 6.63rem;
    min-height: 2rem;
    border-radius: 0.14rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap .bg-text {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  bottom: -0.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-family: var(--sk-EN-font-SemiBold);
  background: -webkit-linear-gradient(top, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .video-wrap .bg-text {
    font-size: 1.15rem;
    line-height: 1.3rem;
    bottom: 0.3rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0.82rem auto 0;
  background: rgba(19, 37, 40, 0.1);
  height: 0.56rem;
  border-radius: 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;
  padding: 0 0.32rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap {
    margin: 1rem auto 0;
    height: auto;
    max-width: 100%;
    padding: 0.29rem;
    border-radius: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-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;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list {
    -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;
    row-gap: 0.14rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-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;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item:not(:first-child)::before {
  content: "";
  display: inline-block;
  margin: 0 0.48rem;
  height: 0.16rem;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item:not(:first-child)::before {
    margin: 0 0.43rem;
    height: 0.29rem;
  }
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item:not(:first-child):nth-child(2n-1)::before {
    display: none;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item .icon {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item .tag-text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #FFFFFF;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .tag-wrap .tag-list .tag-item .tag-text {
    margin-left: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap {
  position: absolute;
  top: -0.6rem;
  right: 1.7rem;
  height: 5.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .product-img {
  height: 100%;
  max-width: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp {
  position: absolute;
  top: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0.12rem);
      -ms-transform: translateX(-50%) translateY(0.12rem);
          transform: translateX(-50%) translateY(0.12rem);
  -webkit-transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
  opacity: 0;
  visibility: hidden;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp.show .block-box {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp.show .block-card {
  opacity: 1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp:nth-child(2) {
  top: 34%;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp:nth-child(2) .block-box {
  height: 1.82rem;
  background: rgba(255, 157, 0, 0.6);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp:nth-child(3) {
  top: 67%;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp:nth-child(3) .block-box {
  height: 0.87rem;
  background: rgba(98, 255, 0, 0.6);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp:nth-child(4) {
  top: 82%;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp:nth-child(4) .block-box {
  height: 0.6rem;
  background: rgba(136, 0, 255, 0.6);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp .block-box {
  width: 1.44rem;
  height: 1.44rem;
  background: rgba(0, 208, 255, 0.6);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
  -webkit-transform: scale(0.96);
      -ms-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-transition: opacity 0.28s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.28s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.28s ease, transform 0.28s ease;
  transition: opacity 0.28s ease, transform 0.28s ease, -webkit-transform 0.28s ease;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp .block-card {
  position: absolute;
  left: calc(100% + 0.23rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: rgba(19, 37, 40, 0.2);
  border-radius: 0.16rem;
  backdrop-filter: blur(20px);
  width: max-content;
  min-width: 2.11rem;
  max-width: 3rem;
  padding: 0.24rem;
  top: 50%;
  color: #FFFFFF;
  opacity: 0;
  -webkit-transition: opacity 0.32s ease 0.04s, -webkit-transform 0.32s ease 0.04s;
  transition: opacity 0.32s ease 0.04s, -webkit-transform 0.32s ease 0.04s;
  transition: opacity 0.32s ease 0.04s, transform 0.32s ease 0.04s;
  transition: opacity 0.32s ease 0.04s, transform 0.32s ease 0.04s, -webkit-transform 0.32s ease 0.04s;
  -webkit-transform: translateY(calc(-50% + 0.08rem));
      -ms-transform: translateY(calc(-50% + 0.08rem));
          transform: translateY(calc(-50% + 0.08rem));
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp .block-card .card-title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp .block-card .ul {
  padding-top: 0.16rem;
  padding-left: 0.24rem;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp .block-card .ul .li {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #FFFFFF;
  position: relative;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .jolyhi-ai-flex .right-product-wrap .block-warp .block-card .ul .li::before {
  content: "";
  position: absolute;
  left: -0.14rem;
  top: 0.1rem;
  height: 0.04rem;
  width: 0.04rem;
  border-radius: 50%;
  background-color: #fff;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box {
  position: absolute;
  right: 0.32rem;
  bottom: 0.32rem;
  width: 4.4rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0.16rem;
  backdrop-filter: blur(20px);
  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;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(0.12rem);
      -ms-transform: translateY(0.12rem);
          transform: translateY(0.12rem);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box {
    width: calc(100% - 0.58rem);
    right: 0.29rem;
    bottom: 0.29rem;
    border-radius: 0.29rem;
    padding: 0.29rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .img-box {
  width: 1.2rem;
  height: 1.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .img-box {
    width: 1.44rem;
    height: 1.44rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .con-list {
  width: 2.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .con-list {
    width: 4.33rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .con-list .text {
  padding-top: 0.08rem;
  padding-bottom: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sk-font-Medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .con-list .text {
    padding-top: 0;
    padding-bottom: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.58rem;
  }
}
.index-page .banner-section .con_wrap .tab-con .tab-con-item .card-list-wrap .card-list .card-box .con-list .text:first-child {
  padding-top: 0;
}
@-webkit-keyframes centerTabProgress {
  from {
    stroke-dashoffset: 275;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes centerTabProgress {
  from {
    stroke-dashoffset: 275;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.index-page .delivery-section {
  padding-bottom: 0.6rem;
}
.index-page .product-viewer-component {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 800px) {
  .index-page .product-viewer-component {
    padding-top: 1rem;
  }
}
.index-page .product-viewer-component.fff-bg {
  background-color: #fff;
}
.index-page .product-viewer-component .head-wrap {
  text-align: left;
  max-width: 100%;
  position: relative;
}
.index-page .product-viewer-component .head-wrap .section-text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .product-viewer-component .head-wrap .section-text {
    position: static;
    margin-top: 0.72rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    max-width: 6.22rem;
  }
  .index-page .product-viewer-component .head-wrap .section-text br {
    display: none;
  }
}
.index-page .product-viewer-component .card-component {
  margin-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .index-page .product-viewer-component .card-component {
    margin-top: 0.58rem;
  }
}
.index-page .leftImg-rightSwiper-section {
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section {
    margin-top: 0.87rem;
    margin-bottom: 1.15rem;
  }
}
.index-page .leftImg-rightSwiper-section .head-wrap {
  margin: 0 auto;
}
.index-page .leftImg-rightSwiper-section .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  color: #004728;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.index-page .leftImg-rightSwiper-section .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.index-page .leftImg-rightSwiper-section .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .head-wrap .section-text {
    font-size: 0.29rem;
    line-height: 0.43rem;
    max-width: 5.7rem;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.04rem;
  height: 8.4rem;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .left-img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .left-img {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    height: 8.22rem;
    border-radius: 0.43rem;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .left-img .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index-page .leftImg-rightSwiper-section .flex-box .left-img .default___btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card {
  margin-left: 0.16rem;
  width: 4.4rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 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;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card {
    margin-left: 0;
    margin-top: 0.29rem;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0.16rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    border-radius: 0.43rem;
    margin-bottom: 0.29rem;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box {
  height: 100%;
  padding: 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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box {
    padding: 0.87rem 0.58rem 1rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
  width: 100%;
  height: 3.44rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
    height: 3.89rem;
    width: 3.89rem;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
  position: absolute;
  width: calc(100% - 0.32rem);
  height: calc(100% - 0.32rem);
  top: 0.08rem;
  left: 0.16rem;
  border-radius: 50%;
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .img-box .bg-url {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .card-con {
    margin-top: 0.87rem;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .card-con .card-title {
  color: var(--sk-global-color);
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .card-con .card-title {
    font-size: 0.36rem;
    line-height: 0.43rem;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .card-con .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  color: var(--sk-global-color);
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .card-con .subtitle {
    margin-top: 0.29rem;
    font-size: 0.36rem;
    line-height: 0.43rem;
  }
}
.index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .card-con .card-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .card-swiper .swiper-wrapper .swiper-slide .card-box .card-con .card-text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.4rem;
  }
}
@media screen and (min-width: 800px) {
  .index-page .leftImg-rightSwiper-section .flex-box .right-card .sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s .inner {
    padding: 0 0.25rem;
    font-size: 0.14rem;
  }
}
.index-page .three-major-product-lines-section {
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section {
    margin-top: 1.15rem;
    margin-bottom: 1.15rem;
  }
}
.index-page .three-major-product-lines-section .head-wrap {
  margin: 0 auto;
  text-align: left;
  max-width: 100%;
  position: relative;
}
.index-page .three-major-product-lines-section .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-bottom: 0.16rem;
  color: #004728;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.index-page .three-major-product-lines-section .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .head-wrap .h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
    max-width: 6.2rem;
  }
}
.index-page .three-major-product-lines-section .head-wrap .section-text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .head-wrap .section-text {
    position: static;
    margin-top: 0.72rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    max-width: 6.22rem;
  }
  .index-page .three-major-product-lines-section .head-wrap .section-text br {
    display: none;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap {
  margin-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap {
    margin-top: 0.58rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.08rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list {
    margin: -0.15rem 0;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item {
  margin: 0.08rem;
  width: calc(33.3333333333% - 0.16rem);
  min-height: 6.4rem;
  padding: 0.32rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item {
    margin: 0.15rem 0;
    width: 100%;
    min-height: 0;
    padding: 0.34rem;
    border-radius: 0.43rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box {
  position: relative;
  z-index: 5;
  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;
  height: 100%;
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .img-box {
  height: 2rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .img-box {
    height: 2.74rem;
    border-radius: 0.29rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .img-box .img {
  width: 100%;
  height: 100%;
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .card-title {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .card-title {
    margin-top: 0.43rem;
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .card-text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .card-text {
    margin-top: 0.43rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul {
    margin-top: 0.43rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul .li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul .li:not(:last-child) {
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul .li:not(:last-child) {
    margin-bottom: 0.14rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul .li .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul .li .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul .li .text {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-top .ul .li .text {
    margin-left: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-bottom {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-bottom {
    margin-top: 0.43rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-bottom .link {
  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: 100%;
  height: 0.48rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-bottom .link {
    height: 0.87rem;
    border-radius: 0.72rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.index-page .three-major-product-lines-section .card-list-wrap .card-list .card-item .con-box .flex-bottom .link:hover {
  color: var(--sk-global-color);
  background: #FFFFFF;
}
.index-page .AI-decision-section {
  margin-top: 1.6rem;
  margin-bottom: 1.2rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .AI-decision-section {
    overflow: hidden;
    margin-top: 1.15rem;
    margin-bottom: 0.87rem;
  }
}
.index-page .AI-decision-section .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .AI-decision-section .con {
  padding-top: 0.96rem;
  padding-bottom: 0.64rem;
}
@media screen and (max-width: 800px) {
  .index-page .AI-decision-section .con {
    padding-top: 1.15rem;
    padding-bottom: 0.87rem;
  }
}
.index-page .AI-decision-section .con .head-wrap {
  text-align: center;
  color: #FFFFFF;
}
.index-page .AI-decision-section .con .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .index-page .AI-decision-section .con .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.index-page .AI-decision-section .con .head-wrap .h2 {
  margin: 0.16rem auto 0;
  font-size: 0.48rem;
  line-height: 0.56rem;
  background: -webkit-linear-gradient(left, #FFFFFF 0%, #999999 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .index-page .AI-decision-section .con .head-wrap .h2 {
    margin: 0.14rem auto 0;
    font-size: 0.43rem;
    line-height: 0.58rem;
    max-width: 5.63rem;
  }
}
.index-page .AI-decision-section .con .head-wrap .head-text {
  margin: 0.72rem auto 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 8.96rem;
}
@media screen and (max-width: 800px) {
  .index-page .AI-decision-section .con .head-wrap .head-text {
    font-size: 0.25rem;
    line-height: 0.43rem;
    max-width: 5.63rem;
  }
}
.index-page .AI-decision-section .con .img-wrap {
  margin: 0.64rem auto 0;
  width: 12rem;
  height: 6.8rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .AI-decision-section .con .img-wrap {
    margin: 1.3rem auto 0;
    width: 6.63rem;
    height: 3.61rem;
  }
}
.index-page .AI-decision-section .con .img-wrap .img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.index-page .AI-decision-section .con .img-wrap .img.on {
  opacity: 1;
  visibility: visible;
}
.index-page .AI-decision-section .con .tab-wrap {
  margin: 0.4rem auto 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .index-page .AI-decision-section .con .tab-wrap {
    margin: 0.87rem auto 0;
  }
}
.index-page .perfect-delivery-section {
  margin-top: 1.2rem;
  margin-bottom: 2.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section {
    margin-top: 0.87rem;
    margin-bottom: 1.15rem;
    padding-bottom: 1.15rem;
    position: relative;
  }
}
.index-page .perfect-delivery-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box {
  width: 6.08rem;
  padding-right: 1.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-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 .perfect-delivery-section .flex-box .left-box {
    width: 100%;
    padding-right: 0;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: #004728;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .left-box .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box .head-wrap .h2 {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .left-box .head-wrap .h2 {
    margin-top: 0.14rem;
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .left-box .bottom-box {
    margin-top: 1.3rem;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .bottom-text {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .left-box .bottom-box .bottom-text {
    font-size: 0.36rem;
    line-height: 0.43rem;
    max-width: 5.34rem;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .bottom-text span {
  color: var(--sk-global-color);
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn {
    position: absolute;
    bottom: 0;
    right: 0.87rem;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev,
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next {
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: #132528;
  border-radius: 0.56rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev,
  .index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next {
    margin-left: 0.14rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev.swiper-button-disabled,
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  backdrop-filter: blur(40px);
  background: rgba(19, 37, 40, 0.1);
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev.swiper-button-disabled .icon path,
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next.swiper-button-disabled .icon path {
  stroke: #132528;
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev .icon,
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev .icon,
  .index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev .icon path,
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next .icon path {
  stroke: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-prev:not(.swiper-button-disabled):hover,
.index-page .perfect-delivery-section .flex-box .left-box .bottom-box .swiper-btn .btn-next:not(.swiper-button-disabled):hover {
  background-color: var(--sk-global-color);
}
.index-page .perfect-delivery-section .flex-box .right-swiper {
  width: calc(100% - 6.08rem);
  -webkit-clip-path: inset(0 -2rem 0 0);
          clip-path: inset(0 -2rem 0 0);
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper {
    margin-top: 0.58rem;
    width: 100%;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper {
  width: 8.96rem;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper {
    width: 100%;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide {
  height: 6.72rem;
  width: 8.96rem;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide {
    height: auto;
    width: 5.34rem;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item {
    border-radius: 0.43rem;
    background: #FFFFFF;
  }
}
@media screen and (min-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item:hover .img-bg {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item:hover .con-card-box .cell-box .title-icon .arrow-inner {
    background: var(--sk-global-color);
  }
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item:hover .con-card-box .cell-box .title-icon .arrow-inner .icon {
    -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
            animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .img-bg {
    position: static;
    width: 5.34rem;
    height: 4.04rem;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box {
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box {
    height: auto;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box {
  width: 100%;
  padding: 0.32rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box {
    padding: 0.29rem 0.29rem 0.58rem;
    background: none;
    color: #132528;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .title-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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .title-icon .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  --color: #fff;
  padding-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .title-icon .card-title {
    font-size: 0.32rem;
    line-height: 0.58rem;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .title-icon .arrow-inner {
  width: 0.32rem;
  height: 0.32rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 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;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .title-icon .arrow-inner {
    display: none;
  }
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .title-icon .arrow-inner .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
  color: var(--fcolor-default);
}
.index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .card-text {
  margin-top: 0.16rem;
  max-width: 7.12rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  min-height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .index-page .perfect-delivery-section .flex-box .right-swiper .card-swiper .swiper-wrapper .swiper-slide .card-item .con-card-box .cell-box .card-text {
    margin-top: 0.29rem;
    color: rgba(19, 37, 40, 0.6);
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.index-page .marquee-section {
  padding-top: 1rem;
  padding-bottom: 1.6rem;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .index-page .marquee-section {
    padding-top: 1rem;
    padding-bottom: 1.73rem;
  }
}
.index-page .marquee-section .marquee-wrap .marquee {
  --animation-duration: 15s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee var(--animation-duration) linear infinite;
          animation: marquee var(--animation-duration) linear infinite;
}
.index-page .marquee-section .marquee-wrap .marquee:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.index-page .marquee-section .marquee-wrap .marquee:nth-child(2n) {
  margin-top: 0.16rem;
  -webkit-animation: marquee-left var(--animation-duration) linear infinite;
          animation: marquee-left var(--animation-duration) linear infinite;
}
@media screen and (max-width: 800px) {
  .index-page .marquee-section .marquee-wrap .marquee:nth-child(2n) {
    margin-top: 0.14rem;
  }
}
.index-page .marquee-section .marquee-wrap .marquee:nth-child(2n):hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.index-page .marquee-section .marquee-wrap .marquee .marquee-content {
  display: inline-block;
}
.index-page .marquee-section .marquee-wrap .marquee .marquee-content .card-img {
  display: inline-block;
  margin-right: 0.16rem;
  width: 2.88rem;
  height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .index-page .marquee-section .marquee-wrap .marquee .marquee-content .card-img {
    margin-right: 0.14rem;
    height: 0.87rem;
  }
}
.index-page .marquee-section .marquee-wrap .marquee .marquee-content .card-img .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .join-us-section {
  min-height: 6.4rem;
  position: relative;
  z-index: 2;
  color: #fff;
}
.index-page .join-us-section::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.index-page .join-us-section .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .join-us-section .con {
  position: relative;
  z-index: 2;
  padding-bottom: 1.44rem;
}
@media screen and (max-width: 800px) {
  .index-page .join-us-section .con {
    padding-bottom: 3.32rem;
  }
}
.index-page .join-us-section .con .head-wrap {
  padding-top: 0.96rem;
  max-width: 5.92rem;
}
@media screen and (max-width: 800px) {
  .index-page .join-us-section .con .head-wrap {
    padding-top: 0.87rem;
    max-width: 6.2rem;
  }
}
.index-page .join-us-section .con .head-wrap .subtitle {
  font-family: var(--sk-font-Medium);
  font-family: var(--sk-EN-font-SemiBold-Science);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .index-page .join-us-section .con .head-wrap .subtitle {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
}
.index-page .join-us-section .con .head-wrap .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
  background: -webkit-linear-gradient(left, #FFFFFF 0%, #999999 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media screen and (max-width: 800px) {
  .index-page .join-us-section .con .head-wrap .h2 {
    font-size: 0.5rem;
    line-height: 0.58rem;
  }
}
.index-page .join-us-section .con .head-wrap .section-text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .index-page .join-us-section .con .head-wrap .section-text {
    margin-top: 1rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.index-page .join-us-section .con .default___btn {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .index-page .join-us-section .con .default___btn {
    margin-top: 0.87rem;
  }
}

.agent-product-page .page-main {
  padding: 2.08rem 0.56rem 1.6rem;
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main {
    padding: 1.73rem 0.43rem 1.15rem;
  }
}
.agent-product-page .page-main .h1 {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
  }
}
.agent-product-page .page-main .flex-wrap {
  margin-top: 1.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap {
    margin-top: 0.72rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.agent-product-page .page-main .flex-wrap .left-box {
  width: 3.92rem;
  margin-right: 0.64rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box {
    width: 100%;
    margin-right: 0;
  }
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 1.5rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap {
    position: static;
  }
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-head {
  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;
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-head .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-head .icon {
    width: 0.43rem;
    height: 0.43rem;
    margin-right: 0.14rem;
  }
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-head .text {
  font-size: 0.24rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-head .text {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-head .expand {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-head .expand {
    width: 0.43rem;
    height: 0.43rem;
  }
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper.show {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #EFF8F8;
    border-radius: 0.43rem 0.43rem 0px 0px;
    padding: 0.29rem 0.29rem 0.72rem;
    max-height: 90vh;
    overflow-y: auto;
  }
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-box-head {
    padding: 0.14rem 0.14rem 0.43rem;
  }
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-box-head .filter-head-phone {
    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;
  }
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-box-head .filter-head-phone .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-box-head .filter-head-phone .text {
    color: #132528;
    font-size: 0.29rem;
    line-height: 0.43rem;
    margin-left: 0.14rem;
    font-family: var(--sk-font-SemiBold);
  }
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-box-head .close-btn {
    position: absolute;
    top: 0.29rem;
    right: 0.29rem;
    width: 0.72rem;
    height: 0.72rem;
    background: #FFFFFF;
    border-radius: 0.87rem;
    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;
  }
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-box-head .close-btn .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-body {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-body {
    margin-top: 0;
  }
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-body .filter-item {
  padding: 0.16rem 0.24rem;
  border-radius: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #132528;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-body .filter-item {
    padding: 0.29rem;
    border-radius: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-body .filter-item:hover {
  background: rgba(255, 255, 255, 0.7);
}
.agent-product-page .page-main .flex-wrap .left-box .filter-wrap .filter-wrapper .filter-box .filter-body .filter-item.on {
  background: #FFFFFF;
}
.agent-product-page .page-main .flex-wrap .contact-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box {
    margin-top: 0.87rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact:not(:last-child) {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact:not(:last-child) {
    margin-bottom: 1.15rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .line__ellipsis__wrap .line__ellipsis {
  bottom: -0.2rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .line__ellipsis__wrap .line__ellipsis {
    bottom: -0.4rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .item-title {
  line-height: 0.4rem;
  font-size: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .item-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .item-text {
  margin-top: 0.4rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .item-text {
    margin-top: 0.72rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap {
    margin-top: 0.43rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.08rem -0.08rem -0.32rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list {
    margin: -0.29rem -0.15rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item {
  width: calc(33.3333333333% - 0.16rem);
  margin: 0.08rem 0.08rem 0.32rem;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item {
    width: calc(50% - 0.3rem);
    margin: 0.29rem 0.15rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item:hover .img-box .img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item:hover .card-title {
  color: var(--sk-global-color);
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .img-box {
  height: 4.36rem;
  border-radius: 0.24rem;
  background: #FFFFFF;
  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) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .img-box {
    height: 3.17rem;
    border-radius: 0.29rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .img-box .img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .img-box .img {
    width: 2.31rem;
    height: 2.31rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .type {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #51B146;
  font-family: var(--sk-EN-font-SemiBold-Science);
}
@media screen and (max-width: 800px) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .type {
    margin-top: 0.29rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .card-title {
  margin-top: 0.08rem;
  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) {
  .agent-product-page .page-main .flex-wrap .contact-box .item-contact .card-list-wrap .card-list .card-item .card-title {
    margin-top: 0;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.commit-message-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 999;
  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;
  opacity: 0;
  visibility: hidden;
}
.commit-message-wrapper.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper {
    -webkit-box-align: normal;
    -webkit-align-items: normal;
        -ms-flex-align: normal;
            align-items: normal;
    overflow-y: auto;
  }
}
.commit-message-wrapper .commit-message-card {
  width: 8.96rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper .commit-message-card {
    width: calc(100vw - 0.58rem);
    border-radius: 0.43rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
  }
}
.commit-message-wrapper .commit-message-card .card-hader {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.16rem 0 0.24rem;
  border-bottom: 1px solid rgba(19, 37, 40, 0.05);
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-hader {
    height: 1rem;
    padding: 0 0.14rem 0 0.43rem;
  }
}
.commit-message-wrapper .commit-message-card .card-hader .card-title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-hader .card-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.commit-message-wrapper .commit-message-card .card-hader .clone-btn {
  width: 0.4rem;
  height: 0.4rem;
  cursor: pointer;
  border-radius: 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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-hader .clone-btn {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
    background: rgba(19, 37, 40, 0.1);
  }
}
.commit-message-wrapper .commit-message-card .card-hader .clone-btn:hover {
  background: rgba(19, 37, 40, 0.1);
}
.commit-message-wrapper .commit-message-card .card-hader .clone-btn .img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-hader .clone-btn .img {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.commit-message-wrapper .commit-message-card .card-body {
  padding: 0.32rem;
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-body {
    padding: 0.43rem;
  }
}
.commit-message-wrapper .commit-message-card .card-body .form___box {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-body .form___box {
    margin-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-body .form___box .__form .privacy_policy_checkbox {
    margin-top: 0.16rem;
  }
}
@media screen and (min-width: 800px) {
  .commit-message-wrapper .commit-message-card .card-body .form___box .__form .__form .default___btn {
    margin-top: 0.48rem;
  }
}

.careers-new-page .page-main {
  padding-top: 2.08rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main {
    padding-top: 1.73rem;
    padding-bottom: 1.15rem;
  }
}
.careers-new-page .page-main .h1 {
  font-size: 0.96rem;
  line-height: 0.96rem;
  text-align: center;
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .h1 {
    font-size: 0.72rem;
    line-height: 0.87rem;
  }
}
.careers-new-page .page-main .input-selcet {
  margin: 0.64rem auto 0;
  max-width: 8.96rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet {
    margin: 0.58rem auto 0;
  }
}
.careers-new-page .page-main .input-selcet .input-box {
  position: relative;
}
.careers-new-page .page-main .input-selcet .input-box input::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box input::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box input:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box input:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box textarea::-webkit-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box textarea::-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box textarea:-moz-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box textarea:-ms-input-placeholder {
  color: rgba(19, 37, 40, 0.6);
}
.careers-new-page .page-main .input-selcet .input-box input {
  width: 100%;
  height: 0.56rem;
  background: #FFFFFF;
  border-radius: 0.48rem;
  padding: 0 1.1rem 0 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet .input-box input {
    height: 0.87rem;
    border-radius: 0.87rem;
    padding: 0 1.6rem 0 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-new-page .page-main .input-selcet .input-box .clear {
  cursor: pointer;
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  background: rgba(19, 37, 40, 0.1);
  border-radius: 0.48rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.72rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet .input-box .clear {
    width: 0.43rem;
    height: 0.43rem;
    right: 1rem;
  }
}
.careers-new-page .page-main .input-selcet .input-box .clear .icon {
  width: 100%;
  height: 100%;
}
.careers-new-page .page-main .input-selcet .input-box .icon-box {
  position: absolute;
  right: 0.04rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 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;
  cursor: pointer;
  background: var(--sk-global-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet .input-box .icon-box {
    right: 0.07rem;
    width: 0.72rem;
    height: 0.72rem;
  }
}
.careers-new-page .page-main .input-selcet .input-box .icon-box:hover {
  opacity: 0.8;
}
.careers-new-page .page-main .input-selcet .input-box .icon-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet .input-box .icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.careers-new-page .page-main .input-selcet .selcet-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-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet .selcet-box {
    margin-top: 0.29rem;
  }
}
.careers-new-page .page-main .input-selcet .selcet-box .sk_select {
  --h: .48rem;
  width: calc(50% - 0.08rem);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet .selcet-box .sk_select {
    --h: .72rem;
    width: calc(50% - 0.07rem);
  }
}
.careers-new-page .page-main .input-selcet .selcet-box .sk_select .-select-front {
  border: 1px solid rgba(19, 37, 40, 0.4);
  padding: 0.12rem 0.16rem 0.12rem 0.2rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .input-selcet .selcet-box .sk_select .-select-front {
    padding: 0 0.29rem;
  }
}
.careers-new-page .page-main .input-selcet .selcet-box .sk_select .-select-front input::-webkit-input-placeholder {
  color: #132528;
}
.careers-new-page .page-main .input-selcet .selcet-box .sk_select .-select-front input::-moz-placeholder {
  color: #132528;
}
.careers-new-page .page-main .input-selcet .selcet-box .sk_select .-select-front input:-ms-input-placeholder {
  color: #132528;
}
.careers-new-page .page-main .input-selcet .selcet-box .sk_select .-select-front input::placeholder {
  color: #132528;
}
.careers-new-page .page-main .input-selcet .selcet-box .sk_select .-select-layer .-inner {
  background: #fff;
}
.careers-new-page .page-main .con {
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con {
    margin-top: 0.87rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.careers-new-page .page-main .con .contact-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.careers-new-page .page-main .con .contact-box .count-title {
  font-size: 0.24rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .count-title {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list {
    margin-top: 0.29rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item {
  display: block;
  padding: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item {
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item:hover .title {
  color: var(--sk-global-color);
}
.careers-new-page .page-main .con .contact-box .card-list .card-item:not(:last-child) {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item:not(:last-child) {
    margin-bottom: 0.29rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item .title {
    font-size: 0.32rem;
    line-height: 0.58rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .tag-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;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item .tag-list {
    margin-top: 0.14rem;
    row-gap: 0.14rem;
    -webkit-column-gap: 0.29rem;
       -moz-column-gap: 0.29rem;
            column-gap: 0.29rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .tag-list .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item .tag-list .tag {
    margin-right: 0;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .tag-list .tag .label-icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item .tag-list .tag .label-icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .tag-list .tag .tag-value {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item .tag-list .tag .tag-value {
    margin-left: 0.14rem;
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .text {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .contact-box .card-list .card-item .text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .text .p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.careers-new-page .page-main .con .contact-box .card-list .card-item .text .p span {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.careers-new-page .page-main .con .contact-box .pagination_wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.careers-new-page .page-main .con .recommend-w {
  margin-left: 0.16rem;
  margin-top: 0.56rem;
  width: 4.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 0.24rem;
  padding: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w {
    margin-left: 0;
    margin-top: 1.15rem;
    width: 100%;
    border-radius: 0.43rem;
    padding: 0.43rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type1 .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type1 .card-title {
    font-size: 0.36rem;
    line-height: 0.43rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type1 .card-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type1 .card-text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type1 .default___btn {
  margin-top: 0.32rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type1 .default___btn {
    margin-top: 0.58rem;
    height: 0.87rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type1 .default___btn .btn-text {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.24rem 0 0.24rem;
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 {
  margin-top: 0.32rem;
  padding-top: 0.32rem;
  border-top: 1px dashed #E6E6E6;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type2 {
    margin-top: 0.58rem;
    padding-top: 0.58rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-title {
    font-size: 0.32rem;
    line-height: 0.43rem;
    margin-top: 0.43rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-title.type1 {
  margin-top: 0;
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-text {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-text.type1 {
  max-height: 1.2rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-text.type1 {
    max-height: 2.16rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-text.type1 .show-more {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-text.type1 .show-more .ellipsis {
  padding-left: 0.2rem;
  background: -webkit-linear-gradient(right, #ffffff 50%, rgba(255, 255, 255, 0));
  background: linear-gradient(to left, #ffffff 50%, rgba(255, 255, 255, 0));
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .card-text.type1 .show-more .more-text {
  cursor: pointer;
  color: var(--sk-global-color);
  text-decoration: underline;
  background-color: #fff;
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .img-box {
  margin-top: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type2 .img-box {
    margin-top: 0.29rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .img-box .bg-img {
  width: 100%;
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type2 .img-box .play-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  width: 0.4rem;
  height: 0.4rem;
  background: #FFFFFF;
  border-radius: 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;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type2 .img-box .play-box {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type3 {
  margin-top: 0.32rem;
  padding-top: 0.32rem;
  border-top: 1px dashed #E6E6E6;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type3 {
    margin-top: 0.58rem;
    padding-top: 0.58rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type3 .card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type3 .card-title {
    font-size: 0.36rem;
    line-height: 0.43rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type3 ul {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
  margin-top: 0.16rem;
  display: block;
  list-style-type: disc;
  -webkit-padding-start: 1.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
@media screen and (max-width: 800px) {
  .careers-new-page .page-main .con .recommend-w .card-wrap-type3 ul {
    font-size: 0.25rem;
    line-height: 0.43rem;
    margin-top: 0.29rem;
  }
}
.careers-new-page .page-main .con .recommend-w .card-wrap-type3 ul li {
  display: list-item;
  list-style-type: inherit;
}

.self-recommendation-page .page-main {
  max-width: 12rem;
  padding-top: 1.52rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main {
    padding: 2.74rem 0 2.45rem;
  }
}
.self-recommendation-page .page-main .return-box {
  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;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .return-box {
    margin-left: 0.43rem;
  }
}
.self-recommendation-page .page-main .return-box:hover .icon-box {
  background-color: var(--sk-global-color);
}
.self-recommendation-page .page-main .return-box:hover .icon-box .img {
  -webkit-animation: icon-forward-left 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward-left 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.self-recommendation-page .page-main .return-box .icon-box {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  background: #FFFFFF;
  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) {
  .self-recommendation-page .page-main .return-box .icon-box {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.72rem;
  }
}
.self-recommendation-page .page-main .return-box .icon-box .img {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .return-box .icon-box .img {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.self-recommendation-page .page-main .return-box .return-text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .return-box .return-text {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper {
  padding: 0.96rem 1.52rem 1.2rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper {
    padding: 0.58rem 0.43rem 1.15rem;
    border-radius: 0.43rem;
    margin-top: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .h1 {
    font-size: 0.58rem;
    line-height: 0.72rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .wrapper-text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .wrapper-text {
    margin-top: 0.43rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box {
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box {
    margin-top: 0.58rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume {
  margin-top: 0.24rem;
  margin-bottom: 0.24rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume {
    margin-top: 0.36rem;
    margin-bottom: 0.36rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .label {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .label {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .hint {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(19, 37, 40, 0.6);
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .hint {
    margin-top: 0.14rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .upload-zone-inner {
  margin-top: 0.16rem;
  height: 1.84rem;
  border-radius: 0.24rem;
  border: 1px dashed rgba(19, 37, 40, 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-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;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .upload-zone-inner {
    margin-top: 0.29rem;
    height: 3.32rem;
    border-radius: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .upload-zone-inner .icon {
  width: 0.56rem;
  height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .upload-zone-inner .icon {
    width: 1rem;
    height: 1rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .upload-zone-inner .upload_con {
  margin-top: 0.16rem;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .upload-zone-inner .upload_con {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .upload-zone-inner .upload_con .upload-link {
  cursor: pointer;
  color: var(--sk-global-color);
  text-decoration: underline;
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card {
  margin-top: 0.16rem;
  padding: 0.16rem 0.24rem;
  border-radius: 0.24rem;
  border: 1px solid rgba(19, 37, 40, 0.4);
  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;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card {
    margin-top: 0.43rem;
    padding: 0.29rem 0.43rem;
    border-radius: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .document-left {
  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;
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .document-left .mark-icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .document-left .mark-icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .document-left .document-name {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .document-left .document-name {
    margin-left: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .del-box {
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .del-box {
    height: 0.72rem;
    width: 0.72rem;
    border-radius: 0.72rem;
    background: rgba(19, 37, 40, 0.1);
  }
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .del-box:hover {
  background: rgba(19, 37, 40, 0.1);
}
.self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .del-box .del-icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .self-recommendation-page .page-main .card-wrapper .form___box .resume-resume .document-card .del-box .del-icon {
    width: 0.43rem;
    height: 0.43rem;
  }
}

/* manage 页面 start */
.manage-page {
  --manage-bg: #eff8f8;
  --manage-surface: #ffffff;
  --manage-text: #132528;
  --manage-muted: rgba(19, 37, 40, 0.72);
  --manage-dark: #132528;
  --manage-green: #51b146;
  background: var(--manage-bg);
  color: var(--manage-text);
  font-family: var(--sk-font-Regular);
}
.manage-page .page-main {
  background: var(--manage-bg);
}
.manage-page .manage-overview-section,
.manage-page .manage-value-section,
.manage-page .manage-strategy-section {
  padding-top: 0.8rem;
}
.manage-page .manage-overview-section {
  padding-bottom: 0.8rem;
}
.manage-page .manage-strategy-section {
  padding-bottom: 1.6rem;
}
.manage-page .manage-section-heading {
  width: 8.96rem;
  margin: 0 auto;
  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;
  gap: 0.32rem;
  text-align: center;
}
.manage-page .manage-section-heading-light {
  color: #ffffff;
}
.manage-page .manage-section-title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-weight: 600;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-section-dots {
  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;
  gap: 0.08rem;
}
.manage-page .manage-section-dots span {
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  background: var(--manage-green);
}
.manage-page {
  /* 管理页面概览模块 start */
}
.manage-page .manage-overview-title + .manage-section-title {
  display: none;
}
.manage-page .manage-overview-panel {
  position: relative;
  height: 6.56rem;
  margin-top: 0.64rem;
  padding: 0.16rem;
  border-radius: 0.24rem;
  overflow: visible;
}
.manage-page .manage-overview-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manage-page .manage-overview-rebuild {
  position: relative;
  z-index: 1;
  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;
  -webkit-transform: translateY(-0.32rem);
      -ms-transform: translateY(-0.32rem);
          transform: translateY(-0.32rem);
}
.manage-page .manage-overview-chain {
  display: none;
}
.manage-page .manage-overview-track {
  position: relative;
  height: 3.84rem;
  padding-top: 0.16rem;
}
.manage-page .manage-overview-track-title {
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(-0.32rem);
      -ms-transform: translateY(-0.32rem);
          transform: translateY(-0.32rem);
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-overview-track-title h2 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.manage-page .manage-overview-track-outline {
  position: absolute;
  top: 0.88rem;
  left: 50%;
  width: 15.36rem;
  height: 3.2rem;
  display: block;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.manage-page .manage-overview-track-arrow {
  position: absolute;
  z-index: 2;
  width: 0.12rem;
  height: 0.14rem;
  display: block;
}
.manage-page .manage-overview-track-arrow-top {
  top: 0.81rem;
  left: calc(50% - 0.06rem);
}
.manage-page .manage-overview-track-arrow-left {
  top: 2.41rem;
  left: calc(50% - 7.74rem);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.manage-page .manage-overview-track-arrow-bottom {
  top: 4.01rem;
  left: calc(50% - 0.06rem);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.manage-page .manage-overview-track-arrow-right {
  top: 2.41rem;
  left: calc(50% + 7.62rem);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.manage-page .manage-overview-track-list {
  position: absolute;
  top: 1.04rem;
  left: 50%;
  width: 15.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.16rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.manage-page .manage-overview-node {
  position: relative;
  width: 2.88rem;
}
.manage-page .manage-overview-node-media {
  width: 2.88rem;
  height: 2.88rem;
  overflow: hidden;
}
.manage-page .manage-overview-node-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.manage-page .manage-overview-node-name {
  position: absolute;
  top: 1.34rem;
  left: 0;
  width: 100%;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0.04rem 0.18rem rgba(0, 0, 0, 0.34);
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-overview-cards {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.16rem;
  width: calc(100% - 2.9rem);
  margin: -0.56rem auto 0;
}
.manage-page .manage-overview-card {
  width: calc((100% - 0.16rem) / 2);
  min-height: 1.36rem;
  padding: 0.48rem;
  border-radius: 0.24rem;
  background: rgb(255, 255, 255);
}
.manage-page .manage-overview-card-accent .manage-overview-card-title {
  color: #51b146;
}
.manage-page .manage-overview-card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-weight: 600;
  color: #51B146;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-overview-card-text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #132528;
}
.manage-page .manage-value-panel {
  position: relative;
  padding: 1.2rem 1.52rem 0;
  border-radius: 0.24rem;
  background: #0e3558;
  overflow: hidden;
}
.manage-page .manage-value-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manage-page .manage-value-inner {
  position: relative;
  z-index: 1;
}
.manage-page .manage-value-desc {
  width: 9.5rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.78);
}
.manage-page .manage-value-board {
  margin-top: 0.88rem;
}
.manage-page .manage-value-columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.24rem 1fr;
  grid-template-columns: 1fr 0.24rem 1fr;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 1.32rem;
     -moz-column-gap: 1.32rem;
          column-gap: 1.32rem;
}
.manage-page .manage-value-column-title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-value-column-title.right {
  text-align: right;
}
.manage-page .manage-value-column-title.left {
  text-align: left;
}
.manage-page .manage-value-list {
  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;
  gap: 0.16rem;
}
.manage-page .manage-value-item {
  padding: 0.28rem 0.32rem;
  border-radius: 0.24rem;
  background: rgba(97, 177, 241, 0.14);
}
.manage-page .manage-value-item-title {
  font-size: 0.2rem;
  line-height: 0.28rem;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-value-item-index {
  color: #ffffff;
}
.manage-page .manage-value-item-text {
  margin-top: 0.12rem;
  font-size: 0.14rem;
  line-height: 0.22rem;
  color: #ffffff;
}
.manage-page .manage-value-axis {
  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.8rem;
  padding-top: 0.72rem;
}
.manage-page .manage-value-axis .manage-value-axis-arrow {
  width: 0.24rem;
  height: 5.6rem;
  display: block;
}
.manage-page .manage-value-axis .manage-value-axis-arrow-down {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.manage-page .manage-value-summary {
  max-width: 8.96rem;
  margin: 1.6rem auto 0;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-value-scope {
  margin: 0.64rem auto 0;
}
.manage-page .manage-value-scope-pill {
  width: 5.92rem;
  margin: 0 auto;
  padding: 0.32rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.1019607843);
  text-align: center;
}
.manage-page .manage-value-scope-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-value-scope-text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.76);
}
.manage-page .manage-value-scope-links {
  position: relative;
  margin: -0.42rem auto 0;
}
.manage-page .manage-value-scope-line,
.manage-page .manage-value-scope-line-left,
.manage-page .manage-value-scope-line-right {
  position: absolute;
  display: block;
  pointer-events: none;
}
.manage-page .manage-value-scope-line {
  top: 1.78rem;
  left: 50%;
  width: 3.2rem;
  height: 0.12rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.manage-page .manage-value-scope-line-left {
  top: -0.35rem;
  left: 2.88rem;
  width: 1.66rem;
  height: 1.29rem;
}
.manage-page .manage-value-scope-line-right {
  top: -0.35rem;
  right: 2.88rem;
  width: 1.66rem;
  height: 1.29rem;
}
.manage-page .manage-value-scope-card {
  position: absolute;
  top: 0.94rem;
  width: 5.92rem;
  min-height: 1.4rem;
  padding: 0.24rem 0.28rem;
  border-radius: 0.24rem;
  background: rgba(255, 255, 255, 0.1019607843);
}
.manage-page .manage-value-scope-card-left {
  left: 0;
}
.manage-page .manage-value-scope-card-right {
  right: 0;
}
.manage-page .manage-value-scope-card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-value-scope-card-text {
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
}
.manage-page .manage-value-figure {
  width: 6.64rem;
  margin: -1.86rem auto -0.15rem;
  position: relative;
  z-index: 1;
}
.manage-page .manage-value-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.manage-page {
  /* 供應鏈管理價值模塊 end */
  /* 供應鏈永續管理流程模塊 start */
}
.manage-page .manage-strategy-carousel {
  margin-top: 0.64rem;
}
.manage-page .manage-strategy-process {
  position: relative;
  padding-top: 0.32rem;
  overflow: hidden;
}
.manage-page .manage-strategy-process-track {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
  -webkit-transform: translateX(var(--manage-strategy-offset, 0));
      -ms-transform: translateX(var(--manage-strategy-offset, 0));
          transform: translateX(var(--manage-strategy-offset, 0));
}
.manage-page .manage-strategy-carousel.active .manage-strategy-process-track {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.manage-page .manage-strategy-carousel.active .manage-strategy-step {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.6666666667%;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: none;
}
.manage-page .manage-strategy-carousel.more.active .manage-strategy-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.manage-page .manage-strategy-process-line {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0.72rem;
  left: 0;
  width: var(--manage-strategy-line-width, 100%);
  min-width: 100%;
  height: 0.02rem;
  background: -webkit-repeating-linear-gradient(left, rgba(19, 37, 40, 0.34) 0, rgba(19, 37, 40, 0.34) 0.04rem, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0) 0.08rem);
  background: repeating-linear-gradient(90deg, rgba(19, 37, 40, 0.34) 0, rgba(19, 37, 40, 0.34) 0.04rem, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0) 0.08rem);
  -webkit-mask-image: none;
  mask-image: none;
}
.manage-page .manage-strategy-step {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  max-width: 2.88rem;
  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;
  text-align: center;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.manage-page .manage-strategy-step-icon {
  width: 0.8rem;
  height: 0.8rem;
}
.manage-page .manage-strategy-step-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.manage-page .manage-strategy-step-title {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-weight: 600;
  color: var(--manage-text);
  overflow-wrap: anywhere;
  font-family: var(--sk-font-SemiBold);
}
.manage-page .manage-strategy-arrow {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.64rem;
}
.manage-page .manage-strategy-arrow .btn-prev,
.manage-page .manage-strategy-arrow .btn-next {
  width: 0.56rem;
  height: 0.56rem;
  margin: 0 0.08rem;
  border-radius: 50%;
  background: rgba(19, 37, 40, 0.1);
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.manage-page .manage-strategy-arrow .btn-prev.swiper-button-disabled,
.manage-page .manage-strategy-arrow .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 1;
}
.manage-page .manage-strategy-arrow .btn-prev:not(.swiper-button-disabled):hover,
.manage-page .manage-strategy-arrow .btn-next:not(.swiper-button-disabled):hover {
  background: #51B146;
  opacity: 1;
}
.manage-page .manage-strategy-arrow .btn-prev:not(.swiper-button-disabled):hover .icon path,
.manage-page .manage-strategy-arrow .btn-next:not(.swiper-button-disabled):hover .icon path {
  stroke: #ffffff;
}
.manage-page .manage-strategy-arrow .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
.manage-page .manage-strategy-arrow .icon path {
  stroke: #132528;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 801px) {
  .manage-page .manage-strategy-carousel.more .manage-strategy-step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0.4rem;
    left: 50%;
    width: 100%;
    height: 0.01rem;
    background: -webkit-repeating-linear-gradient(left, rgba(19, 37, 40, 0) 0, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0.32) 0.04rem, rgba(19, 37, 40, 0.32) 0.08rem);
    background: repeating-linear-gradient(90deg, rgba(19, 37, 40, 0) 0, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0.32) 0.04rem, rgba(19, 37, 40, 0.32) 0.08rem);
    pointer-events: none;
  }
  .manage-page .manage-strategy-carousel.more .manage-strategy-step-icon,
  .manage-page .manage-strategy-carousel.more .manage-strategy-step-title {
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 801px) and (max-width: 1400px) {
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-process {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-process::-webkit-scrollbar {
    display: none;
  }
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-process-track {
    gap: 0.32rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-process-line {
    display: block;
  }
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-step {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1.92rem;
        -ms-flex: 0 0 1.92rem;
            flex: 0 0 1.92rem;
    max-width: 1.92rem;
  }
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0.4rem;
    left: 50%;
    width: calc(100% + 0.32rem);
    height: 0.01rem;
    background: -webkit-repeating-linear-gradient(left, rgba(19, 37, 40, 0) 0, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0.32) 0.04rem, rgba(19, 37, 40, 0.32) 0.08rem);
    background: repeating-linear-gradient(90deg, rgba(19, 37, 40, 0) 0, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0.32) 0.04rem, rgba(19, 37, 40, 0.32) 0.08rem);
    pointer-events: none;
  }
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-step-icon,
  .manage-page .manage-strategy-carousel.more:not(.active) .manage-strategy-step-title {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 800px) {
  .manage-page .manage-overview-section,
  .manage-page .manage-strategy-section {
    padding-top: 0.92rem;
    padding-left: 0;
    padding-right: 0;
  }
  .manage-page .manage-value-section {
    padding-top: 1.15rem;
    padding-left: 0;
    padding-right: 0;
  }
  .manage-page .manage-overview-section {
    padding-bottom: 0;
  }
  .manage-page .manage-strategy-section {
    padding-bottom: 1.15rem;
  }
  .manage-page .manage-section-heading {
    width: 100%;
    padding: 0 0.43rem;
    box-sizing: border-box;
  }
  .manage-page .manage-section-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
  .manage-page .manage-section-dots {
    margin-top: 0.18rem;
    gap: 0.15rem;
  }
  .manage-page .manage-section-dots span {
    width: 0.08rem;
    height: 0.08rem;
  }
  .manage-page .manage-overview-panel {
    height: 5.77rem;
    min-height: 0;
    padding: 0.87rem 0 0.16rem;
    border-radius: 0;
    overflow: hidden;
    margin-top: 0.87rem;
  }
  .manage-page .manage-overview-track {
    --manage-overview-mobile-outline-left: 0.28rem;
    --manage-overview-mobile-outline-top: 0.94rem;
    --manage-overview-mobile-outline-width: 8.99rem;
    --manage-overview-mobile-outline-height: 1.91rem;
    --manage-overview-mobile-outline-pad-x: 0.16rem;
    --manage-overview-mobile-list-top: 1.1rem;
    height: 2.98rem;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: -webkit-grab;
    cursor: grab;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: pan-x pan-y;
        touch-action: pan-x pan-y;
  }
  .manage-page .manage-overview-track::before {
    content: "";
    position: absolute;
    top: var(--manage-overview-mobile-outline-top);
    left: var(--manage-overview-mobile-outline-left);
    width: var(--manage-overview-mobile-outline-width);
    height: var(--manage-overview-mobile-outline-height);
    border: 0.02rem solid #51b146;
    border-radius: 0.96rem;
    box-sizing: border-box;
    pointer-events: none;
  }
  .manage-page .manage-overview-track::-webkit-scrollbar {
    display: none;
  }
  .manage-page .manage-overview-track.dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .manage-page .manage-overview-rebuild {
    height: auto;
    display: block;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    overflow: visible;
  }
  .manage-page .manage-overview-track-title {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 4;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
  }
  .manage-page .manage-overview-track-title h2 {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
  .manage-page .manage-overview-track-outline {
    display: none;
  }
  .manage-page .manage-overview-track-arrow {
    width: 0.08rem;
    height: 0.1rem;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
  .manage-page .manage-overview-track-list {
    top: var(--manage-overview-mobile-list-top);
    left: calc(var(--manage-overview-mobile-outline-left) + var(--manage-overview-mobile-outline-pad-x));
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 2;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.18rem;
    margin-top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    overflow: visible;
  }
  .manage-page .manage-overview-track-arrow-top {
    top: calc(var(--manage-overview-mobile-outline-top) + 0.01rem);
    left: calc(var(--manage-overview-mobile-outline-left) + var(--manage-overview-mobile-outline-width) / 2);
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .manage-page .manage-overview-track-arrow-left {
    top: calc(var(--manage-overview-mobile-outline-top) + var(--manage-overview-mobile-outline-height) / 2);
    left: calc(var(--manage-overview-mobile-outline-left) + 0.01rem);
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
        -ms-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
  .manage-page .manage-overview-track-arrow-bottom {
    top: calc(var(--manage-overview-mobile-outline-top) + var(--manage-overview-mobile-outline-height) - 0.01rem);
    left: calc(var(--manage-overview-mobile-outline-left) + var(--manage-overview-mobile-outline-width) / 2);
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .manage-page .manage-overview-track-arrow-right {
    top: calc(var(--manage-overview-mobile-outline-top) + var(--manage-overview-mobile-outline-height) / 2);
    left: calc(var(--manage-overview-mobile-outline-left) + var(--manage-overview-mobile-outline-width) - 0.01rem);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
        -ms-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .manage-page .manage-overview-node {
    width: 1.59rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1.59rem;
        -ms-flex: 0 0 1.59rem;
            flex: 0 0 1.59rem;
  }
  .manage-page .manage-overview-node-media {
    width: 1.59rem;
    height: 1.59rem;
    aspect-ratio: auto;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .manage-page .manage-overview-node-name {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0.28rem;
    line-height: 0.34rem;
  }
  .manage-page .manage-overview-track-tip {
    margin-top: 0.37rem;
    text-align: center;
    font-size: 0.18rem;
    line-height: 0.43rem;
    color: rgba(255, 255, 255, 0.4);
  }
  .manage-page .manage-overview-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.14rem;
    width: 100%;
    margin: -0.8rem 0 0;
    padding: 0 0.43rem;
    box-sizing: border-box;
  }
  .manage-page .manage-overview-card {
    width: 100%;
    min-height: 0;
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
  .manage-page .manage-overview-card-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .manage-page .manage-overview-card-text {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-top: 0.22rem;
  }
  .manage-page .manage-value-panel {
    padding: 0.87rem 0.43rem 0;
    border-radius: 0;
  }
  .manage-page .manage-value-desc,
  .manage-page .manage-value-summary,
  .manage-page .manage-value-scope,
  .manage-page .manage-strategy-step {
    width: 100%;
    max-width: 100%;
  }
  .manage-page .manage-value-desc {
    margin-top: 0.24rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    text-align: center;
  }
  .manage-page .manage-value-columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5rem 1fr;
    grid-template-columns: 1fr 0.5rem 1fr;
    -webkit-column-gap: 0.3rem;
       -moz-column-gap: 0.3rem;
            column-gap: 0.3rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .manage-page .manage-value-column-title {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
  .manage-page .manage-value-item {
    min-height: 3rem;
    padding: 0.29rem;
    border-radius: 0.29rem;
  }
  .manage-page .manage-value-item-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .manage-page .manage-value-item-text {
    margin-top: 0.29rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
  .manage-page .manage-value-axis {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: end;
        -ms-flex-item-align: end;
                -ms-grid-row-align: end;
            align-self: end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.15rem;
    height: calc(100% - 0.9rem);
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }
  .manage-page .manage-value-axis .manage-value-axis-arrow {
    width: auto;
    height: 100%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .manage-page .manage-value-axis .manage-value-axis-arrow-down {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
  }
  .manage-page .manage-value-summary {
    margin-top: 1.15rem;
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
  .manage-page .manage-value-scope {
    margin-top: 0.87rem;
    position: relative;
  }
  .manage-page .manage-value-scope-pill {
    width: 3.75rem;
    margin: 0 auto;
    padding: 0.29rem;
    border-radius: 0.29rem;
  }
  .manage-page .manage-value-scope-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .manage-page .manage-value-scope-text {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
  .manage-page .manage-value-scope-links {
    width: 100%;
    min-height: 3.28rem;
    margin: 0.18rem auto 0;
    display: block;
    position: relative;
  }
  .manage-page .manage-value-scope-mobile-line,
  .manage-page .manage-value-scope-mobile-line-left,
  .manage-page .manage-value-scope-mobile-line-right {
    position: absolute;
    display: block;
    pointer-events: none;
    z-index: 0;
  }
  .manage-page .manage-value-scope-mobile-line-left {
    top: -20vw;
    right: 4.14rem;
    margin-right: 1.02rem;
    width: 0.97rem;
  }
  .manage-page .manage-value-scope-mobile-line {
    top: 2.4rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .manage-page .manage-value-scope-mobile-line-right {
    top: -20vw;
    left: 4.14rem;
    margin-left: 1.02rem;
    width: 0.97rem;
  }
  .manage-page .manage-value-scope-card {
    position: absolute;
    top: 0.78rem;
    width: 2.74rem;
    padding: 0.29rem;
    min-height: 3.9rem;
  }
  .manage-page .manage-value-scope-card-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .manage-page .manage-value-scope-card-text {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
  .manage-page .manage-value-figure {
    width: 100%;
    margin: -2.3rem auto -0.13rem;
  }
  .manage-page .manage-strategy-carousel {
    margin-top: 0.87rem;
  }
  .manage-page .manage-strategy-process {
    position: relative;
    padding: 0 0.43rem;
    overflow: visible;
  }
  .manage-page .manage-strategy-process-track {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.58rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .manage-page .manage-strategy-arrow {
    display: none !important;
  }
  .manage-page .manage-strategy-process-line {
    display: block;
    top: -0.42rem;
    bottom: -0.42rem;
    left: 0.95rem;
    width: 0.02rem;
    min-width: 0;
    height: auto;
    background: -webkit-repeating-linear-gradient(top, rgba(19, 37, 40, 0.36) 0, rgba(19, 37, 40, 0.36) 0.12rem, rgba(19, 37, 40, 0) 0.12rem, rgba(19, 37, 40, 0) 0.18rem);
    background: repeating-linear-gradient(180deg, rgba(19, 37, 40, 0.36) 0, rgba(19, 37, 40, 0.36) 0.12rem, rgba(19, 37, 40, 0) 0.12rem, rgba(19, 37, 40, 0) 0.18rem);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .manage-page .manage-strategy-step {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.01rem 1fr;
    grid-template-columns: 1.01rem 1fr;
    -webkit-column-gap: 0.43rem;
       -moz-column-gap: 0.43rem;
            column-gap: 0.43rem;
    row-gap: 0.08rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .manage-page .manage-strategy-step-icon {
    width: 1.01rem;
    height: 1.01rem;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .manage-page .manage-strategy-step-title {
    margin-top: 0;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 0.32rem;
    line-height: 0.43rem;
    text-align: left;
  }
}

/* manage 页面 end */
/* carbon 页面 start */
.carbon-page {
  --carbon-bg: #eff8f8;
  --carbon-surface: #ffffff;
  --carbon-text: #132528;
  --carbon-text-light: rgba(19, 37, 40, 0.78);
  background: var(--carbon-bg);
  color: var(--carbon-text);
}
.carbon-page .page-main {
  background: #eff8f8;
}
.carbon-page .carbon-intro-section {
  padding-top: 0.56rem;
}
.carbon-page .carbon-intro-grid {
  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;
  gap: 0.16rem;
}
.carbon-page .carbon-intro-item {
  width: 100%;
  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;
  gap: 0.16rem;
}
.carbon-page .carbon-intro-item > .carbon-card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 0.16rem) / 2);
      -ms-flex: 0 0 calc((100% - 0.16rem) / 2);
          flex: 0 0 calc((100% - 0.16rem) / 2);
  max-width: calc((100% - 0.16rem) / 2);
  min-width: 0;
  box-sizing: border-box;
}
.carbon-page .carbon-intro-item > .carbon-card-text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.carbon-page .carbon-intro-item > .carbon-card-image {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.carbon-page .carbon-intro-item-text-right > .carbon-card-image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.carbon-page .carbon-intro-item-text-right > .carbon-card-text {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.carbon-page .carbon-card {
  width: 100%;
  min-height: 8rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
.carbon-page .carbon-card-img {
  width: 1.12rem;
  height: 1.12rem;
  margin-bottom: 0.32rem;
}
.carbon-page .carbon-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carbon-page .carbon-card-img img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.carbon-page .carbon-card-text {
  padding: 0.64rem;
  background: var(--carbon-surface);
  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;
}
.carbon-page .carbon-card-title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
.carbon-page .carbon-card-title-break {
  max-width: 4.2rem;
}
.carbon-page .carbon-card-list {
  margin-top: 0.72rem;
  padding-left: 0.22rem;
  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;
  gap: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #132528;
  font-family: var(--sk-font-Regular);
}
.carbon-page .carbon-card-list li {
  list-style: disc;
}
.carbon-page .carbon-card-actions {
  margin-top: 0.64rem;
}
.carbon-page .carbon-card-image-wrap {
  width: 100%;
  height: 100%;
}
.carbon-page .carbon-card-image-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carbon-page .carbon-card-image-item:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.carbon-page .carbon-training-section {
  padding-top: 0.56rem;
}
.carbon-page .carbon-training-card {
  position: relative;
  min-height: 8rem;
  border-radius: 0.24rem;
  overflow: hidden;
  color: #ffffff;
}
.carbon-page .carbon-training-image,
.carbon-page .carbon-training-mask {
  position: absolute;
  inset: 0;
}
.carbon-page .carbon-training-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carbon-page .carbon-training-image:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.carbon-page .carbon-training-content {
  position: relative;
  z-index: 1;
  width: 5.36rem;
  padding: 0.64rem 0 0.72rem 0.64rem;
}
.carbon-page .carbon-training-title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
}
.carbon-page .carbon-training-title-break {
  max-width: 4.1rem;
}
.carbon-page .carbon-training-list {
  margin-top: 0.72rem;
  padding-left: 0.22rem;
  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;
  gap: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Regular);
}
.carbon-page .carbon-training-list li {
  list-style: disc;
}
.carbon-page .carbon-training-actions {
  margin-top: 0.64rem;
}
.carbon-page .carbon-mapping-section {
  padding: 1.28rem 0 1.6rem;
}
.carbon-page .carbon-mapping-inner {
  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;
}
.carbon-page .carbon-mapping-title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-SemiBold);
  text-align: center;
}
.carbon-page .carbon-mapping-title-break {
  max-width: 5.9rem;
  margin: 0 auto;
}
.carbon-page .carbon-mapping-desc {
  max-width: 6.4rem;
  margin-top: 0.8rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
  color: var(--carbon-text-light);
  font-family: var(--sk-font-Regular);
}
.carbon-page .carbon-mapping-table-scroll {
  width: 100%;
  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;
}
.carbon-page .carbon-mapping-table {
  width: 12.32rem;
  background: var(--carbon-surface);
  border-radius: 0.24rem;
  padding: 0.16rem;
}
.carbon-page .carbon-mapping-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.carbon-page .carbon-mapping-table table th {
  width: 50%;
  padding: 0.16rem 0.24rem;
  background: var(--sk-global-color);
  color: #ffffff;
  font-size: 0.2rem;
  line-height: 0.32rem;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
}
.carbon-page .carbon-mapping-table table th:not(:last-child) {
  border-right: 0.01rem solid rgba(255, 255, 255, 0.16);
}
.carbon-page .carbon-mapping-table table th:first-child {
  border-radius: 0.08rem 0 0 0.08rem;
}
.carbon-page .carbon-mapping-table table th:last-child {
  border-radius: 0 0.08rem 0.08rem 0;
}
.carbon-page .carbon-mapping-table table tbody tr:nth-child(even) {
  background: #eff8f8;
}
.carbon-page .carbon-mapping-table table td {
  width: 50%;
  padding: 0.28rem 0.28rem;
  text-align: center;
  vertical-align: middle;
}
.carbon-page .carbon-mapping-table table td:not(:last-child) {
  border-right: 0.01rem solid rgba(19, 37, 40, 0.08);
}
.carbon-page .carbon-mapping-table table td dl {
  min-height: 1.28rem;
  margin: 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;
  gap: 0.08rem;
  -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;
}
.carbon-page .carbon-mapping-table table td dl dt,
.carbon-page .carbon-mapping-table table td dl dd {
  margin: 0;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
.carbon-page .carbon-mapping-table table td dl dt:only-child,
.carbon-page .carbon-mapping-table table td dl dd {
  color: #132528;
  font-family: var(--sk-font-Regular);
}
@media screen and (max-width: 800px) {
  .carbon-page .sk-index-banner .-wrapper .content.wal .title {
    white-space: nowrap;
  }
  .carbon-page {
    background: #eff8f8;
  }
  .carbon-page .page-main {
    background: #eff8f8;
  }
  .carbon-page .carbon-intro-section,
  .carbon-page .carbon-training-section,
  .carbon-page .carbon-mapping-section {
    background: white;
  }
  .carbon-page .carbon-intro-section,
  .carbon-page .carbon-training-section {
    padding-top: 0.87rem;
  }
  .carbon-page .carbon-intro-section {
    padding-top: 0;
  }
  .carbon-page .carbon-intro-section {
    background: #eff8f8;
  }
  .carbon-page .carbon-training-section {
    margin-top: 0.29rem;
  }
  .carbon-page .carbon-mapping-section {
    margin-top: 0.29rem;
  }
  .carbon-page .carbon-intro-grid {
    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;
    gap: 0.29rem;
  }
  .carbon-page .carbon-intro-item {
    width: calc(100% + 0.86rem);
    margin-left: -0.43rem;
    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;
    gap: 0.24rem;
    background: white;
    padding-top: 0.87rem;
  }
  .carbon-page .carbon-intro-item > .carbon-card {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: 100%;
  }
  .carbon-page .carbon-intro-item .carbon-card-text {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .carbon-page .carbon-intro-item .carbon-card-image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .carbon-page .carbon-card {
    width: 100%;
    min-height: auto;
  }
  .carbon-page .carbon-card-img {
    width: 1.15rem;
    height: 1.15rem;
    margin-bottom: 0.32rem;
  }
  .carbon-page .carbon-card-text {
    padding: 0.46rem;
  }
  .carbon-page .carbon-card-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
  .carbon-page .carbon-card-title-break {
    max-width: 3.5rem;
  }
  .carbon-page .carbon-card-list {
    margin-top: 1.07rem;
    padding-left: 0.36rem;
    gap: 0.1rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .carbon-page .carbon-card-actions {
    margin-top: 0.58rem;
    padding-top: 0;
  }
  .carbon-page .carbon-card-image-wrap {
    width: 6.63rem;
    margin: 0 auto;
    height: 3.89rem;
    border-radius: 0.24rem;
    overflow: hidden;
  }
  .carbon-page .carbon-training-card {
    min-height: auto;
    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;
    background: var(--carbon-surface);
    color: var(--carbon-text);
  }
  .carbon-page .carbon-training-image {
    position: relative;
    inset: auto;
    display: block;
    height: 3.89rem;
    border-radius: 0.24rem;
  }
  .carbon-page .carbon-training-mask {
    display: none;
  }
  .carbon-page .carbon-training-content {
    width: 100%;
    padding: 0.46rem 0.46rem 0.56rem;
    background: var(--carbon-surface);
    color: var(--carbon-text);
  }
  .carbon-page .carbon-training-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
  .carbon-page .carbon-training-title-break {
    max-width: 3.9rem;
  }
  .carbon-page .carbon-training-list {
    margin-top: 0.72rem;
    padding-left: 0.36rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .carbon-page .carbon-training-actions {
    margin-top: 0.58rem;
  }
  .carbon-page .carbon-mapping-section {
    padding: 1.15rem 0 1.15rem;
    background: #eff8f8;
  }
  .carbon-page .carbon-mapping-inner {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .carbon-page .carbon-mapping-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
  .carbon-page .carbon-mapping-title-break {
    max-width: 5.6rem;
  }
  .carbon-page .carbon-mapping-desc {
    max-width: 100%;
    margin-top: 0.88rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .carbon-page .carbon-mapping-table-scroll {
    display: block;
    width: calc(100% + 0.86rem);
    margin-left: -0.43rem;
    margin-top: 0.72rem;
    overflow: visible;
    padding-bottom: 0;
  }
  .carbon-page .carbon-mapping-table {
    width: 100%;
    min-width: 0;
    padding-right: 0.29rem;
    padding-left: 0.29rem;
    border-radius: 0;
    padding-top: 0.29rem;
    padding-bottom: 0;
  }
  .carbon-page .carbon-mapping-table table th {
    width: auto;
    padding: 0.29rem 0.3rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
  .carbon-page .carbon-mapping-table table th:first-child {
    border-radius: 0.14rem 0 0 0.14rem;
  }
  .carbon-page .carbon-mapping-table table th:last-child {
    border-radius: 0 0.14rem 0.14rem 0;
  }
  .carbon-page .carbon-mapping-table table td {
    width: auto;
    padding: 0.28rem;
  }
  .carbon-page .carbon-mapping-table table td dl {
    min-height: 0;
    gap: 0.05rem;
  }
  .carbon-page .carbon-mapping-table table td dl dt,
  .carbon-page .carbon-mapping-table table td dl dd {
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
}

/* carbon 页面 end */
/* sbti-guidance-application 页面 start */
.sbti-guidance-application-page {
  --sbti-guidance-application-bg: #eff8f8;
  --sbti-guidance-application-surface: #ffffff;
  --sbti-guidance-application-text: #132528;
  --sbti-guidance-application-green: #51b146;
  --sbti-guidance-application-blue-dark: #0e3558;
  --sbti-guidance-application-blue-light: #134a79;
  background: var(--sbti-guidance-application-bg);
  color: var(--sbti-guidance-application-text);
  font-family: var(--sk-font-Regular);
}
.sbti-guidance-application-page .page-main {
  background: var(--sbti-guidance-application-bg);
}
.sbti-guidance-application-page .sbti-guidance-application-overview-section {
  margin-top: 0.56rem;
}
.sbti-guidance-application-page .sbti-guidance-application-overview-panel {
  min-height: 8rem;
  padding: 1.64rem 0 1.68rem;
  border-radius: 0.24rem;
  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;
  overflow: hidden;
  color: #ffffff;
}
.sbti-guidance-application-page .sbti-guidance-application-overview-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sbti-guidance-application-page .sbti-guidance-application-overview-content {
  width: 8.96rem;
  margin: 0 auto;
  position: relative;
  z-index: 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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sbti-guidance-application-page .sbti-guidance-application-overview-title,
.sbti-guidance-application-page .sbti-guidance-application-steps-title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--sk-font-SemiBold);
}
.sbti-guidance-application-page .sbti-guidance-application-overview-desc {
  width: 8.96rem;
  margin-top: 0.72rem;
  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;
  gap: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  text-align: center;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-section {
  padding-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-heading {
  width: 8.96rem;
  margin: 0 auto;
  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;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-process {
  position: relative;
  padding-left: 1.84rem;
  padding-right: 1.85rem;
  margin-top: 0.64rem;
  padding-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.24rem;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-process-line {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 100%;
  height: 0.01rem;
  background: -webkit-repeating-linear-gradient(left, rgba(19, 37, 40, 0) 0, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0.36) 0.04rem, rgba(19, 37, 40, 0.36) 0.08rem);
  background: repeating-linear-gradient(90deg, rgba(19, 37, 40, 0) 0, rgba(19, 37, 40, 0) 0.04rem, rgba(19, 37, 40, 0.36) 0.04rem, rgba(19, 37, 40, 0.36) 0.08rem);
  -webkit-mask-image: -webkit-linear-gradient(left, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-process-item {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  max-width: 2.24rem;
  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;
  text-align: center;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-process-icon {
  width: 0.56rem;
  height: 0.56rem;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-process-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-process-title {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-weight: 600;
  color: var(--sbti-guidance-application-text);
  font-family: var(--sk-font-SemiBold);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-process-text {
  max-width: 2.24rem;
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.22rem;
  color: rgba(19, 37, 40, 0.78);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-schedule {
  position: relative;
  margin-top: 1.08rem;
  height: 20.48rem;
  overflow: hidden;
  border-radius: 0.24rem;
  color: #ffffff;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-schedule-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-schedule-content {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.52rem 0;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-schedule-heading {
  width: 8.96rem;
  margin: 0 auto;
  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;
  text-align: center;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-schedule-title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-weight: 600;
  font-family: var(--sk-font-SemiBold);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-schedule-desc {
  width: 9.6rem;
  margin-top: 0.76rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.88);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline {
  position: relative;
  margin-top: 1.6rem;
  padding-bottom: 2.24rem;
  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;
  gap: 0;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-line {
  position: absolute;
  top: -0.56rem;
  bottom: 0.86rem;
  left: 50%;
  width: 0.02rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.48) 18%, rgba(255, 255, 255, 0.18) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.48) 18%, rgba(255, 255, 255, 0.18) 100%);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-row {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 2.8rem minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) 2.8rem minmax(0, 1fr);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.24rem;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-slot {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-slot:first-child {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-slot:last-child {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-slot-empty {
  visibility: hidden;
  pointer-events: none;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-card {
  width: 100%;
  max-width: 5.92rem;
  padding: 0.32rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 0.01rem rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.16rem);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-card-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-card-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.84);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-axis {
  width: 2.8rem;
  -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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-row.right .sbti-guidance-application-steps-timeline-axis {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-index {
  width: calc(50% - 0.08rem);
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  font-family: var(--sk-EN-font-Regular);
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-row.right .sbti-guidance-application-steps-timeline-index {
  margin-left: auto;
  text-align: center;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.06rem;
  height: 0.06rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-figure {
  position: absolute;
  left: 50%;
  bottom: -15.5%;
  width: 6rem;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
  line-height: 0;
}
.sbti-guidance-application-page .sbti-guidance-application-steps-timeline-figure img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 800px) {
  .sbti-guidance-application-page .sbti-guidance-application-overview-section,
  .sbti-guidance-application-page .sbti-guidance-application-steps-section {
    padding-left: 0;
    padding-right: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-section {
    margin-top: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-panel {
    min-height: 10.53rem;
    padding: 0 0.87rem;
    border-radius: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-title,
  .sbti-guidance-application-page .sbti-guidance-application-steps-title,
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
    margin-bottom: 0.2rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-content {
    width: 100%;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-content,
  .sbti-guidance-application-page .sbti-guidance-application-overview-desc,
  .sbti-guidance-application-page .sbti-guidance-application-steps-heading,
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-heading,
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-desc {
    width: 100%;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-content .line__ellipsis__wrap,
  .sbti-guidance-application-page .sbti-guidance-application-steps-heading .line__ellipsis__wrap,
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-heading .line__ellipsis__wrap {
    margin-top: 0.18rem;
    height: 0.15rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-content .line__ellipsis__wrap .line__ellipsis,
  .sbti-guidance-application-page .sbti-guidance-application-steps-heading .line__ellipsis__wrap .line__ellipsis,
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-heading .line__ellipsis__wrap .line__ellipsis {
    bottom: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-content .line__ellipsis__wrap .line__ellipsis span,
  .sbti-guidance-application-page .sbti-guidance-application-steps-heading .line__ellipsis__wrap .line__ellipsis span,
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-heading .line__ellipsis__wrap .line__ellipsis span {
    width: 0.08rem;
    height: 0.08rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-content .line__ellipsis__wrap .line__ellipsis span:not(:last-child),
  .sbti-guidance-application-page .sbti-guidance-application-steps-heading .line__ellipsis__wrap .line__ellipsis span:not(:last-child),
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-heading .line__ellipsis__wrap .line__ellipsis span:not(:last-child) {
    margin-right: 0.15rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-overview-desc {
    margin-top: 0.43rem;
    gap: 0;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-section {
    padding-top: 0.87rem;
    padding-bottom: 1.15rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-heading {
    padding: 0 0.43rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-heading .line__ellipsis {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-title {
    text-align: left;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-process {
    margin-top: 0.87rem;
    padding: 0 0.43rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.58rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-process-line {
    display: block;
    top: -0.42rem;
    bottom: -0.42rem;
    left: 0.95rem;
    width: 0.02rem;
    height: auto;
    background: -webkit-repeating-linear-gradient(top, rgba(19, 37, 40, 0.36) 0, rgba(19, 37, 40, 0.36) 0.12rem, rgba(19, 37, 40, 0) 0.12rem, rgba(19, 37, 40, 0) 0.18rem);
    background: repeating-linear-gradient(180deg, rgba(19, 37, 40, 0.36) 0, rgba(19, 37, 40, 0.36) 0.12rem, rgba(19, 37, 40, 0) 0.12rem, rgba(19, 37, 40, 0) 0.18rem);
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 6%, rgb(0, 0, 0) 94%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 6%, rgb(0, 0, 0) 94%, rgba(0, 0, 0, 0) 100%);
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-process-item {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.01rem 1fr;
    grid-template-columns: 1.01rem 1fr;
    -webkit-column-gap: 0.43rem;
       -moz-column-gap: 0.43rem;
            column-gap: 0.43rem;
    row-gap: 0.08rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-process-icon {
    width: 1.01rem;
    height: 1.01rem;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-process-title {
    margin-top: 0;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 0.32rem;
    line-height: 0.43rem;
    text-align: left;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-process-text {
    margin-top: 0;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    max-width: none;
    font-size: 0.25rem;
    line-height: 0.43rem;
    text-align: left;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule {
    margin-top: 1.15rem;
    height: 23.94rem;
    border-radius: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-content {
    padding: 0.87rem 0 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-heading {
    width: 100%;
    padding: 0 0.32rem;
    margin: 0 auto;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-title {
    text-align: center;
    margin-bottom: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-schedule-desc {
    max-width: 5.77rem;
    margin-top: 0.24rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline {
    margin-top: 0.87rem;
    gap: 0.29rem;
    padding-bottom: 1.44rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-line {
    top: 0;
    bottom: 1.94rem;
    left: 0.34rem;
    width: 2px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.74) 18%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.34) 74%, rgba(255, 255, 255, 0.13) 90%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.74) 18%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.34) 74%, rgba(255, 255, 255, 0.13) 90%, rgba(255, 255, 255, 0) 100%);
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-columns: none;
    grid-template-columns: none;
    z-index: 1;
    gap: 0;
    padding: 0 0.32rem 0 0.28rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-slot {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-slot-primary {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-slot-empty {
    display: none;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-axis {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 1.44rem;
    padding-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-row.right .sbti-guidance-application-steps-timeline-axis {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-index {
    width: 100%;
    margin-left: 0.04rem;
    font-size: 0.36rem;
    line-height: 0.58rem;
    text-align: center;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-row.right .sbti-guidance-application-steps-timeline-index {
    margin-left: 0.04rem;
    text-align: center;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-dot {
    position: absolute;
    top: 0.2rem;
    left: 0;
    width: 0.14rem;
    height: 0.14rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-card {
    width: 100%;
    max-width: none;
    padding: 0.29rem;
    border-radius: 0.29rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-card-title {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-card-text {
    margin-top: 0.1rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
  .sbti-guidance-application-page .sbti-guidance-application-steps-timeline-figure {
    position: absolute;
    left: 0.32rem;
    right: 0.32rem;
    bottom: -3.7rem;
    width: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    z-index: 0;
    line-height: 0;
  }
}

/* sbti-guidance-application 页面 end */
/* low-carbon-factory 页面 start */
.low-carbon-factory-page {
  --low-carbon-factory-bg: #eff8f8;
  --low-carbon-factory-surface: #ffffff;
  --low-carbon-factory-text: #132528;
  --low-carbon-factory-text-light: rgba(19, 37, 40, 0.72);
  --low-carbon-factory-border: rgba(19, 37, 40, 0.08);
  --low-carbon-factory-green: #51b146;
  --low-carbon-factory-green-deep: #004728;
  background: var(--low-carbon-factory-bg);
  color: var(--low-carbon-factory-text);
  font-family: var(--sk-font-Regular);
}
.low-carbon-factory-page .page-main {
  background: var(--low-carbon-factory-bg);
}
.low-carbon-factory-page .sk-index-banner .inner {
  min-height: 7.84rem;
}
.low-carbon-factory-page .sk-index-banner .content {
  max-width: 9.2rem;
  padding-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-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}
.low-carbon-factory-page .sk-index-banner .title {
  max-width: 8rem;
}
.low-carbon-factory-page .low-carbon-factory-banner-text {
  max-width: 7.6rem;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.88);
}
.low-carbon-factory-page .low-carbon-factory-banner-ellipsis-wrap {
  width: 100%;
  height: 0.4rem;
  margin-top: 0.2rem;
}
.low-carbon-factory-page .low-carbon-factory-banner-ellipsis-wrap .line__ellipsis {
  bottom: 0;
}
.low-carbon-factory-page .low-carbon-factory-solution-section {
  padding-top: 1.2rem;
}
.low-carbon-factory-page .low-carbon-factory-stage-section,
.low-carbon-factory-page .low-carbon-factory-feature-section,
.low-carbon-factory-page .low-carbon-factory-case-section,
.low-carbon-factory-page .low-carbon-factory-action-section {
  margin-top: 1.6rem;
}
.low-carbon-factory-page .low-carbon-factory-feature-section {
  margin-top: 1.2rem;
}
.low-carbon-factory-page .low-carbon-factory-stage-section {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}
.low-carbon-factory-page .low-carbon-factory-section-heading {
  width: 8.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;
  gap: 0.16rem;
}
.low-carbon-factory-page .low-carbon-factory-section-eyebrow,
.low-carbon-factory-page .low-carbon-factory-stage-eyebrow,
.low-carbon-factory-page .low-carbon-factory-stage-label,
.low-carbon-factory-page .low-carbon-factory-solution-label {
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  font-family: var(--sk-EN-font-SemiBold);
}
.low-carbon-factory-page .low-carbon-factory-section-eyebrow {
  color: #004728;
}
.low-carbon-factory-page .low-carbon-factory-stage-eyebrow {
  color: #ffffff;
}
.low-carbon-factory-page .low-carbon-factory-section-title,
.low-carbon-factory-page .low-carbon-factory-stage-heading-title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-weight: 600;
  font-family: var(--sk-font-SemiBold);
}
.low-carbon-factory-page .low-carbon-factory-section-heading.line__ellipsis__wrap,
.low-carbon-factory-page .low-carbon-factory-stage-heading.line__ellipsis__wrap {
  padding-bottom: 0.4rem;
}
.low-carbon-factory-page .low-carbon-factory-section-heading.line__ellipsis__wrap .line__ellipsis,
.low-carbon-factory-page .low-carbon-factory-stage-heading.line__ellipsis__wrap .line__ellipsis {
  bottom: 0;
}
.low-carbon-factory-page .low-carbon-factory-solution-swiper {
  width: calc(50vw + 50%);
  max-width: none;
  margin-top: 0.64rem;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.low-carbon-factory-page .low-carbon-factory-solution-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}
.low-carbon-factory-page .low-carbon-factory-solution-card.swiper-slide:not(:last-child) {
  margin-right: 16px;
}
.low-carbon-factory-page .low-carbon-factory-solution-card {
  height: 5.6rem;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: var(--low-carbon-factory-text);
  text-decoration: none;
  background: var(--low-carbon-factory-surface);
  border-radius: 0.24rem;
  overflow: hidden;
  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;
}
.low-carbon-factory-page .low-carbon-factory-solution-card.primary {
  width: 7.44rem;
}
.low-carbon-factory-page .low-carbon-factory-solution-card.secondary {
  width: 7.44rem;
}
.low-carbon-factory-page .low-carbon-factory-solution-card.compact {
  width: 7.44rem;
}
.low-carbon-factory-page .low-carbon-factory-solution-media {
  position: relative;
  height: 4.92rem;
  overflow: hidden;
}
.low-carbon-factory-page .low-carbon-factory-solution-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.low-carbon-factory-page .low-carbon-factory-solution-card.secondary .low-carbon-factory-solution-media {
  background: #f4f8f7;
}
.low-carbon-factory-page .low-carbon-factory-solution-card.secondary .low-carbon-factory-solution-media .solution-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
}
.low-carbon-factory-page .low-carbon-factory-solution-card.secondary .low-carbon-factory-solution-media .solution-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 7.44rem;
  height: 5.6rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}
.low-carbon-factory-page .low-carbon-factory-solution-body {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.32rem 1.12rem 0.32rem 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: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: rgba(11, 26, 30, 0.14);
  border-radius: 0;
  backdrop-filter: blur(0.18rem);
}
.low-carbon-factory-page .low-carbon-factory-solution-label {
  color: rgba(255, 255, 255, 0.72);
}
.low-carbon-factory-page .low-carbon-factory-solution-card-title {
  margin-top: 0.12rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
  font-family: var(--sk-font-SemiBold);
}
.low-carbon-factory-page .low-carbon-factory-solution-card-title span {
  background-image: -webkit-linear-gradient(top, transparent 96%, #ffffff 0);
  background-image: linear-gradient(to bottom, transparent 96%, #ffffff 0);
}
.low-carbon-factory-page .low-carbon-factory-solution-card-text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgb(255, 255, 255);
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease, margin-top 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: max-height 0.35s ease, margin-top 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: max-height 0.35s ease, margin-top 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  transition: max-height 0.35s ease, margin-top 0.35s ease, opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  font-family: var(--sk-font-Regular);
}
.low-carbon-factory-page .low-carbon-factory-solution-action {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 0.56rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.low-carbon-factory-page .low-carbon-factory-solution-body .icon-bottom-box {
  position: absolute;
  right: 0.32rem;
  bottom: 0.32rem;
  margin-top: 0;
  padding-top: 0;
  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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.low-carbon-factory-page .low-carbon-factory-solution-body .icon-bottom-box .icon-box {
  width: 0.32rem;
  height: 0.32rem;
  background-color: rgba(255, 255, 255, 0.6);
}
.low-carbon-factory-page .icon-bottom-box .icon-list .icon-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.low-carbon-factory-page .icon-bottom-box .icon-list .icon-item:not(:last-child) {
  margin-bottom: 0.08rem;
}
.low-carbon-factory-page .icon-bottom-box .icon-list .icon-item .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.low-carbon-factory-page .icon-bottom-box .icon-list .icon-item .icon-text,
.low-carbon-factory-page .icon-bottom-box .icon-list .icon-item span {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--low-carbon-factory-text-light);
}
.low-carbon-factory-page .icon-bottom-box .icon-box {
  width: 0.56rem;
  height: 0.56rem;
  background: rgba(19, 37, 40, 0.05);
  border-radius: 0.56rem;
  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.4s;
  transition: 0.4s;
}
.low-carbon-factory-page .icon-bottom-box .icon-box .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
.low-carbon-factory-page .low-carbon-factory-solution-toolbar {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.low-carbon-factory-page .low-carbon-factory-solution-count {
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #132528;
  font-family: var(--sk-EN-font-SemiBold);
}
.low-carbon-factory-page .low-carbon-factory-solution-count-current {
  color: #51b146;
}
.low-carbon-factory-page .low-carbon-factory-solution-count-total {
  color: #132528;
}
.low-carbon-factory-page .low-carbon-factory-solution-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.12rem;
}
.low-carbon-factory-page .low-carbon-factory-solution-action {
  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;
  box-shadow: none;
  background: rgba(19, 37, 40, 0.1);
}
.low-carbon-factory-page .low-carbon-factory-solution-action .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
.low-carbon-factory-page .low-carbon-factory-solution-action .icon path {
  stroke: #132528;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.low-carbon-factory-page .low-carbon-factory-solution-action.swiper-button-disabled {
  cursor: not-allowed;
  background: rgba(19, 37, 40, 0.1);
}
.low-carbon-factory-page .low-carbon-factory-solution-action.swiper-button-disabled .icon path {
  stroke: #132528;
}
.low-carbon-factory-page .low-carbon-factory-stage-panel {
  position: relative;
  padding: 0.96rem 0.64rem 1.2rem;
  border-radius: 0;
  overflow: hidden;
  color: #ffffff;
}
.low-carbon-factory-page .low-carbon-factory-stage-media {
  position: absolute;
  inset: 0;
}
.low-carbon-factory-page .low-carbon-factory-stage-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.low-carbon-factory-page .low-carbon-factory-stage-heading,
.low-carbon-factory-page .low-carbon-factory-stage-letters,
.low-carbon-factory-page .low-carbon-factory-stage-copy {
  position: relative;
  z-index: 1;
}
.low-carbon-factory-page .low-carbon-factory-stage-heading {
  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;
  gap: 0.16rem;
  text-align: center;
}
.low-carbon-factory-page .low-carbon-factory-stage-letters {
  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;
  max-width: 15.8rem;
  margin: 0.72rem auto 0;
}
.low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  position: relative;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-family: var(--sk-EN-font-Regular);
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
}
.low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter-label {
  position: absolute;
  top: -0.32rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--sk-font-Medium);
}
.low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter-text {
  display: block;
}
.low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter:hover,
.low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter.active {
  color: #ffffff;
}
.low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter:hover .low-carbon-factory-stage-letter-label,
.low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter.active .low-carbon-factory-stage-letter-label {
  opacity: 1;
}
.low-carbon-factory-page .low-carbon-factory-stage-copy {
  width: 6.8rem;
  margin: 0.72rem auto 0;
  display: none;
  -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;
  text-align: center;
}
.low-carbon-factory-page .low-carbon-factory-stage-copy.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.low-carbon-factory-page .low-carbon-factory-stage-label {
  color: rgba(255, 255, 255, 0.72);
}
.low-carbon-factory-page .low-carbon-factory-stage-title {
  margin-top: 0.16rem;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-weight: 600;
  font-family: var(--sk-font-SemiBold);
}
.low-carbon-factory-page .low-carbon-factory-stage-text {
  max-width: 5.12rem;
  min-height: 0.48rem;
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sk-font-Regular);
}
.low-carbon-factory-page .low-carbon-factory-feature-grid,
.low-carbon-factory-page .low-carbon-factory-action-grid {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
}
.low-carbon-factory-page .low-carbon-factory-feature-card,
.low-carbon-factory-page .low-carbon-factory-action-card {
  width: calc((100% - 0.32rem) / 3);
  min-height: 2.4rem;
  padding: 0.32rem;
  background: var(--low-carbon-factory-surface);
  border-radius: 0.24rem;
}
.low-carbon-factory-page .low-carbon-factory-action-card {
  color: var(--low-carbon-factory-text);
  text-decoration: none;
  -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
.low-carbon-factory-page .low-carbon-factory-feature-mark,
.low-carbon-factory-page .low-carbon-factory-action-mark {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.56rem;
  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;
}
.low-carbon-factory-page .low-carbon-factory-feature-title,
.low-carbon-factory-page .low-carbon-factory-action-title {
  margin-top: 0.56rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
.low-carbon-factory-page .low-carbon-factory-feature-text,
.low-carbon-factory-page .low-carbon-factory-action-text {
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--low-carbon-factory-text-light);
  font-family: var(--sk-font-Regular);
}
.low-carbon-factory-page .low-carbon-factory-case-header {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.48rem;
}
.low-carbon-factory-page .low-carbon-factory-case-actions {
  margin-top: 0.32rem;
  display: none;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.low-carbon-factory-page .low-carbon-factory-case-list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
  overflow: hidden;
}
.low-carbon-factory-page .low-carbon-factory-case-card {
  width: calc((100% - 0.32rem) / 3);
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 0.32rem) / 3);
      -ms-flex: 0 0 calc((100% - 0.32rem) / 3);
          flex: 0 0 calc((100% - 0.32rem) / 3);
  color: var(--low-carbon-factory-text);
  text-decoration: none;
  border-radius: 0.24rem;
  overflow: hidden;
  background: var(--low-carbon-factory-surface);
}
.low-carbon-factory-page .low-carbon-factory-case-media {
  height: 3.36rem;
  position: relative;
  overflow: hidden;
}
.low-carbon-factory-page .low-carbon-factory-case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.low-carbon-factory-page .low-carbon-factory-case-category {
  position: absolute;
  top: 0.16rem;
  left: 0.16rem;
  z-index: 1;
  min-height: 0.24rem;
  padding: 0.04rem 0.16rem;
  border-radius: 0.48rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(0.4rem);
  font-family: var(--sk-font-Medium);
}
.low-carbon-factory-page .low-carbon-factory-case-body {
  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;
  min-height: 2.8rem;
}
.low-carbon-factory-page .low-carbon-factory-case-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-SemiBold);
}
.low-carbon-factory-page .low-carbon-factory-case-tags {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.08rem;
}
.low-carbon-factory-page .low-carbon-factory-case-tag {
  min-height: 0.24rem;
  padding: 0.04rem 0.16rem;
  border-radius: 0.48rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: var(--low-carbon-factory-green-deep);
  background: rgba(81, 177, 70, 0.1);
  font-family: var(--sk-font-Medium);
}
.low-carbon-factory-page .low-carbon-factory-case-footer {
  margin-top: auto;
  padding-top: 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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.16rem;
}
.low-carbon-factory-page .low-carbon-factory-action-section {
  padding-bottom: 1.6rem;
}
.low-carbon-factory-page .low-carbon-factory-mobile-toolbar {
  display: none;
}
@media screen and (min-width: 800px) {
  .low-carbon-factory-page .low-carbon-factory-case-section.low-carbon-factory-case-more .low-carbon-factory-case-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .low-carbon-factory-page .low-carbon-factory-case-section.low-carbon-factory-case-more .low-carbon-factory-case-list {
    scroll-behavior: smooth;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card .low-carbon-factory-solution-card-text {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    -webkit-transform: translateY(0.12rem);
        -ms-transform: translateY(0.12rem);
            transform: translateY(0.12rem);
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card:hover img,
  .low-carbon-factory-page .low-carbon-factory-case-card:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .low-carbon-factory-page .low-carbon-factory-feature-card:hover .low-carbon-factory-feature-title,
  .low-carbon-factory-page .low-carbon-factory-solution-card:hover .low-carbon-factory-solution-card-title,
  .low-carbon-factory-page .low-carbon-factory-action-card:hover .low-carbon-factory-action-title,
  .low-carbon-factory-page .low-carbon-factory-case-card:hover .low-carbon-factory-case-title {
    color: var(--sk-global-color);
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card:hover .low-carbon-factory-solution-card-title {
    color: white;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card:hover .low-carbon-factory-solution-card-title .g-text-hover span {
    background-image: -webkit-linear-gradient(top, transparent 96%, white 0);
    background-image: linear-gradient(to bottom, transparent 96%, white 0);
  }
  .low-carbon-factory-page .low-carbon-factory-solution-action:not(.swiper-button-disabled):hover {
    background: #132528;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-action:not(.swiper-button-disabled):hover .icon path {
    stroke: #ffffff;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card:hover .icon-bottom-box .icon-box,
  .low-carbon-factory-page .low-carbon-factory-case-card:hover .icon-bottom-box .icon-box {
    background: var(--sk-global-color);
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card:hover .icon-bottom-box .icon-box .icon,
  .low-carbon-factory-page .low-carbon-factory-case-card:hover .icon-bottom-box .icon-box .icon {
    -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
            animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card:hover .low-carbon-factory-solution-card-text {
    max-height: 1rem;
    margin-top: 0.16rem;
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 800px) {
  .low-carbon-factory-page .low-carbon-factory-stage-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
  }
  .low-carbon-factory-page .sk-index-banner .inner {
    min-height: 6.4rem;
  }
  .low-carbon-factory-page .sk-index-banner .content {
    max-width: 100%;
    padding-bottom: 0.72rem;
  }
  .low-carbon-factory-page .sk-index-banner .subtitle {
    font-size: 0.16rem;
    line-height: 0.24rem;
    letter-spacing: 0.04rem;
  }
  .low-carbon-factory-page .sk-index-banner .title {
    max-width: 5.84rem;
    font-size: 0.58rem;
    line-height: 0.72rem;
  }
  .low-carbon-factory-page .low-carbon-factory-banner-text {
    max-width: 6.5rem;
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.43rem;
  }
  .low-carbon-factory-page .low-carbon-factory-banner-ellipsis-wrap {
    height: 0.46rem;
    margin-top: 0.14rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-section {
    padding-top: 0.92rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-section,
  .low-carbon-factory-page .low-carbon-factory-feature-section,
  .low-carbon-factory-page .low-carbon-factory-case-section,
  .low-carbon-factory-page .low-carbon-factory-action-section {
    margin-top: 0.92rem;
  }
  .low-carbon-factory-page .low-carbon-factory-section-heading,
  .low-carbon-factory-page .low-carbon-factory-stage-copy {
    width: 100%;
  }
  .low-carbon-factory-page .low-carbon-factory-section-eyebrow,
  .low-carbon-factory-page .low-carbon-factory-stage-eyebrow,
  .low-carbon-factory-page .low-carbon-factory-stage-label,
  .low-carbon-factory-page .low-carbon-factory-solution-label {
    font-size: 0.22rem;
    line-height: 0.2rem;
    letter-spacing: 0.02rem;
  }
  .low-carbon-factory-page .low-carbon-factory-section-title,
  .low-carbon-factory-page .low-carbon-factory-stage-heading-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
    margin-top: 0.14rem;
  }
  .low-carbon-factory-page .low-carbon-factory-section-heading.line__ellipsis__wrap,
  .low-carbon-factory-page .low-carbon-factory-stage-heading.line__ellipsis__wrap {
    padding-bottom: 0.46rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.24rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-swiper,
  .low-carbon-factory-page .low-carbon-factory-feature-grid,
  .low-carbon-factory-page .low-carbon-factory-case-list,
  .low-carbon-factory-page .low-carbon-factory-action-grid {
    margin-left: -0.43rem;
    margin-right: -0.43rem;
    width: calc(100% + 0.86rem);
    padding: 0 0.43rem 0.04rem;
  }
  .low-carbon-factory-page .low-carbon-factory-feature-grid,
  .low-carbon-factory-page .low-carbon-factory-case-list,
  .low-carbon-factory-page .low-carbon-factory-action-grid {
    margin-top: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 0.29rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .low-carbon-factory-page .low-carbon-factory-feature-grid::-webkit-scrollbar,
  .low-carbon-factory-page .low-carbon-factory-case-list::-webkit-scrollbar,
  .low-carbon-factory-page .low-carbon-factory-action-grid::-webkit-scrollbar {
    display: none;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-swiper {
    margin-top: 0.48rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card,
  .low-carbon-factory-page .low-carbon-factory-solution-card.primary,
  .low-carbon-factory-page .low-carbon-factory-solution-card.secondary,
  .low-carbon-factory-page .low-carbon-factory-solution-card.compact,
  .low-carbon-factory-page .low-carbon-factory-solution-card.swiper-slide {
    width: 5.34rem;
    height: auto;
  }
  .low-carbon-factory-page .low-carbon-factory-feature-card,
  .low-carbon-factory-page .low-carbon-factory-action-card {
    width: 5.34rem;
    min-height: 3.75rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 5.34rem;
        -ms-flex: 0 0 5.34rem;
            flex: 0 0 5.34rem;
    padding: 0.47rem 0.5rem;
    border-radius: 0.24rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-card {
    width: 5.34rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 5.34rem;
        -ms-flex: 0 0 5.34rem;
            flex: 0 0 5.34rem;
    height: 7.07rem;
    border-radius: 0.24rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-media {
    height: 3.03rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card.secondary .low-carbon-factory-solution-media .solution-visual {
    width: 100%;
    height: 100%;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-body,
  .low-carbon-factory-page .low-carbon-factory-case-body {
    padding: 0.43rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-body {
    position: static;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0.43rem;
    background: #ffffff;
    border-radius: 0;
    backdrop-filter: none;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-label {
    color: rgba(19, 37, 40, 0.56);
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card-title {
    font-size: 0.29rem;
    line-height: 0.58rem;
    color: var(--low-carbon-factory-text);
  }
  .low-carbon-factory-page .low-carbon-factory-solution-card-text {
    margin-top: 0.29rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
    color: var(--low-carbon-factory-text-light);
  }
  .low-carbon-factory-page .low-carbon-factory-feature-title,
  .low-carbon-factory-page .low-carbon-factory-action-title,
  .low-carbon-factory-page .low-carbon-factory-stage-title {
    font-size: 0.32rem;
    line-height: 0.46rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-title {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .low-carbon-factory-page .low-carbon-factory-feature-text,
  .low-carbon-factory-page .low-carbon-factory-action-text,
  .low-carbon-factory-page .low-carbon-factory-case-intro,
  .low-carbon-factory-page .low-carbon-factory-stage-text,
  .low-carbon-factory-page .icon-bottom-box .icon-list .icon-item .icon-text,
  .low-carbon-factory-page .icon-bottom-box .icon-list .icon-item span {
    font-size: 0.29rem;
    line-height: 0.43rem;
    max-width: 100%;
    margin-top: 0.14rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-text {
    margin-top: 0.29rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-toolbar {
    margin-top: 0.24rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-count {
    display: none;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-action,
  .low-carbon-factory-page .low-carbon-factory-feature-mark,
  .low-carbon-factory-page .low-carbon-factory-action-mark {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.56rem;
  }
  .low-carbon-factory-page .low-carbon-factory-mobile-toolbar {
    margin-top: 0.43rem;
    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;
    gap: 0.12rem;
  }
  .low-carbon-factory-page .low-carbon-factory-mobile-arrow {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 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;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    background: #dde9e9;
  }
  .low-carbon-factory-page .low-carbon-factory-mobile-arrow .icon {
    width: 0.29rem;
    height: 0.29rem;
    object-fit: contain;
  }
  .low-carbon-factory-page .low-carbon-factory-mobile-arrow .icon path {
    stroke: #132528;
  }
  .low-carbon-factory-page .low-carbon-factory-mobile-arrow.active {
    background: #132528;
  }
  .low-carbon-factory-page .low-carbon-factory-mobile-arrow.active .icon path {
    stroke: #ffffff;
  }
  .low-carbon-factory-page .low-carbon-factory-mobile-arrow.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }
  .low-carbon-factory-page .icon-bottom-box .icon-list .icon-item:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  .low-carbon-factory-page .icon-bottom-box .icon-list .icon-item .icon {
    width: 0.43rem;
    height: 0.43rem;
    margin-right: 0.12rem;
  }
  .low-carbon-factory-page .icon-bottom-box .icon-list .icon-item .icon-text,
  .low-carbon-factory-page .icon-bottom-box .icon-list .icon-item span {
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .low-carbon-factory-page .icon-bottom-box .icon-box {
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 0.56rem;
  }
  .low-carbon-factory-page .icon-bottom-box .icon-box .icon {
    width: 0.43rem;
    height: 0.43rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-action .icon {
    width: 0.29rem;
    height: auto;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-body .icon-bottom-box {
    right: 0.22rem;
    bottom: 0.22rem;
    padding-top: 0;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-body .icon-bottom-box .icon-box {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 0.48rem;
  }
  .low-carbon-factory-page .low-carbon-factory-solution-body .icon-bottom-box .icon-box .icon {
    width: 0.16rem;
    height: 0.16rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-footer {
    padding-top: 0.32rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-panel {
    padding: 0.87rem 0.43rem 0.56rem;
    height: 8.94rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-heading {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-letters {
    margin-top: 1.59rem;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 0.12rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    font-size: 0.87rem;
    line-height: 0.101rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-letters .low-carbon-factory-stage-letter-label {
    top: -0.97rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-copy {
    max-width: 100%;
    margin: 2rem auto 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .low-carbon-factory-page .low-carbon-factory-feature-title,
  .low-carbon-factory-page .low-carbon-factory-action-title {
    margin-top: 0.69rem;
  }
  .low-carbon-factory-page .low-carbon-factory-feature-title {
    margin-top: 0.69rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .low-carbon-factory-page .low-carbon-factory-stage-title {
    margin-top: 0;
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-media {
    height: 3.03rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-category {
    top: 0.14rem;
    left: 0.14rem;
    min-height: 0.32rem;
    padding: 0.06rem 0.16rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
    border-radius: 0.32rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-body {
    min-height: 2.88rem;
    padding: 0.43rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-tags {
    margin-top: 0.29rem;
    gap: 0.1rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-tag {
    min-height: 0.32rem;
    padding: 0.06rem 0.16rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
    border-radius: 0.32rem;
  }
  .low-carbon-factory-page .low-carbon-factory-case-footer {
    padding-top: 0.65rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .low-carbon-factory-page .low-carbon-factory-action-section {
    padding-bottom: 0.92rem;
  }
}

/* low-carbon-factory 页面 end */
body .lazy-video {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body .lazy-video,
body img.lazy-img,
body img.lazy-header-img {
  opacity: 0;
}
body .lazy-video[lazy-status=load],
body img.lazy-img[lazy-status=load],
body img.lazy-header-img[lazy-status=load] {
  opacity: 1;
}

.sk-section-subTit {
  font-family: var(--sk-EN-font-SemiBold);
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #004728;
}
.sk-section-subTit.white {
  color: white;
}

.sk-section-title {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.48rem;
  line-height: 0.56rem;
  color: #132528;
}
.sk-section-title.white {
  color: white;
}

.sk-swiper-dots {
  --c-background: rgba(0, 0, 0, 0.4);
  --c-dot-background: rgba(255, 255, 255, 0.4);
  --c-dot-background-active: rgba(255, 255, 255, 1);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0.08rem;
  border-radius: 0.28rem;
  background-color: var(--c-background);
  backdrop-filter: blur(40px);
}
.sk-swiper-dots span {
  cursor: pointer;
  width: 0.04rem;
  height: 0.04rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.08rem;
  border-radius: 0.04rem;
  background-color: var(--c-dot-background);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.sk-swiper-dots span.swiper-pagination-bullet-active {
  background-color: var(--c-dot-background-active);
  width: 0.24rem;
}
.sk-swiper-dots span:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .sk-swiper-dots {
    padding: 0.14rem;
    border-radius: 0.5rem;
  }
  .sk-swiper-dots span {
    width: 0.08rem;
    height: 0.08rem;
    margin-right: 0.14rem;
    border-radius: 0.08rem;
  }
  .sk-swiper-dots span.swiper-pagination-bullet-active {
    width: 0.43rem;
  }
}

.sk-index-banner {
  overflow: hidden;
}
.sk-index-banner .swiper-control {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.32rem;
  text-align: center;
  z-index: 10;
}
.sk-index-banner .swiper-control .sk-swiper-dots {
  --c-dot-background: rgba(255, 255, 255, 0.4);
  --c-dot-background-active: rgba(255, 255, 255, 0.4);
}
.sk-index-banner .swiper-control .sk-swiper-dots span::after {
  content: "";
  display: block;
  width: calc(var(--progress) * 100%);
  height: 100%;
  background-color: white;
  border-radius: 0.04rem;
  opacity: 0;
}
.sk-index-banner .swiper-control .sk-swiper-dots span.swiper-pagination-bullet-active::after {
  opacity: 1;
}

.sk-animate-borderBox {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.sk-animate-borderBox .border__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper {
  position: relative;
  height: calc(100% + 1px);
  width: calc(100% + 1px);
  overflow: clip;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper:hover .background-gradient {
  opacity: 0.2;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .background-holder {
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 2;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-holder,
.sk-animate-borderBox .border__wrapper .overflow__wrapper .background-gradient {
  --mouse-x: -1000px;
  --mouse-y: -1000px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-holder::after,
.sk-animate-borderBox .border__wrapper .overflow__wrapper .background-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  opacity: 1;
  top: 0;
  height: 120%;
  width: 120%;
  border-radius: 50%;
  background: #51b146;
  background-size: contain;
  -webkit-filter: blur(80px);
          filter: blur(80px);
  z-index: 2;
  -webkit-transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
      -ms-transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
          transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
  will-change: transform;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-holder {
  padding: 1px;
  -webkit-mask: -webkit-linear-gradient(#fff, #fff) content-box, -webkit-linear-gradient(#fff, #fff);
          mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 1;
  z-index: 0;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .slot__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-h,
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-v {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-h::before, .sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-h::after,
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-v::before,
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-v::after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-v::before, .sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-v::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-v::after {
  left: auto;
  right: 0;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-h::before, .sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-h::after {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}
.sk-animate-borderBox .border__wrapper .overflow__wrapper .border-bg-h::after {
  top: auto;
  bottom: 0;
}

.sk-tab-box {
  --c-box-background: rgba(255, 255, 255, 0.10);
  --c-item-background-active: var(--sk-c-brand);
  --c-item-background-hover: rgba(255, 255, 255, .10);
  --c-item-text: white;
  --c-item-text-acitve: white;
  --blur: blur(20px);
  display: inline-block;
  max-width: 100%;
}
.sk-tab-box[data-theme=white] {
  --c-box-background: white;
  --c-item-background-active: #132528;
  --c-item-background-hover: rgba(0, 0, 0, 0.1);
  --c-item-text: #132528;
  --c-item-text-acitve: white;
}
.sk-tab-box.above-image {
  --c-box-background: rgba(0, 0, 0, 0.20);
  --c-item-background-active: rgba(255, 255, 255, 0.80);
  --c-item-background-hover: rgba(255, 255, 255, 0.20);
  --c-item-text: rgba(255, 255, 255, 0.80);
  --c-item-text-acitve: #132528;
}
.sk-tab-box.home {
  --c-box-background: rgba(255, 255, 255, 0.10);
  --c-item-background-active: rgba(255, 255, 255, 0.80);
  --c-item-background-hover: rgba(255, 255, 255, 0.20);
  --c-item-text: rgba(255, 255, 255, 0.80);
  --c-item-text-acitve: #132528;
}
.sk-tab-box .tab-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-radius: 0.48rem;
  padding: 0.08rem;
  background-color: var(--c-box-background);
  backdrop-filter: var(--blur);
  overflow: hidden;
}
.sk-tab-box .tab-wrapper .tab-list-1s {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s {
  cursor: pointer;
  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-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: auto;
  height: 0.48rem;
  border-radius: 0.48rem;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 0.08rem;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s:last-child {
  margin-right: 0;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s.active {
  background-color: var(--c-item-background-active) !important;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s.active .inner {
  color: var(--c-item-text-acitve);
}
@media screen and (min-width: 800px) {
  .sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s:hover {
    background-color: var(--c-item-background-hover);
  }
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s .inner {
  font-family: var(--sk-font-Medium);
  display: block;
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0 0.16rem;
  color: var(--c-item-text);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .sk-tab-box .tab-wrapper {
    width: 100%;
    padding: 0.14rem;
    border-radius: 0.87rem;
  }
  .sk-tab-box .tab-wrapper .tab-list-1s {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0;
  }
  .sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s {
    height: 0.58rem;
    border-radius: 0.87rem;
  }
  .sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s .inner {
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 0.29rem;
  }
}

.sk-swiper-arrow {
  --c-icon: white;
  --c-icon-bg: #132528;
  --c-icon-disabled: #132528;
  --c-icon-bg-disabled: rgba(255, 255, 255, 0.20);
  --c-icon-hover: white;
  --c-icon-bg-hover: var(--sk-global-color);
  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.36rem;
}
.sk-swiper-arrow.disabled-gray {
  --c-icon-bg-disabled: rgba(19, 37, 40, 0.10);
}
.sk-swiper-arrow.above-image {
  --c-icon: #132528;
  --c-icon-bg: white;
  --c-icon-disabled: white;
  --c-icon-bg-disabled: rgba(255, 255, 255, 0.10);
}
.sk-swiper-arrow.align-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sk-swiper-arrow .btn-prev,
.sk-swiper-arrow .btn-next {
  cursor: pointer;
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  color: var(--c-icon);
  background: var(--c-icon-bg);
  border-radius: 0.56rem;
  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;
  backdrop-filter: blur(0.2rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk-swiper-arrow .btn-prev.swiper-button-disabled,
.sk-swiper-arrow .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  background: var(--c-icon-bg-disabled) !important;
  color: var(--c-icon-disabled) !important;
}
@media screen and (min-width: 800px) {
  .sk-swiper-arrow .btn-prev:hover,
  .sk-swiper-arrow .btn-next:hover {
    background: var(--c-icon-bg-hover);
    color: var(--c-icon-hover);
  }
}
.sk-swiper-arrow .btn-prev .icon,
.sk-swiper-arrow .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}
.sk-swiper-arrow .btn-prev .icon path,
.sk-swiper-arrow .btn-next .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .sk-swiper-arrow {
    margin-top: 0.43rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sk-swiper-arrow .btn-prev,
  .sk-swiper-arrow .btn-next {
    margin-left: 0.14rem;
    height: 0.72rem;
    width: 0.72rem;
  }
  .sk-swiper-arrow .btn-prev .icon,
  .sk-swiper-arrow .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}

.sk-card-swiper {
  --count: 3;
  --gap: .16rem;
}
.sk-card-swiper .swiper-container {
  width: 100%;
  overflow: visible;
  margin: 0;
}
.sk-card-swiper .swiper-slide {
  max-width: calc((100% - 0.16rem * (var(--count) - 1)) / var(--count));
  margin-right: var(--gap);
}
.sk-card-swiper .swiper-slide:last-child {
  margin-right: 0;
}
.sk-card-swiper .sk-swiper-arrow {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .sk-card-swiper {
    --count: 1;
  }
}

.background-section {
  position: relative;
  height: 9.6rem;
  z-index: 1;
}
.background-section .wal {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  height: 100%;
}
.background-section .-background::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.background-section .-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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .background-section {
    height: 10.53rem;
  }
}

.line__ellipsis.white {
  --sk-global-color: white;
}

.about-page .company-intro {
  height: 100vh;
}
.about-page .company-intro .-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.about-page .company-intro .-container .info {
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 5rem;
  width: 100%;
  z-index: 1;
  padding: 0.64rem 0.56rem;
  color: white;
}
.about-page .company-intro .-container .info .line__ellipsis__wrap {
  pointer-events: auto;
  color: white;
  margin-bottom: 0.72rem;
}
.about-page .company-intro .-container .info .line__ellipsis__wrap h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
.about-page .company-intro .-container .info .sub-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  margin-bottom: 0.32rem;
}
.about-page .company-intro .-container .info .context {
  font-family: var(--sk-font-Regular);
  pointer-events: auto;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: white;
}
.about-page .company-intro .-container .values-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-page .company-intro .-container .values-wrapper .-indicator {
  font-family: var(--sk-EN-font-Regular);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 0.72rem;
  left: 0.56rem;
  z-index: 1;
}
.about-page .company-intro .-container .values-wrapper .-indicator span {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02rem;
}
.about-page .company-intro .-container .values-wrapper .-indicator .curr {
  color: white;
}
.about-page .company-intro .-container .values-wrapper .-values-content {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  padding: 0.64rem 0.32rem 0;
  z-index: 1;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list {
  --baseHeight: 11.66464155528554%;
  --diffHeight: 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;
  height: 100%;
  width: 100%;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item {
  --progress: 0;
  --itemHeight: calc(var(--baseHeight) + var(--diffHeight) * var(--progress));
  --titleFontSize: calc(0.24rem + 0.4rem * var(--progress));
  --titleLineHeight: calc(0.32rem + 0.4rem * var(--progress));
  --contentOpacity: calc(var(--progress));
  position: relative;
  width: 100%;
  padding: 0.16rem 0;
  padding-left: 1.2rem;
  height: var(--itemHeight);
  color: white;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item:first-child {
  border-top: 0;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-num {
  font-family: var(--sk-EN-font-Regular);
  position: absolute;
  top: 0.16rem;
  left: 0;
  max-width: 1.2rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 0.02rem;
  z-index: 0;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-title {
  font-family: var(--sk-EN-font-SemiBold);
  font-size: var(--titleFontSize);
  line-height: var(--titleLineHeight);
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content {
  opacity: var(--contentOpacity);
  margin-top: 0.32rem;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch {
  max-width: 80%;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-tab {
  margin-bottom: 0.32rem;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-tab .tab-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  gap: 0.08rem;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-tab .tab-ul .tab-li {
  font-family: var(--sk-EN-font-SemiBold);
  cursor: pointer;
  padding: 0.08rem 0.16rem;
  border-radius: 0.48rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.14rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-tab .tab-ul .tab-li.active {
  color: rgb(19, 37, 40);
  background-color: white !important;
}
@media screen and (min-width: 800px) {
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-tab .tab-ul .tab-li:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-content {
  display: none;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-content.active {
  display: block;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-content .-text {
  max-width: 100%;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-group .-img {
  display: none;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-group .-img.active {
  display: block;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .-text {
  max-width: 4.4rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .-img {
  width: 4.4rem;
  height: 2.48rem;
  border-radius: 0.16rem;
  overflow: hidden;
  margin-top: 0.64rem;
}
.about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .company-intro .-container .values-wrapper .-background {
  pointer-events: none;
  z-index: 0;
}
.about-page .company-intro .-container .values-wrapper .-background img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .about-page .company-intro {
    height: auto;
  }
  .about-page .company-intro .-container {
    position: static;
    height: auto;
  }
  .about-page .company-intro .-container .info {
    pointer-events: auto;
    position: static;
    max-width: 100%;
    width: 100%;
    z-index: 1;
    padding: 0.87rem 0.43rem;
  }
  .about-page .company-intro .-container .info .line__ellipsis__wrap {
    color: #132528;
  }
  .about-page .company-intro .-container .info .line__ellipsis__wrap h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
    text-align: center;
  }
  .about-page .company-intro .-container .info .line__ellipsis__wrap .line__ellipsis {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .about-page .company-intro .-container .info .sub-title {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-bottom: 0.32rem;
    text-align: center;
    color: #132528;
  }
  .about-page .company-intro .-container .info .context {
    font-size: 0.25rem;
    line-height: 0.43rem;
    color: #132528;
    text-align: center;
  }
  .about-page .company-intro .-container .values-wrapper {
    position: relative;
    height: 10.53rem;
  }
  .about-page .company-intro .-container .values-wrapper .-indicator {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    top: auto;
    bottom: 0.43rem;
    left: 0.43rem;
  }
  .about-page .company-intro .-container .values-wrapper .-indicator span {
    font-size: 0.22rem;
    line-height: 0.43rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    backdrop-filter: blur(50px);
    padding: 0 0.43rem;
    z-index: 1;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list {
    width: 100%;
    height: auto;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item {
    position: relative;
    width: 100%;
    padding: 0.14rem 0;
    padding-left: 1.73rem;
    min-height: 1rem;
    height: auto;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item:first-child {
    border-top: 0;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item.active {
    padding: 0.43rem 0 0.43rem 1.73rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item.active .-title {
    font-size: 0.58rem;
    line-height: 0.72rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item.active .-num {
    top: 0.58rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-num {
    position: absolute;
    top: 0.14rem;
    left: 0;
    max-width: 1.73rem;
    font-size: 0.22rem;
    line-height: 0.43rem;
    z-index: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-title {
    font-size: 0.25rem;
    line-height: 0.43rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content {
    display: none;
    opacity: 1;
    margin-top: 0.29rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch {
    max-width: 100%;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-tab .tab-ul {
    gap: 0.1rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-tab .tab-ul .tab-li {
    padding: 0.16rem 0.24rem;
    border-radius: 0.64rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .-text {
    max-width: 100%;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .-img {
    display: none;
  }
  .about-page .company-intro .-container .values-wrapper .-values-content .-list .-item .-content .text-switch .switch-group .-img {
    width: 100%;
    height: 2.48rem;
    margin-top: 0.58rem;
  }
  .about-page .company-intro .-container .values-wrapper .-background img {
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .about-page .company-intro .-container .values-wrapper .-background img.active {
    opacity: 1;
  }
}
.about-page .history-section {
  height: 100vh;
}
.about-page .history-section .-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.about-page .history-section .-container .wal {
  padding-top: 1.2rem;
  height: 100%;
}
.about-page .history-section .-container .wal .head-info .line__ellipsis__wrap h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
.about-page .history-section .-container .wal .year-component {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 0.64rem;
  width: 100%;
  height: 5.92rem;
  padding-right: 18%;
}
.about-page .history-section .-container .wal .year-component .year-box {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about-page .history-section .-container .wal .year-component .year-box .list {
  max-width: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-page .history-section .-container .wal .year-component .year-box .list ul {
  --translateY: 0;
  -webkit-transform: translate(0, var(--translateY));
      -ms-transform: translate(0, var(--translateY));
          transform: translate(0, var(--translateY));
}
.about-page .history-section .-container .wal .year-component .year-box .list ul li {
  font-family: var(--sk-EN-font-Regular);
  --scale: 1;
  --opacity: 0.2;
  padding: 0.32rem 0;
  font-size: 1.28rem;
  line-height: 1;
  color: #132528;
  opacity: var(--opacity);
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.about-page .history-section .-container .wal .year-component .year-box .list ul li .text {
  display: block;
  -webkit-transform: scale(var(--scale));
      -ms-transform: scale(var(--scale));
          transform: scale(var(--scale));
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
}
.about-page .history-section .-container .wal .year-component .year-box .svg-circle {
  --progress: 0.5;
  --circle-size: 5.92rem;
  --bg-color: rgba(19, 37, 40, 0.10);
  --progress-color: rgba(81, 177, 70, 1);
  --total-thickness: 0.3px;
  --hollow-border-width: 0.3px;
  --linecap: round;
  --start-angle: -90deg;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 3rem;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  overflow: hidden;
  z-index: -1;
}
.about-page .history-section .-container .wal .year-component .year-box .svg-circle .progress-circle {
  position: relative;
  width: var(--circle-size);
  height: var(--circle-size);
  -webkit-transform: rotate(var(--start-angle));
      -ms-transform: rotate(var(--start-angle));
          transform: rotate(var(--start-angle));
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
.about-page .history-section .-container .wal .year-component .year-box .svg-circle .progress-circle__bg {
  fill: none;
  stroke: var(--bg-color);
  stroke-width: var(--total-thickness);
  stroke-dasharray: none;
  r: calc(45px - (var(--total-thickness) - var(--hollow-border-width)) / 2);
}
.about-page .history-section .-container .wal .year-component .year-box .svg-circle .progress-circle__progress {
  fill: none;
  stroke: var(--progress-color);
  stroke-width: var(--hollow-border-width);
  stroke-linecap: var(--linecap);
  --radius: calc(45px - (var(--total-thickness) - var(--hollow-border-width)) / 2);
  --circumference: calc(2 * 3.1415926 * var(--radius));
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: calc(var(--circumference) * (1 - var(--progress)));
  r: calc(45px - (var(--total-thickness) - var(--hollow-border-width)) / 2);
}
.about-page .history-section .-container .wal .year-component .content-box {
  position: relative;
  height: 100%;
  margin-left: auto;
  max-width: 4.4rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
}
.about-page .history-section .-container .wal .year-component .content-box .list ul li {
  --progress: 0;
  --opacity: var(--progress);
  --innerTranslateY: 105%;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  padding: 0.16rem 0;
  opacity: var(--opacity);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.about-page .history-section .-container .wal .year-component .content-box .list ul li .inner {
  width: 100%;
  -webkit-transform: translate(0, var(--innerTranslateY));
      -ms-transform: translate(0, var(--innerTranslateY));
          transform: translate(0, var(--innerTranslateY));
}
.about-page .history-section .-container .wal .year-component .content-box .list ul li .inner .img {
  pointer-events: none;
  width: 100%;
  height: 2.48rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.about-page .history-section .-container .wal .year-component .content-box .list ul li .inner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .history-section .-container .wal .year-component .content-box .list ul li .inner .name {
  font-family: var(--sk-font-SemiBold);
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.about-page .history-section .-container .wal .year-component .content-box .list ul li .inner .text {
  margin-top: 0.16rem;
  color: rgba(19, 37, 40, 0.6);
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.about-page .history-section .-container .wal .year-component .ruler-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;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 1.25rem;
  height: 100%;
  overflow: hidden;
}
.about-page .history-section .-container .wal .year-component .ruler-box::before, .about-page .history-section .-container .wal .year-component .ruler-box::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.88rem;
  background: -webkit-linear-gradient(top, #EFF8F8 0%, transparent 100%);
  background: linear-gradient(to bottom, #EFF8F8 0%, transparent 100%);
  z-index: 1;
}
.about-page .history-section .-container .wal .year-component .ruler-box::after {
  top: auto;
  bottom: 0;
  background: -webkit-linear-gradient(top, transparent 0%, #EFF8F8 100%);
  background: linear-gradient(to bottom, transparent 0%, #EFF8F8 100%);
}
.about-page .history-section .-container .wal .year-component .ruler-box .list {
  position: relative;
  width: 100%;
  padding: 0 0.24rem;
  height: 0.88rem;
  z-index: 0;
}
.about-page .history-section .-container .wal .year-component .ruler-box .list::before, .about-page .history-section .-container .wal .year-component .ruler-box .list::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../images/about/icon-ruler-triangle.png) center center no-repeat;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.about-page .history-section .-container .wal .year-component .ruler-box .list::after {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.about-page .history-section .-container .wal .year-component .ruler-box .list ul {
  --translateY: 0;
  -webkit-transform: translate(0, var(--translateY));
      -ms-transform: translate(0, var(--translateY));
          transform: translate(0, var(--translateY));
}
.about-page .history-section .-container .wal .year-component .ruler-box .list ul li {
  --c-center-line: #132528;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 0.88rem;
  padding-right: 0.24rem;
  color: #132528;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .history-section .-container .wal .year-component .ruler-box .list ul li.active {
  --c-center-line: #51B146;
  color: #51B146;
}
.about-page .history-section .-container .wal .year-component .ruler-box .list ul li .text {
  font-family: var(--sk-EN-font-Medium);
  font-weight: normal;
  font-size: 0.14rem;
  line-height: 0.24rem;
  -webkit-transform: translate(0, 0.02rem);
      -ms-transform: translate(0, 0.02rem);
          transform: translate(0, 0.02rem);
}
.about-page .history-section .-container .wal .year-component .ruler-box .list ul li .ruler-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  right: 0;
  height: 100%;
  gap: 0.09rem;
}
.about-page .history-section .-container .wal .year-component .ruler-box .list ul li .ruler-line span {
  width: 0.08rem;
  height: 0.01rem;
  opacity: 0.4;
  background-color: #132528;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .history-section .-container .wal .year-component .ruler-box .list ul li .ruler-line span:nth-child(5) {
  opacity: 1;
  width: 0.16rem;
  background-color: var(--c-center-line);
}
.about-page .history-section .swiper-btn {
  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.36rem;
}
@media screen and (max-width: 800px) {
  .about-page .history-section .swiper-btn {
    margin-top: 0.58rem;
  }
}
.about-page .history-section .swiper-btn .btn-prev,
.about-page .history-section .swiper-btn .btn-next {
  margin-left: 0.08rem;
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  background: rgb(19, 37, 40);
  border-radius: 0.56rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .about-page .history-section .swiper-btn .btn-prev,
  .about-page .history-section .swiper-btn .btn-next {
    margin-left: 0.14rem;
    height: 0.72rem;
    width: 0.72rem;
  }
}
.about-page .history-section .swiper-btn .btn-prev.swiper-button-disabled,
.about-page .history-section .swiper-btn .btn-next.swiper-button-disabled {
  cursor: not-allowed;
  background: rgba(19, 37, 40, 0.1);
}
.about-page .history-section .swiper-btn .btn-prev.swiper-button-disabled .icon,
.about-page .history-section .swiper-btn .btn-next.swiper-button-disabled .icon {
  color: #132528;
}
.about-page .history-section .swiper-btn .btn-prev .icon,
.about-page .history-section .swiper-btn .btn-next .icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
  color: white;
}
@media screen and (max-width: 800px) {
  .about-page .history-section .swiper-btn .btn-prev .icon,
  .about-page .history-section .swiper-btn .btn-next .icon {
    width: 0.29rem;
    height: 0.29rem;
  }
}
.about-page .history-section .swiper-btn .btn-prev .icon path,
.about-page .history-section .swiper-btn .btn-next .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .about-page .history-section {
    height: auto;
  }
  .about-page .history-section .-container {
    position: static;
    height: auto;
    overflow: hidden;
  }
  .about-page .history-section .-container .wal {
    padding-top: 0.87rem;
    padding-bottom: 1.15rem;
    height: 100%;
  }
  .about-page .history-section .-container .wal .head-info .line__ellipsis__wrap h2 {
    font-size: 0.43rem;
    line-height: 0.58rem;
    text-align: center;
  }
  .about-page .history-section .-container .wal .head-info .line__ellipsis__wrap .line__ellipsis {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .about-page .history-section .-container .wal .year-component {
    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;
    margin-top: 1.3rem;
    width: 100%;
    height: auto;
    padding-right: 0;
  }
  .about-page .history-section .-container .wal .year-component .year-box {
    position: relative;
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about-page .history-section .-container .wal .year-component .year-box .list {
    max-width: 2.6rem;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: visible;
  }
  .about-page .history-section .-container .wal .year-component .year-box .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: 100%;
  }
  .about-page .history-section .-container .wal .year-component .year-box .list ul li {
    --scale: 1;
    --opacity: 0.2;
    width: 100%;
    padding: 0.32rem 0;
    font-size: 0.43rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    color: #132528;
    opacity: var(--opacity);
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .about-page .history-section .-container .wal .year-component .year-box .list ul li.swiper-slide-active {
    --opacity: 1;
    --scale: 1.5;
    color: #51B146;
  }
  .about-page .history-section .-container .wal .year-component .year-box .list ul li .text {
    text-align: center;
    -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .about-page .history-section .-container .wal .year-component .year-box .svg-circle {
    --progress: 0;
    --circle-size: 4.76rem;
    --total-thickness: 0.3px;
    --hollow-border-width: 0.3px;
    --linecap: round;
    --start-angle: -90deg;
    top: 0.24rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .about-page .history-section .-container .wal .year-component .year-box .svg-circle .progress-circle {
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
    -webkit-transform: rotate(var(--start-angle));
        -ms-transform: rotate(var(--start-angle));
            transform: rotate(var(--start-angle));
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
  }
  .about-page .history-section .-container .wal .year-component .year-box .svg-circle .progress-circle__bg {
    fill: none;
    stroke: var(--bg-color);
    stroke-width: var(--total-thickness);
    stroke-dasharray: none;
    r: calc(45px - (var(--total-thickness) - var(--hollow-border-width)) / 2);
  }
  .about-page .history-section .-container .wal .year-component .year-box .svg-circle .progress-circle__progress {
    fill: none;
    stroke: var(--progress-color);
    stroke-width: var(--hollow-border-width);
    stroke-linecap: var(--linecap);
    --radius: calc(45px - (var(--total-thickness) - var(--hollow-border-width)) / 2);
    --circumference: calc(2 * 3.1415926 * var(--radius));
    stroke-dasharray: var(--circumference);
    stroke-dashoffset: calc(var(--circumference) * (1 - var(--progress)));
    r: calc(45px - (var(--total-thickness) - var(--hollow-border-width)) / 2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .about-page .history-section .-container .wal .year-component .content-box {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0.58rem 0 0;
    max-width: 100%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .about-page .history-section .-container .wal .year-component .content-box .list {
    width: 100%;
  }
  .about-page .history-section .-container .wal .year-component .content-box .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: 100%;
  }
  .about-page .history-section .-container .wal .year-component .content-box .list ul li {
    --progress: 0;
    --opacity: var(--progress);
    --innerTranslateY: 0%;
    position: static;
    top: 0;
    width: 100%;
    margin-right: 0.43rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 0;
    opacity: 1;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .about-page .history-section .-container .wal .year-component .content-box .list ul li:last-child {
    margin-right: 0;
  }
  .about-page .history-section .-container .wal .year-component .content-box .list ul li .inner {
    width: 100%;
  }
  .about-page .history-section .-container .wal .year-component .content-box .list ul li .inner .img {
    height: 3.75rem;
    border-radius: 0.29rem;
  }
  .about-page .history-section .-container .wal .year-component .content-box .list ul li .inner .name {
    margin-top: 0.29rem;
    font-size: 0.32rem;
    line-height: 0.58rem;
  }
  .about-page .history-section .-container .wal .year-component .content-box .list ul li .inner .text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .about-page .history-section .-container .wal .year-component .ruler-box {
    display: none;
  }
}

.global-offices-page .-container .wal {
  padding-top: 2.08rem;
  padding-bottom: 1.6rem;
}
.global-offices-page .-container .wal .office-feature-image {
  margin-top: 0.8rem;
  overflow: hidden;
  border-radius: 0.24rem;
}
.global-offices-page .-container .wal .office-feature-image img {
  display: block;
  width: 100%;
  height: auto;
}
.global-offices-page .-container .wal .office-feature-image .office-feature-image-mobile {
  display: none;
}
.global-offices-page .-container .wal .offices-box {
  margin-top: 0.8rem;
}
.global-offices-page .-container .wal .offices-box .content-list {
  width: 100%;
}
.global-offices-page .-container .wal .offices-box .content-list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.16rem;
}
.global-offices-page .-container .wal .offices-box .content-list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 2.4rem;
  padding: 0.32rem;
  border: 1px solid rgba(19, 37, 40, 0.08);
  border-radius: 0.24rem;
  background-color: white;
}
.global-offices-page .-container .wal .offices-box .content-list ul li .office-card-number {
  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.4rem;
  height: 0.4rem;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  border-radius: 50%;
  background: rgba(81, 177, 70, 0.12);
  color: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 1;
  font-family: var(--sk-font-SemiBold);
}
.global-offices-page .-container .wal .offices-box .content-list ul li .office-card-content {
  min-width: 0;
  margin-left: 0.2rem;
}
.global-offices-page .-container .wal .offices-box .content-list ul li .-name {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #1E1E1E;
}
.global-offices-page .-container .wal .offices-box .content-list ul li .-contact {
  margin-top: 0.32rem;
}
.global-offices-page .-container .wal .offices-box .content-list ul li .-contact .dl .dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.global-offices-page .-container .wal .offices-box .content-list ul li .-contact .dl .dd:first-child {
  margin-top: 0;
}
.global-offices-page .-container .wal .offices-box .content-list ul li .-contact .dl .dd img {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  object-fit: contain;
  margin-right: 0.16rem;
}
.global-offices-page .-container .wal .offices-box .content-list ul li .-contact .dl .dd .text {
  min-width: 0;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 800px) {
  .global-offices-page .-container .wal {
    padding: 1.88rem 0 1.15rem;
  }
  .global-offices-page .-container .wal .office-feature-image {
    margin: 0.48rem 0.43rem 0;
    border-radius: 0.24rem;
  }
  .global-offices-page .-container .wal .office-feature-image .office-feature-image-pc {
    display: none;
  }
  .global-offices-page .-container .wal .office-feature-image .office-feature-image-mobile {
    display: block;
  }
  .global-offices-page .-container .wal .offices-box {
    margin-top: 0.48rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list {
    padding: 0 0.43rem;
    width: 100%;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.29rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul li {
    min-height: 0;
    padding: 0.43rem;
    border-radius: 0.43rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul li .office-card-number {
    width: 0.5rem;
    height: 0.5rem;
    font-size: 0.22rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul li .office-card-content {
    margin-left: 0.24rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul li .-name {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul li .-contact {
    margin-top: 0.29rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul li .-contact .dl .dd {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .global-offices-page .-container .wal .offices-box .content-list ul li .-contact .dl .dd img {
    width: 0.43rem;
    height: 0.43rem;
    margin-right: 0.29rem;
  }
}

.fmcs-page img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.fmcs-page .product-viewer-component .head-wrap {
  text-align: left;
  max-width: 100%;
  margin-bottom: 1.04rem;
}
.fmcs-page .product-viewer-component .sk-tab-box {
  margin-top: 0;
}
.fmcs-page .product-viewer-component .card-component.other-component {
  padding-left: 0.64rem;
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap {
  max-width: 35%;
  width: 100%;
  margin-right: auto;
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap .title {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap .context {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl {
  margin-top: 0.64rem;
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd {
  margin-top: 0.32rem;
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd:first-child {
  margin-top: 0;
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd .name {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
}
.fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.fmcs-page .sk-section {
  overflow: hidden;
}
.fmcs-page .sk-section .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
}
.fmcs-page .sk-section .-box .-body {
  margin-top: 1.4rem;
}
.fmcs-page .core-demand {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.fmcs-page .core-demand .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.64rem;
  height: 10.8rem;
}
.fmcs-page .core-demand .-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;
  height: 100%;
}
.fmcs-page .core-demand .-box > .-background {
  pointer-events: none;
  z-index: 1;
}
.fmcs-page .core-demand .-box > .-background .dots .dot {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  pointer-events: auto;
  -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: 0.32rem;
  height: 0.32rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fmcs-page .core-demand .-box > .-background .dots .dot.active::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.fmcs-page .core-demand .-box > .-background .dots .dot::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(81, 177, 70, 0.4);
  backdrop-filter: blur(0.2rem);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fmcs-page .core-demand .-box > .-background .dots .dot::after {
  content: "";
  width: 0.08rem;
  height: 0.08rem;
  background-color: rgb(189, 255, 105);
}
.fmcs-page .core-demand .-box .info {
  position: relative;
  margin-bottom: auto;
  z-index: 2;
}
.fmcs-page .core-demand .-box .info .sk-section-subTit {
  margin-bottom: 0.16rem;
}
.fmcs-page .core-demand .-box .card-swiper {
  position: relative;
  max-width: 4.4rem;
  width: 100%;
}
.fmcs-page .core-demand .-box .card-swiper .swiper-container {
  width: 100%;
  border-radius: 0.24rem;
  overflow: hidden;
}
.fmcs-page .core-demand .-box .card-swiper .swiper-wrapper {
  min-height: 5.6rem;
}
.fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  height: auto;
  border-radius: 0.24rem;
  padding: 0.64rem 0.48rem 1.44rem;
  margin-right: 0.16rem;
  color: white;
  overflow: hidden;
  z-index: 1;
}
.fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0;
}
.fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide .title {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide .text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide .img {
  position: absolute;
  bottom: 0.24rem;
  left: 0.24rem;
  width: 1.2rem;
  height: 1.2rem;
  z-index: 0;
}
.fmcs-page .core-demand .-box .card-swiper .sk-swiper-arrow {
  position: absolute;
  bottom: 0.24rem;
  right: 0.24rem;
  z-index: 2;
}
.fmcs-page .platform-architecture {
  position: relative;
  z-index: 1;
}
.fmcs-page .platform-architecture .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.96rem;
}
.fmcs-page .platform-architecture .wal .-background img {
  object-position: top center;
}
.fmcs-page .platform-architecture .-head .line__ellipsis__wrap {
  --sk-global-color: white;
}
.fmcs-page .platform-architecture .-body {
  margin-top: 1.04rem;
}
.fmcs-page .platform-architecture .-body > *:last-child {
  margin-bottom: 0 !important;
}
.fmcs-page .platform-architecture .-body .linear-tit {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: transparent;
  background: -webkit-linear-gradient(top, white, transparent 100%);
  background: linear-gradient(to bottom, white, transparent 100%);
  -webkit-background-clip: text;
          background-clip: text;
  text-align: center;
}
.fmcs-page .platform-architecture .-body .border-box {
  padding: 0.32rem;
  border-radius: 0.24rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 0.32rem;
}
.fmcs-page .platform-architecture .-body .border-box .title {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.32rem;
  line-height: 0.4rem;
  text-align: center;
  color: white;
  margin-bottom: 0.16rem;
}
.fmcs-page .platform-architecture .-body .border-box .sub-title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.64rem;
}
.fmcs-page .platform-architecture .-body .border-box .card-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
}
.fmcs-page .platform-architecture .-body .border-box .card-list ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 0.24rem;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  height: auto;
}
.fmcs-page .platform-architecture .-body .border-box .card-list ul li .inner {
  padding: 0.32rem 0.28rem;
}
.fmcs-page .platform-architecture .-body .border-box .card-list ul li .-tit {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.16rem;
}
.fmcs-page .platform-architecture .-body .border-box .card-list ul li .-dl .-dd {
  position: relative;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 0.24rem;
}
.fmcs-page .platform-architecture .-body .border-box .card-list ul li .-dl .-dd::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.12rem;
  left: 0.12rem;
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
}
.fmcs-page .platform-architecture .-body .box-view1 {
  position: relative;
  margin: 0 auto;
  max-width: 8.96rem;
  width: 100%;
  height: 2.64rem;
  padding: 0.16rem;
  margin-bottom: 0.64rem;
  z-index: 1;
}
.fmcs-page .platform-architecture .-body .box-view1 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}
.fmcs-page .platform-architecture .-body .box-view3 .logo-img {
  width: 100%;
  text-align: center;
}
.fmcs-page .platform-architecture .-body .box-view3 .logo-img img {
  height: 0.48rem;
  object-fit: contain;
}
.fmcs-page .platform-architecture .-body .box-view3 .list {
  margin-top: 0.64rem;
}
.fmcs-page .platform-architecture .-body .box-view3 .list ul {
  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;
}
.fmcs-page .platform-architecture .-body .box-view3 .list ul li {
  position: relative;
  max-width: 4.4rem;
  width: 100%;
  height: 1.84rem;
  padding: 0.4rem 0.24rem;
  z-index: 1;
}
.fmcs-page .platform-architecture .-body .box-view3 .list ul li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}
.fmcs-page .digital-management {
  overflow: hidden;
}
.fmcs-page .digital-management .wal {
  padding-top: 1.2rem;
}
.fmcs-page .digital-management .-box .-head .text {
  margin-top: 0.72rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
.fmcs-page .digital-management .-box .-body {
  margin-top: 0.64rem;
}
.fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide {
  padding: 0.32rem;
  border-radius: 0.24rem;
  background-color: white;
  margin-right: 0.16rem;
  background-image: url(../images/FMCS/img200.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0;
}
.fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
  border: 2px solid #132528;
  border-radius: 0.16rem;
  overflow: hidden;
  background-color: #132528;
}
.fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 2.96rem;
  object-fit: cover;
}
.fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide .name {
  font-family: var(--sk-font-Medium);
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: white;
}
.fmcs-page .digital-management .-box .-body .card-swiper .sk-swiper-arrow {
  margin-top: 0.32rem;
}
.fmcs-page .operations-system {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.fmcs-page .operations-system .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.64rem;
  height: 9.6rem;
}
.fmcs-page .operations-system .-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;
  height: 100%;
}
.fmcs-page .operations-system .-box .card-swiper {
  --count: 3;
  --gap: .16rem;
  margin-top: auto;
}
.fmcs-page .operations-system .-box .card-swiper .swiper-slide {
  border-radius: 0.24rem;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.2rem);
  padding: 0.32rem;
  color: white;
}
.fmcs-page .operations-system .-box .card-swiper .swiper-slide .img {
  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: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--sk-global-color);
}
.fmcs-page .operations-system .-box .card-swiper .swiper-slide .img img {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
}
.fmcs-page .operations-system .-box .card-swiper .swiper-slide .name {
  font-family: var(--sk-font-SemiBold);
  margin-top: 0.64rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.fmcs-page .operations-system .-box .card-swiper .swiper-slide .text {
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.fmcs-page .operations-system .-box .card-swiper .sk-swiper-arrow {
  --c-icon: #132528;
  --c-icon-bg: white;
  --c-icon-disabled: white;
  --c-icon-bg-disabled: rgba(255, 255, 255, 0.10);
}
.fmcs-page .operations-center {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.fmcs-page .operations-center .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
  height: 9.6rem;
}
.fmcs-page .operations-center .-background .side-imgs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  pointer-events: none;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fmcs-page .operations-center .-background .side-imgs img {
  position: static;
  width: 7.36rem;
  height: 100%;
  object-fit: cover;
}
.fmcs-page .operations-center .-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.fmcs-page .operations-center .-box .center-box {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 5.92rem;
  padding: 0 8%;
  -webkit-transform: translate(0, -55%);
      -ms-transform: translate(0, -55%);
          transform: translate(0, -55%);
  z-index: 1;
}
.fmcs-page .operations-center .-box .center-box .side-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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.fmcs-page .operations-center .-box .center-box .side-box .text-box {
  max-width: 4.4rem;
  width: 100%;
  color: white;
}
.fmcs-page .operations-center .-box .center-box .side-box .text-box .title {
  font-family: var(--sk-font-SemiBold);
  text-align: center;
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.fmcs-page .operations-center .-box .center-box .side-box .text-box .text {
  text-align: center;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.fmcs-page .operations-center .-box .center-box .middle-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -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;
  left: 50%;
  top: 0;
  width: 5.92rem;
  height: 100%;
  padding: 0.32rem;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
}
.fmcs-page .operations-center .-box .center-box .middle-box .title {
  font-family: var(--sk-font-SemiBold);
  font-size: 0.32rem;
  line-height: 0.4rem;
  color: white;
  text-align: center;
}
.fmcs-page .operations-center .-box .center-box .middle-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.fmcs-page .operations-center .-box .foot-box {
  margin-top: auto;
}
.fmcs-page .operations-center .-box .foot-box .list 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;
  gap: 0.16rem;
}
.fmcs-page .operations-center .-box .foot-box .list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 2.88rem;
  width: 100%;
  -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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.fmcs-page .operations-center .-box .foot-box .list ul li img {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
}
.fmcs-page .operations-center .-box .foot-box .list ul li .text {
  font-family: var(--sk-font-SemiBold);
  text-align: center;
  margin-top: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.23rem;
  color: white;
}
.fmcs-page .factory-management-subsystem {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}
.fmcs-page .factory-management-subsystem .sticky-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.fmcs-page .factory-management-subsystem .sticky-container .sticky-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
}
.fmcs-page .factory-management-subsystem .-box {
  position: relative;
  height: 100%;
}
.fmcs-page .factory-management-subsystem .-box .wal {
  height: 100%;
}
.fmcs-page .factory-management-subsystem .-box .info {
  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: 100%;
  max-width: 40%;
}
.fmcs-page .factory-management-subsystem .card-list-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list {
  padding: 0.32rem 0;
  max-width: 8.96rem;
  width: 100%;
  margin: auto 0 auto auto;
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  gap: 0.16rem;
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li {
  width: calc((100% - 0.16rem) / 2);
  border-radius: 0.24rem;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.2rem);
  padding: 0.32rem;
  color: white;
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li:nth-child(2n) {
  -webkit-transform: translate(0, 0.32rem);
      -ms-transform: translate(0, 0.32rem);
          transform: translate(0, 0.32rem);
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .img {
  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: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background-color: var(--sk-global-color);
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .img img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .name {
  font-family: var(--sk-font-SemiBold);
  margin-top: 0.48rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.fmcs-page .factory-management-subsystem .sk-swiper-arrow {
  --c-icon: #132528;
  --c-icon-bg: white;
  --c-icon-disabled: white;
  --c-icon-bg-disabled: rgba(255, 255, 255, 0.10);
}
.fmcs-page .bring-value {
  overflow: hidden;
}
.fmcs-page .bring-value .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.4rem;
}
.fmcs-page .bring-value .-box .-body {
  margin-top: 1.4rem;
}
.fmcs-page .bring-value .-box .-body .card-swiper {
  --count: 4;
  --gap: .16rem;
  margin-top: auto;
}
.fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide {
  border-radius: 0.24rem;
  background-color: white;
  backdrop-filter: blur(0.2rem);
  padding: 0.32rem;
  color: #132528;
}
.fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide .img {
  width: 0.48rem;
  height: 0.48rem;
}
.fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide .name {
  font-family: var(--sk-font-SemiBold);
  margin-top: 0.48rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .fmcs-page .core-demand {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .fmcs-page .core-demand .wal {
    padding-top: 0.87rem;
    padding-bottom: 0.87rem;
    height: auto;
    min-height: 13.56rem;
  }
  .fmcs-page .core-demand .-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;
    height: 100%;
  }
  .fmcs-page .core-demand .-box > .-background .dots {
    display: none;
  }
  .fmcs-page .core-demand .-box .info {
    position: relative;
    margin-bottom: 2.6rem;
    z-index: 2;
  }
  .fmcs-page .core-demand .-box .card-swiper {
    max-width: 100%;
  }
  .fmcs-page .core-demand .-box .card-swiper .swiper-container {
    max-width: 5.34rem;
    border-radius: 0.43rem;
    overflow: visible;
    margin: 0;
  }
  .fmcs-page .core-demand .-box .card-swiper .swiper-wrapper {
    min-height: 7.07rem;
  }
  .fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide {
    height: auto;
    border-radius: 0.43rem;
    padding: 0.58rem 0.43rem 2.88rem;
    margin-right: 0.29rem;
  }
  .fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide .title {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide .text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .fmcs-page .core-demand .-box .card-swiper .swiper-wrapper .swiper-slide .img {
    position: absolute;
    bottom: 0.24rem;
    left: 0.24rem;
    width: 1.2rem;
    height: 1.2rem;
    z-index: 0;
  }
  .fmcs-page .core-demand .-box .card-swiper .sk-swiper-arrow {
    --c-icon: #132528;
    --c-icon-bg: white;
    --c-icon-disabled: white;
    --c-icon-bg-disabled: rgba(255, 255, 255, 0.10);
    --c-icon-hover: white;
    --c-icon-bg-hover: var(--sk-global-color);
    position: relative;
    margin-top: 0.43rem;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  .fmcs-page .platform-architecture .wal {
    padding-top: 0.87rem;
    padding-bottom: 0.87rem;
  }
  .fmcs-page .platform-architecture .-head .line__ellipsis__wrap {
    --sk-global-color: white;
  }
  .fmcs-page .platform-architecture .-body {
    margin-top: 1.3rem;
  }
  .fmcs-page .platform-architecture .-body > *:last-child {
    margin-bottom: 0 !important;
  }
  .fmcs-page .platform-architecture .-body .linear-tit {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .fmcs-page .platform-architecture .-body .border-box {
    padding: 0.43rem;
    border-radius: 0.43rem;
    margin-bottom: 0.29rem;
    overflow: hidden;
  }
  .fmcs-page .platform-architecture .-body .border-box .title {
    font-size: 0.36rem;
    line-height: 0.43rem;
    margin-bottom: 0.16rem;
  }
  .fmcs-page .platform-architecture .-body .border-box .sub-title {
    font-size: 0.25rem;
    line-height: 0.43rem;
    margin-bottom: 0.72rem;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list {
    max-width: 100%;
    width: 100%;
    overflow: auto;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: 100%;
    gap: 0;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list ul li {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 3.61rem;
    height: auto;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    border-radius: 0.29rem;
    margin-right: 0.29rem;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list ul li:last-child {
    margin-right: 0;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list ul li .inner {
    padding: 0.29rem;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list ul li .-tit {
    font-size: 0.29rem;
    line-height: 0.43rem;
    margin-bottom: 0.29rem;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list ul li .-dl .-dd {
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding-left: 0.29rem;
  }
  .fmcs-page .platform-architecture .-body .border-box .card-list ul li .-dl .-dd::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.21rem;
    left: 0.14rem;
    width: 0.08rem;
    height: 0.08rem;
  }
  .fmcs-page .platform-architecture .-body .border-box .bottom-tip {
    margin-top: 0.58rem;
    text-align: center;
    font-size: 0.22rem;
    line-height: 0.29rem;
    color: rgba(255, 255, 255, 0.4);
  }
  .fmcs-page .platform-architecture .-body .box-view1 {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    height: 1.73rem;
    padding: 0rem;
    margin-bottom: 0.58rem;
  }
  .fmcs-page .platform-architecture .-body .box-view3 .logo-img {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
  .fmcs-page .platform-architecture .-body .box-view3 .logo-img img {
    height: 2.48rem;
  }
  .fmcs-page .platform-architecture .-body .box-view3 .list {
    margin-top: 0.73rem;
  }
  .fmcs-page .platform-architecture .-body .box-view3 .list 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;
    gap: 0.16rem;
  }
  .fmcs-page .platform-architecture .-body .box-view3 .list ul li {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 2.45rem;
    padding: 0.4rem 0.24rem;
    z-index: 1;
  }
  .fmcs-page .digital-management .wal {
    padding-top: 0.87rem;
  }
  .fmcs-page .digital-management .-box .-head .text {
    margin-top: 0.72rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .fmcs-page .digital-management .-box .-body {
    margin-top: 0.87rem;
  }
  .fmcs-page .digital-management .-box .-body .card-swiper {
    --count: 1;
  }
  .fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide {
    padding: 0.43rem;
    border-radius: 0.43rem;
    background-color: white;
    margin-right: 0.16rem;
  }
  .fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide .img {
    border-radius: 0.32rem;
  }
  .fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide .img img {
    height: 3.46rem;
  }
  .fmcs-page .digital-management .-box .-body .card-swiper .swiper-wrapper .swiper-slide .name {
    margin-top: 0.72rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .fmcs-page .digital-management .-box .-body .card-swiper .sk-swiper-arrow {
    margin-top: 0.43rem;
  }
  .fmcs-page .operations-system .wal {
    padding-top: 0.87rem;
    padding-bottom: 0.43rem;
    height: 10.53rem;
  }
  .fmcs-page .operations-system .-box .card-swiper {
    --count: 1;
    --gap: .29rem;
    margin-top: auto;
  }
  .fmcs-page .operations-system .-box .card-swiper .swiper-container {
    max-width: 5.34rem;
    margin: 0;
  }
  .fmcs-page .operations-system .-box .card-swiper .swiper-slide {
    border-radius: 0.43rem;
    padding: 0.43rem;
  }
  .fmcs-page .operations-system .-box .card-swiper .swiper-slide .img {
    width: 0.87rem;
    height: 0.87rem;
  }
  .fmcs-page .operations-system .-box .card-swiper .swiper-slide .img img {
    width: 0.43rem;
    height: 0.43rem;
  }
  .fmcs-page .operations-system .-box .card-swiper .swiper-slide .name {
    margin-top: 0.58rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .fmcs-page .operations-system .-box .card-swiper .swiper-slide .text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .fmcs-page .operations-system .-box .card-swiper .sk-swiper-arrow {
    --c-icon: #132528;
    --c-icon-bg: white;
    --c-icon-disabled: white;
    --c-icon-bg-disabled: rgba(255, 255, 255, 0.10);
  }
  .fmcs-page .operations-center {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .fmcs-page .operations-center .wal {
    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;
    padding-top: 0.87rem;
    padding-bottom: 0.58rem;
    min-height: 10.1rem;
    height: auto;
  }
  .fmcs-page .operations-center .-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100%;
  }
  .fmcs-page .operations-center .-box .center-box {
    position: relative;
    top: 0;
    left: 0;
    height: 4.04rem;
    padding: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin: 0.87rem 0;
    z-index: 1;
  }
  .fmcs-page .operations-center .-box .center-box .side-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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
  }
  .fmcs-page .operations-center .-box .center-box .side-box .text-box {
    max-width: 1.59rem;
    width: 100%;
    color: white;
  }
  .fmcs-page .operations-center .-box .center-box .side-box .text-box:nth-child(2) .title,
  .fmcs-page .operations-center .-box .center-box .side-box .text-box:nth-child(2) .text {
    text-align: left;
  }
  .fmcs-page .operations-center .-box .center-box .side-box .text-box .title {
    text-align: right;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .fmcs-page .operations-center .-box .center-box .side-box .text-box .text {
    text-align: right;
    margin-top: 0.14rem;
    font-size: 0.22rem;
    line-height: 0.29rem;
  }
  .fmcs-page .operations-center .-box .center-box .middle-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -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: 4.04rem;
    height: 100%;
    padding: 0.72rem;
  }
  .fmcs-page .operations-center .-box .center-box .middle-box .title {
    font-size: 0.36rem;
    line-height: 0.43rem;
  }
  .fmcs-page .operations-center .-box .center-box .middle-box img {
    width: 3rem;
    height: 3rem;
  }
  .fmcs-page .operations-center .-box .foot-box {
    margin-top: auto;
  }
  .fmcs-page .operations-center .-box .foot-box .list 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;
    gap: 0.16rem;
  }
  .fmcs-page .operations-center .-box .foot-box .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 2.88rem;
    width: 100%;
    -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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fmcs-page .operations-center .-box .foot-box .list ul li img {
    width: 0.87rem;
    height: 0.87rem;
    object-fit: contain;
  }
  .fmcs-page .operations-center .-box .foot-box .list ul li .text {
    font-family: var(--sk-font-SemiBold);
    text-align: center;
    margin-top: 0.16rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
    color: white;
  }
  .fmcs-page .factory-management-subsystem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-height: 10.53rem;
    z-index: 1;
    overflow: hidden;
  }
  .fmcs-page .factory-management-subsystem .sticky-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .fmcs-page .factory-management-subsystem .sticky-container .sticky-inner {
    position: static;
    height: 100%;
  }
  .fmcs-page .factory-management-subsystem .-box {
    position: relative;
    height: 100%;
  }
  .fmcs-page .factory-management-subsystem .-box .-background::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
  }
  .fmcs-page .factory-management-subsystem .-box .wal {
    height: 100%;
    padding-top: 0.87rem;
  }
  .fmcs-page .factory-management-subsystem .-box .info {
    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: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    max-width: 100%;
  }
  .fmcs-page .factory-management-subsystem .-box .info .line__ellipsis {
    --sk-global-color: white;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper {
    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;
    padding-top: 1.2rem;
    padding-bottom: 0.43rem;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list {
    padding: 0;
    max-width: 5.34rem;
    width: 100%;
    margin: auto 0 0;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: 100%;
    gap: 0;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li {
    width: 100%;
    height: auto;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    border-radius: 0.43rem;
    padding: 0.43rem;
    margin-right: 0.29rem;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li:last-child {
    margin-right: 0;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li:nth-child(2n) {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .img {
    width: 1rem;
    height: 1rem;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .img img {
    width: 0.43rem;
    height: 0.43rem;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .name {
    margin-top: 0.58rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .fmcs-page .factory-management-subsystem .card-list-wrapper .card-list ul li .text {
    margin-top: 0.29rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .fmcs-page .factory-management-subsystem .sk-swiper-arrow {
    --c-icon: #132528;
    --c-icon-bg: white;
    --c-icon-disabled: white;
    --c-icon-bg-disabled: rgba(255, 255, 255, 0.10);
    margin-top: 0.43rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.58rem 0.29rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    padding: 0 0.29rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap .title {
    font-size: 0.36rem;
    line-height: 0.58rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap .context {
    margin-top: 0.29rem;
    font-size: 0.29rem;
    line-height: 0.43rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl {
    margin-top: 0.58rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd {
    margin-top: 0.58rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd:first-child {
    margin-top: 0;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd .name {
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .content-wrap .-dl .-dd .text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .img-wrap {
    display: block;
    width: 100%;
    margin-top: 0.58rem;
  }
  .fmcs-page .product-viewer-component .card-component.other-component .img-wrap .con-card-box[data-type3] .con-img {
    width: 90%;
  }
  .fmcs-page .bring-value .wal {
    padding-top: 0.87rem;
    padding-bottom: 0.28rem;
  }
  .fmcs-page .bring-value .-box .-body {
    margin-top: 1rem;
  }
  .fmcs-page .bring-value .-box .-body .card-swiper {
    --count: 1;
    --gap: .29rem;
    margin-top: 0;
  }
  .fmcs-page .bring-value .-box .-body .card-swiper .swiper-container {
    max-width: 5.34rem;
    margin: 0;
  }
  .fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide {
    border-radius: 0.43rem;
    padding: 0.43rem;
  }
  .fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide .img {
    width: 0.87rem;
    height: 0.87rem;
  }
  .fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide .name {
    margin-top: 0.58rem;
    font-size: 0.32rem;
    line-height: 0.43rem;
  }
  .fmcs-page .bring-value .-box .-body .card-swiper .swiper-slide .text {
    margin-top: 0.14rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

@media screen and (max-width: 800px) {
  .sk-section-subTit {
    font-size: 0.22rem;
    line-height: 0.29rem;
    margin-bottom: 0.14rem;
  }
  .sk-section-title {
    font-size: 0.43rem;
    line-height: 0.58rem;
  }
}
