@charset "UTF-8";
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

@-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/catalog/base/demoImg/topA.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topA.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .topA {
    right: 0.42rem;
    bottom: 1.2rem;
    width: 0.64rem;
    height: 0.64rem;
  }
}

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

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

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

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

.sk_select {
  --h: .24rem;
  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;
  height: var(--h);
  background: white;
  padding-left: 0.1rem;
}
.sk_select .-select-front input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.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;
  color: #02001B;
}
.sk_select .-select-front::after {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  background: url(../images/catalog/base/selectDown.svg) center center no-repeat;
  background-size: contain;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.1rem;
  left: 0;
  box-shadow: 0px 0px 0.2rem 0px rgba(218, 218, 218, 0.25);
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  overflow: hidden;
}
.sk_select .-select-layer .-inner {
  background-color: white;
  border-radius: 0.08rem;
  padding: 0.04rem;
}
.sk_select .-select-layer .-inner dl dd {
  font-family: var(--sk-font-Medium);
  cursor: pointer;
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding: 0.06rem 0.12rem;
  color: #02001B;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer .-inner dl dd:hover {
  color: var(--sk-global-color);
  background-color: rgba(237, 242, 247, 0.4);
}
@media screen and (max-width: 800px) {
  .sk_select {
    --h: .48rem;
    width: 100%;
  }
  .sk_select .-select-front {
    height: var(--h);
  }
  .sk_select .-select-front input {
    font-size: 0.24rem;
  }
  .sk_select .-select-front::after {
    width: 0.32rem;
    height: 0.32rem;
  }
  .sk_select .-select-layer .-inner {
    border-radius: 0.08rem;
  }
  .sk_select .-select-layer .-inner dl dd {
    font-size: 0.22rem;
    line-height: 0.32rem;
    padding: 0.1rem 0.12rem;
  }
}

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

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

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

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

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

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

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

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

li {
  list-style: outside none;
}

li {
  list-style-type: none;
}

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

textarea,
input {
  background: transparent;
  color: var(--fcolor-default);
  outline: none;
  border: 0;
  font-family: var(--sk-font-Regular);
}
textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
textarea::-moz-placeholder, input::-moz-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
textarea::placeholder,
input::placeholder {
  color: rgba(2, 0, 27, 0.2);
}

em {
  font-style: normal;
}

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

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

.wal,
.wal1792 {
  max-width: 14.08rem;
  width: 100%;
  margin: 0 auto;
}

.wal1792 {
  max-width: 17.92rem;
}

@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,
  .wal1792 {
    width: 100%;
    padding: 0 0.48rem;
  }

  .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;
  }
}
/* 通用全局的效果start */
.container {
  width: 14.08rem;
  margin: 0 auto;
}

/* 通用全局的效果end */
/* privacy-policy页面start */
.privacy-policy-page {
  min-height: 100vh;
  background-color: rgba(237, 242, 247, 0.4);
}
.privacy-policy-page main {
  width: 14.08rem;
  margin: 0 auto;
}
.privacy-policy-page .privacy-policy-box {
  padding: 0 0 1.28rem 0;
}
.privacy-policy-page .privacy-policy-box .privacy-content {
  background: white;
  padding: 0.96rem 2.4rem 1.28rem 2.4rem;
  border-radius: 0.08rem;
  overflow: hidden;
}
.privacy-policy-page .privacy-policy-box .privacy-header {
  text-align: center;
  margin-bottom: 0.25rem;
}
.privacy-policy-page .privacy-policy-box .privacy-header .privacy-title {
  font-size: 0.48rem;
  font-weight: 600;
  color: #02001B;
  text-align: left;
  margin-bottom: 0.15rem;
  font-family: var(--sk-font-Bold);
}
.privacy-policy-page .privacy-policy-box .privacy-header .privacy-date {
  font-size: 0.16rem;
  color: #02001B;
  margin: 0;
  text-align: left;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section {
  margin-bottom: 0.25rem;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section:last-child {
  margin-bottom: 0;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section h3 {
  font-size: 0.16rem;
  color: #02001B;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section p.privacy-text {
  font-size: 0.16rem;
  line-height: 1.6;
  color: #02001B;
  text-align: justify;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section p.privacy-text:last-child {
  margin-bottom: 0;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section .privacy-end {
  margin-top: 0.2rem;
  font-size: 0.16rem;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section .privacy-list {
  margin: 0.2rem 0;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section .privacy-list li {
  font-size: 0.16rem;
  line-height: 1.6;
  color: #02001B;
  position: relative;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section .privacy-list li::marker {
  color: #3498db;
  font-weight: 600;
}
.privacy-policy-page .privacy-policy-box .privacy-body .privacy-section .privacy-list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 800px) {
  .privacy-policy-page {
    background: #fff;
  }
  .privacy-policy-page main {
    width: 100%;
    margin: 0;
  }
  .privacy-policy-page .privacy-policy-box {
    padding: 0.22rem 0 0.6rem 0;
    box-sizing: border-box;
  }
  .privacy-policy-page .privacy-policy-box .privacy-content {
    background: #fff;
    padding: 0.16rem 0.51rem 0.32rem 0.51rem;
    border-radius: 0.1rem;
    box-shadow: none;
    overflow: visible;
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-header {
    margin-bottom: 0.64rem;
    text-align: left;
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-header .privacy-title {
    font-size: 0.64rem;
    font-weight: 600;
    color: #232A66;
    margin-bottom: 0.68rem;
    text-align: left;
    letter-spacing: 0;
    line-height: 0.85rem;
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-header .privacy-date {
    font-size: 0.3rem;
    color: #02001B;
    text-align: left;
    line-height: 0.51rem;
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-body .privacy-section {
    margin-bottom: 0.68rem;
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-body .privacy-section h3 {
    font-size: 0.3rem;
    font-family: var(--sk-font-Regular);
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-body .privacy-section .privacy-text {
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Regular);
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-body .privacy-section .privacy-list li {
    font-size: 0.28rem;
    line-height: 0.51rem;
    font-family: var(--sk-font-Regular);
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-body .privacy-section .privacy-end {
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0;
    margin-bottom: 0.32rem;
  }
  .privacy-policy-page .privacy-policy-box .privacy-content .privacy-body .privacy-section .end-info {
    margin-bottom: 0.32rem;
  }
}
/* privacy-policy页面end */
/* legal-disclaimer页面start */
.legal-disclaimer-page {
  min-height: 100vh;
  background-color: rgba(237, 242, 247, 0.4);
}
.legal-disclaimer-page main {
  width: 14.08rem;
  margin: 0 auto;
}
.legal-disclaimer-page .legal-box {
  padding: 0.4rem 0 1.28rem 0;
}
.legal-disclaimer-page .legal-box .legal-content {
  background: white;
  padding: 0.96rem 2.4rem 1.28rem 2.4rem;
  border-radius: 0.08rem;
  overflow: hidden;
}
.legal-disclaimer-page .legal-box .legal-header {
  text-align: center;
  margin-bottom: 0.25rem;
}
.legal-disclaimer-page .legal-box .legal-header .legal-title {
  font-size: 0.48rem;
  font-weight: 600;
  color: #02001B;
  text-align: left;
  margin-bottom: 0.15rem;
  font-family: var(--sk-font-Bold);
}
.legal-disclaimer-page .legal-box .legal-header .legal-date {
  font-size: 0.16rem;
  color: #02001B;
  margin: 0;
  text-align: left;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section {
  margin-bottom: 0.25rem;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section:last-child {
  margin-bottom: 0;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section h3 {
  font-size: 0.16rem;
  color: #02001B;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section p {
  font-size: 0.16rem;
  line-height: 1.6;
  color: #02001B;
  text-align: justify;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section p:last-child {
  margin-bottom: 0;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section p.legal-end {
  margin-top: 0.2rem;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section .legal-list {
  margin: 0.2rem 0;
}
.legal-disclaimer-page .legal-box .legal-body .legal-section .legal-list li {
  font-size: 0.16rem;
  line-height: 1.6;
  color: #02001B;
  position: relative;
}

@media screen and (max-width: 800px) {
  .legal-disclaimer-page {
    background: #fff;
  }
  .legal-disclaimer-page main {
    width: 100%;
    margin: 0;
  }
  .legal-disclaimer-page .legal-box {
    padding: 0.22rem 0 0.6rem 0;
    box-sizing: border-box;
  }
  .legal-disclaimer-page .legal-box .legal-content {
    padding: 0.16rem 0.51rem 0.24rem 0.51rem;
    background: #fff;
    border-radius: 0.1rem;
    box-shadow: none;
    overflow: visible;
  }
  .legal-disclaimer-page .legal-box .legal-header {
    text-align: left;
    padding: 0.16rem 0 0.05rem 0;
  }
  .legal-disclaimer-page .legal-box .legal-header .legal-title {
    font-size: 0.68rem;
    font-weight: 600;
    color: #232A66;
    margin-bottom: 0.68rem;
    text-align: left;
    letter-spacing: 0;
    line-height: 0.85rem;
  }
  .legal-disclaimer-page .legal-box .legal-header .legal-date {
    font-size: 0.3rem;
    color: #02001B;
    margin-bottom: 0.68rem;
    text-align: left;
    line-height: 0.51rem;
  }
  .legal-disclaimer-page .legal-box .legal-body .legal-section {
    margin-bottom: 0.68rem;
  }
  .legal-disclaimer-page .legal-box .legal-body .legal-section h3 {
    font-size: 0.3rem;
    font-family: var(--sk-font-Regular);
  }
  .legal-disclaimer-page .legal-box .legal-body .legal-section p {
    font-size: 0.3rem;
    line-height: 0.51rem;
    font-family: var(--sk-font-Regular);
  }
  .legal-disclaimer-page .legal-box .legal-body .legal-section .legal-list li {
    font-size: 0.3rem;
    line-height: 0.51rem;
    font-family: var(--sk-font-Regular);
  }
}
/* legal-disclaimer页面end */
/* memory-alloy-page页面start */
.memory-alloy-page .btn {
  display: inline-block;
  padding: 0.1rem 0.3rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.14rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.memory-alloy-page .btn.btn-outline {
  border: 1px solid #292274;
  color: #292274;
  width: 1.92rem;
  background-color: transparent;
  font-family: var(--sk-font-Regular);
}
.memory-alloy-page .btn.btn-outline:hover {
  background-color: #292274;
  color: #fff;
}
.memory-alloy-page .alloy-banner .alloy-banner-image {
  width: 100%;
}
.memory-alloy-page .alloy-intro {
  text-align: center;
  padding: 0.96rem 0 0.36rem 0;
}
.memory-alloy-page .alloy-intro .wal .alloy-main-title {
  font-size: 0.48rem;
  font-weight: 500;
  color: #02001B;
  margin-bottom: 0.32rem;
}
.memory-alloy-page .alloy-intro .wal .alloy-main-subtitle {
  font-size: 0.2rem;
  color: #4A5568;
  width: 9.28rem;
  margin: 0 auto;
}
.memory-alloy-page .alloy-features-wrapper {
  padding-bottom: 1.2rem;
}
.memory-alloy-page .alloy-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.32rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #dce4ed;
}
.memory-alloy-page .alloy-feature .alloy-feature__image-wrapper {
  overflow: hidden;
  width: 8.08rem;
}
.memory-alloy-page .alloy-feature .alloy-feature__image-wrapper img {
  width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.memory-alloy-page .alloy-feature .alloy-feature__image-wrapper img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.memory-alloy-page .alloy-feature .alloy-feature__text-wrapper {
  width: 5.68rem;
}
.memory-alloy-page .alloy-feature .alloy-feature__text-wrapper .alloy-feature__title {
  font-size: 0.24rem;
  font-weight: 500;
  color: #02001B;
  margin-bottom: 0.2rem;
  font-family: var(--sk-font-Medium);
}
.memory-alloy-page .alloy-feature .alloy-feature__text-wrapper .alloy-feature__description {
  font-size: 0.16rem;
  color: #4A5568;
  line-height: 0.24rem;
  margin-bottom: 0.32rem;
  font-family: var(--sk-font-Regular);
}
.memory-alloy-page .alloy-feature.alloy-feature--reversed {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.memory-alloy-page .alloy-feature.alloy-feature--reversed .alloy-feature__text-wrapper {
  width: 5.68rem;
}
.memory-alloy-page .alloy-feature-last {
  border-bottom: none;
}
.memory-alloy-page .alloy-feature-last .alloy-feature__text-wrapper {
  width: 5.68rem;
}

@media screen and (max-width: 800px) {
  .memory-alloy-page .alloy-banner .alloy-banner-content .alloy-banner-image {
    width: 100%;
  }
  .memory-alloy-page .alloy-intro {
    padding-bottom: 0;
  }
  .memory-alloy-page .alloy-intro .wal .alloy-main-title {
    font-size: 0.68rem;
    margin-bottom: 0.51rem;
  }
  .memory-alloy-page .alloy-intro .wal .alloy-main-subtitle {
    width: 100%;
    font-size: 0.34rem;
    line-height: 0.51rem;
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.02rem 0;
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature .alloy-feature__image-wrapper {
    width: 100%;
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature .alloy-feature__text-wrapper {
    width: 100%;
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature .alloy-feature__text-wrapper .alloy-feature__title {
    font-size: 0.43rem;
    font-weight: 500;
    line-height: 0.68rem;
    font-family: var(--sk-font-Medium);
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature .alloy-feature__text-wrapper .alloy-feature__description {
    font-size: 0.3rem;
    line-height: 0.51rem;
    margin-bottom: 0;
    font-family: var(--sk-font-Regular);
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature .alloy-feature__text-wrapper .btn.btn-outline {
    font-size: 0.3rem;
    margin-top: 0.51rem;
    width: 3.93rem;
    height: 0.85rem;
    padding: 0.17rem 0;
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature.alloy-feature--reversed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature.alloy-feature-last {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .memory-alloy-page .alloy-features-wrapper .alloy-feature.alloy-feature-last .alloy-feature__description--last {
    margin-top: 0.48rem;
  }
}
/* memory-alloy-page页面end */
/* footer部分start */
.global-footer {
  width: 100%;
  height: auto;
  background: #232A66;
  color: #fff;
  font-size: 0.14rem;
  position: relative;
}
.global-footer .footer-bg-decoration {
  position: absolute;
  right: 0;
  bottom: auto;
  width: 44vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow-y: clip;
}
.global-footer .footer-bg-decoration img {
  width: 100%;
  height: 147%;
  object-fit: cover;
  display: block;
}
.global-footer .g-footer-content {
  background: #232A66;
  padding-top: 0.48rem;
  height: 100%;
}
.global-footer .g-footer-content .g-footer-container {
  width: 14.08rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.64rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.global-footer .g-footer-content .g-footer-container .g-footer-info {
  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: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.global-footer .g-footer-content .g-footer-container .g-footer-info .footer-logo img {
  width: 2.6rem;
  height: auto;
  display: block;
}
.global-footer .g-footer-content .g-footer-container .g-footer-info .footer-contact-info {
  width: 3.28rem;
}
.global-footer .g-footer-content .g-footer-container .g-footer-info .footer-contact-info .contact-title {
  font-size: 0.16rem;
  font-weight: 500;
  margin-bottom: 0.06rem;
}
.global-footer .g-footer-content .g-footer-container .g-footer-info .footer-contact-info .contact-phone {
  font-size: 0.32rem;
  letter-spacing: 0.02rem;
  font-family: var(--sk-font-Num);
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation {
  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;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area {
  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;
  gap: 1.2rem;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group {
  max-width: 1.6rem;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group .footer-menu-title {
  font-size: 0.16rem;
  font-weight: 500;
  margin-bottom: 0.22rem;
  font-family: var(--sk-font-Medium);
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group ul li {
  margin-bottom: 0.18rem;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.16rem;
  font-weight: 300;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
  position: relative;
  /* Add this for positioning the pseudo-element */
  --color: #ffffff;
  /* Define the pseudo-element for the underline */
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group ul li:last-child {
  margin-bottom: 0;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact {
  width: 3.28rem;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-title {
  font-size: 0.15rem;
  margin-bottom: 0.16rem;
  font-weight: 500;
  font-family: var(--sk-font-Regular);
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.14rem;
  position: relative;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper {
  position: relative;
  width: 100%;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input {
  width: 100%;
  height: 0.4rem;
  border: 1px solid #5A5E87;
  border-radius: 0.02rem;
  padding: 0.09rem 0.44rem 0.09rem 0.16rem;
  font-size: 0.14rem;
  color: #fff;
  background: transparent;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  font-weight: 300;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  font-weight: 300;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  font-weight: 300;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  font-weight: 300;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input-icon-wrapper {
  background-color: #5A5E87;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.4rem;
  height: 0.4rem;
  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;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input-icon-wrapper .edm-input-icon {
  width: 0.24rem;
  height: 0.24rem;
  pointer-events: none;
  -webkit-transition: opacity 0.18s;
  transition: opacity 0.18s;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input-icon-wrapper .edm-input:focus + .edm-input-icon {
  opacity: 1;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent {
  font-size: 0.11rem;
  opacity: 0.68;
  color: #fff;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent .edm-consent-label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent .edm-consent-label .edm-consent-check.true-check {
  display: none;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent .edm-consent-label .edm-consent-text {
  margin-left: 0.08rem;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent .edm-consent-label .edm-consent-text .privacy-policy-link {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent input[type=checkbox] {
  vertical-align: middle;
  margin-right: 0.05rem;
  accent-color: #fff;
}
.global-footer .footer-bottom {
  width: 14.08rem;
  margin: 0 auto;
  padding: 0.8rem 0 0.32rem 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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.12rem;
  color: #fff;
}
.global-footer .footer-bottom .footer-bottom-nav {
  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 0 0.16rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-links a {
  margin-right: 0.22rem;
  color: #fff;
  opacity: 0.82;
  text-decoration: none;
  font-size: 0.12rem;
  /* Added for the hover effect */
  position: relative;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-links a:last-child {
  margin-right: 0;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  height: 1px;
  bottom: -4px;
  /* Adjust this value to change the line's position */
  left: 0;
  background-color: currentColor;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-links a:hover {
  opacity: 1;
  /* You can keep or remove this */
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-links a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-icons {
  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;
  gap: 0.16rem;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-icons a {
  display: inline-block;
  position: relative;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-icons a img {
  width: 0.22rem;
  height: 0.22rem;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-icons a .qr-pop {
  position: absolute;
  left: 50%;
  bottom: 0.4rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  z-index: 2000;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-icons a .qr-pop .qr-pop-img {
  height: 1.3rem;
  width: 1.3rem;
  max-width: none;
  border-radius: 8px;
  display: block;
}
.global-footer .footer-bottom .footer-bottom-nav .footer-bottom-icons a:hover .qr-pop, .global-footer .footer-bottom .footer-bottom-nav .footer-bottom-icons a:focus .qr-pop {
  opacity: 1;
  visibility: visible;
}
.global-footer .footer-bottom .footer-bottom-notice {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.16rem;
}
.global-footer .footer-bottom .footer-bottom-notice .footer-bottom-info {
  opacity: 0.65;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.12rem;
  line-height: 1.5;
}
.global-footer .footer-bottom .footer-bottom-notice .footer-lang {
  margin-left: 0.28rem;
  font-size: 0.12rem;
  opacity: 0.75;
  white-space: nowrap;
}

@media screen and (max-width: 800px) {
  .global-footer {
    height: auto;
  }
  .global-footer .g-footer-content {
    padding-top: 0;
  }
  .global-footer .g-footer-content .g-footer-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.48rem;
    gap: 0.32rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-info .footer-logo img {
    width: 3.04rem;
    height: auto;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-info .footer-contact-info {
    margin-top: 0.64rem;
    width: 100%;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-info .footer-contact-info .contact-title {
    font-size: 0.3rem;
    font-family: var(--sk-font-Medium);
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-info .footer-contact-info .contact-phone {
    font-size: 0.51rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group:last-child {
    border-bottom: none;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group .footer-menu-title {
    font-size: 0.28rem;
    font-family: var(--sk-font-Medium);
    padding: 0.32rem 0;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    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;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group .footer-menu-title::after {
    content: "";
    font-family: "element-icons";
    position: absolute;
    right: 0.1rem;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    font-size: 0.24rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group ul {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group ul li {
    padding-bottom: 0.3rem;
    padding-top: 0.1rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group ul li a {
    font-size: 0.28rem;
    font-family: var(--sk-font-Light);
    line-height: 0.24rem;
    color: rgba(255, 255, 255, 0.85);
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group.active .footer-menu-title::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group.active .footer-icon.phone-show {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-menu-area .footer-menu-group.active ul {
    max-height: 10rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact {
    margin-top: 0.32rem;
    width: 100%;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-title {
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Medium);
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form {
    margin-bottom: 0.32rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper {
    height: 0.8rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input {
    height: 0.8rem;
    font-size: 0.28rem;
    padding-left: 0.32rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input-icon-wrapper {
    height: 0.8rem;
    width: 0.8rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-form .edm-input-wrapper .edm-input-icon-wrapper .edm-input-icon {
    width: auto;
    height: auto;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent {
    font-size: 0.24rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent .edm-consent-label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent .edm-consent-label .edm-consent-check {
    width: auto;
    margin-top: -0.24rem;
  }
  .global-footer .g-footer-content .g-footer-container .g-footer-navigation .footer-contact .footer-edm-subscribe .edm-consent .edm-consent-label .edm-consent-text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 0.4rem;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-links {
    margin-top: 0.56rem;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-links a {
    font-size: 0.24rem;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-icons {
    gap: 0.56rem;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-icons a img {
    width: 100%;
    height: auto;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-icons a .qr-pop {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-icons a .qr-pop .qr-pop-img {
    height: 2rem;
    width: 2rem;
    max-width: none;
    border-radius: 8px;
    display: block;
  }
  .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-icons a:hover .qr-pop, .global-footer .g-footer-content .footer-bottom .footer-bottom-nav .footer-bottom-icons a:focus .qr-pop {
    opacity: 1;
    visibility: visible;
  }
  .global-footer .footer-bottom {
    width: 100%;
    padding: 0 0.48rem 0.48rem 0.48rem;
  }
  .global-footer .footer-bottom .footer-bottom-notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .global-footer .footer-bottom .footer-bottom-notice .footer-bottom-info {
    font-size: 0.2rem;
    margin-right: 0.18rem;
    margin-left: 0.18rem;
    line-height: 0.48rem;
  }
  .global-footer .footer-bottom .footer-bottom-notice .footer-bottom-info .footer-bottom-info__icp {
    display: block;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .global-footer .footer-bottom .footer-bottom-notice .footer-lang {
    font-size: 0.24rem;
    text-align: center;
  }
}
/* footer部分end */
/* contact-us页面start */
.contact-us-page {
  background-color: #f7f8fa;
}
.contact-us-page .contact-breadcrumb {
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.3rem;
}
.contact-us-page .contact-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.contact-us-page .contact-breadcrumb a:hover {
  color: #333;
}
.contact-us-page .contact-map-section {
  position: relative;
  margin-bottom: 0.64rem;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container {
  width: 14.08rem;
  margin: 0 auto;
  padding: 0.4rem 0 0 0;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-main-title {
  font-size: 0.48rem;
  color: #02001B;
  font-weight: 600;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.32rem;
  position: relative;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-main-title::after {
  content: "";
  display: block;
  width: 0.48rem;
  height: 0.01rem;
  background-color: #292274;
  border-radius: 0.02rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e9e9e9;
  background-size: cover;
  background-position: center;
  border-radius: 0.08rem;
  position: relative;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-map-image {
  width: 100%;
  height: auto;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card {
  position: absolute;
  top: 0.32rem;
  right: 0.32rem;
  width: 4.16rem;
  background: #fff;
  overflow: hidden;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-img img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-img img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-img h2 {
  font-size: 0.24rem;
  font-weight: 500;
  color: #02001B;
  margin-bottom: 0.08rem;
  margin-left: 0.32rem;
  margin-top: 0.32rem;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content {
  padding: 0 0.32rem 0.32rem 0.32rem;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content p {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #5D5D5D;
  margin-bottom: 0.04rem;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content p .contact-us-postal-code {
  font-family: var(--sk-font-Num);
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content .contact-nav-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  gap: 0.08rem;
  margin-top: 0.24rem;
  padding: 0.12rem 0.24rem;
  border: 1px solid #292274;
  font-size: 0.16rem;
  font-weight: 500;
  color: #292274;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content .contact-nav-button svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content .contact-nav-button .contact-us-address-nav {
  font-weight: 400;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content .contact-nav-button .contact-us-address-nav-icon {
  width: 0.24rem;
  height: 0.24rem;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content .contact-nav-button:hover {
  background-color: #3c448c;
  color: #fff;
}
.contact-us-page .contact-map-section .contact-container.contact-map-container .contact-address-card .contact-address-content .contact-nav-button:hover svg path {
  stroke: #fff;
}
.contact-us-page .contact-info-section {
  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: 0.6rem 0;
  margin-bottom: 0.8rem;
  gap: 0.4rem;
  background-color: #EDF2F7;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container {
  width: 14.08rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding-left: 0.32rem;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .group-line {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #D8D8D8;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .group-line::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.36rem;
  background: #292274;
  border-radius: 1px;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-icon {
  position: absolute;
  bottom: 0;
  height: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-icon img {
  width: auto;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box {
  margin-bottom: 0.32rem;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box:last-child {
  margin-bottom: 0;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box h3 {
  font-size: 0.2rem;
  font-weight: 600;
  color: #02001B;
  margin-bottom: 0.08rem;
  position: relative;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box p, .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box a {
  font-size: 0.16rem;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  font-family: var(--sk-font-Num);
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box a:hover {
  text-decoration: underline;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box h4 {
  font-size: 0.24rem;
  font-family: var(--sk-font-Medium);
  color: #02001B;
  font-weight: 500;
  margin-bottom: 0.08rem;
  line-height: 0.32rem;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group h3 {
  color: #02001B;
  margin-bottom: 0.08rem;
  position: relative;
  font-size: 0.24rem;
  font-family: var(--sk-font-Medium);
  font-weight: 500;
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group p, .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group a {
  font-size: 0.16rem;
  color: #333;
  text-decoration: none;
  line-height: 0.24rem;
  font-family: var(--sk-font-Num-M);
}
.contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group a:hover {
  text-decoration: underline;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container {
  width: 14.08rem;
  margin: 0 auto;
  padding: 0.4rem 0 1.28rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.52rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-intro {
  width: 3.28rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-intro h2 {
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.32rem;
  color: #02001B;
  margin-bottom: 0.2rem;
  font-family: var(--sk-font-SemiBold);
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-intro p {
  font-size: 0.16rem;
  color: #555;
  line-height: 1.7;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  border-radius: 0.08rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper h3 {
  font-size: 0.24rem;
  font-weight: 500;
  color: #02001B;
  margin-bottom: 0.32rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #DCE4ED;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.24rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field {
  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;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field.full-width {
  grid-column: 1/-1;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field .contact-form-label {
  font-size: 0.16rem;
  color: #333;
  margin-bottom: 0.08rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field .contact-form-label .need-icon {
  color: #C40000;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field input[type=text],
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field input[type=tel],
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field textarea {
  width: 100%;
  padding: 0.12rem 0.16rem;
  border: 1px solid #ccc;
  font-size: 0.16rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field input[type=text]:focus,
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field input[type=tel]:focus,
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field textarea:focus {
  outline: none;
  border-color: #333;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-field textarea {
  resize: vertical;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-captcha-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 0.56rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-captcha-wrapper .contact-captcha-input {
  height: 100%;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-captcha-wrapper .contact-captcha-refresh {
  position: absolute;
  top: 0.08rem;
  right: 0.16rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-captcha-wrapper .contact-captcha-refresh .contact-captcha-img {
  height: 0.4rem;
  cursor: pointer;
  border-radius: 0.04rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-footer {
  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;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check {
  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;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .checkbox-container {
  margin-right: 0.08rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .checkbox-container .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .checkbox-container .svg-ctx rect {
  stroke: #5d5d5d;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .checkbox-container .falseSvg {
  display: inline-block;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .checkbox-container .tureSvg {
  display: none;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .checkbox-container.checked .falseSvg {
  display: none;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .checkbox-container.checked .tureSvg {
  display: inline-block;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .contact-form-label {
  font-size: 0.12rem;
  color: #02001B;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .contact-form-label .need-icon {
  color: #C40000;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-privacy-check .contact-form-label a {
  color: #02001B;
  text-decoration: underline;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-submit-btn {
  background-color: #292274;
  width: 1.6rem;
  color: #f1f1f1;
  border: 1px solid #292274;
  padding: 0.14rem 0.4rem;
  line-height: 0.24rem;
  font-size: 0.16rem;
  font-weight: 500;
  margin-top: 0.32rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-submit-btn:hover {
  border: 1px solid #292274;
  background-color: unset;
  color: #292274;
}

@media screen and (max-width: 800px) {
  .contact-us-page {
    background-color: unset;
  }
  .contact-us-page .contact-map-section {
    padding: 0 0.48rem;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container {
    width: 100%;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder {
    width: 100%;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card {
    width: 5.92rem;
    height: 4rem;
    top: auto;
    bottom: 0.32rem;
    padding: 0.32rem;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card .contact-address-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.32rem;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card .contact-address-img .contact-us-building-image {
    width: auto;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card .contact-address-img .contact-us-company-name {
    font-size: 0.32rem;
    font-weight: 500;
    color: #02001B;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card .contact-address-content {
    margin-top: 0.32rem;
    padding: 0;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card .contact-address-content p {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card .contact-address-content .contact-nav-button {
    font-size: 0.28rem;
  }
  .contact-us-page .contact-map-section .contact-container.contact-map-container .contact-map-placeholder .contact-address-card .contact-address-content .contact-nav-button .contact-us-address-nav {
    padding-right: 0.3rem;
  }
  .contact-us-page .contact-info-section {
    background-color: rgba(237, 242, 255, 0.4);
    border-bottom: unset;
    border-top: unset;
    padding-bottom: 0.64rem;
    padding-right: 0.48rem;
    padding-left: 0.48rem;
  }
  .contact-us-page .contact-info-section .contact-container.contact-info-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group {
    margin-bottom: 0.48rem;
    padding-left: 0.48rem;
  }
  .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group h3 {
    font-size: 0.4rem;
    font-weight: 500;
    font-family: var(--sk-font-Medium);
  }
  .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group p {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-us-email {
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #4A5568;
  }
  .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box h4 {
    font-size: 0.4rem;
    font-family: var(--sk-font-Medium);
    font-weight: 500;
    color: #02001B;
  }
  .contact-us-page .contact-info-section .contact-container.contact-info-container .contact-info-group .contact-info-box a {
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #4A5568;
  }
  .contact-us-page .contact-form-section {
    padding-right: 0.48rem;
    padding-left: 0.48rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0 1.28rem 0;
    gap: 0.64rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-intro {
    width: 100%;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-intro h2 {
    font-size: 0.4rem;
    white-space: nowrap;
    line-height: 0.64rem;
    margin-bottom: 0.32rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-intro p {
    font-size: 0.28rem;
    color: #02001B;
    line-height: 0.48rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper h3 {
    font-size: 0.4rem;
    font-weight: 500;
    font-family: var(--sk-font-Regular);
    margin-bottom: 0.32rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-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;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field input {
    height: 0.96rem;
    font-size: 0.28rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field textarea {
    height: 1.92rem;
    font-size: 0.28rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field .contact-form-label {
    font-size: 0.28rem;
    margin-bottom: 0.16rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field .contact-form-label .need-icon {
    color: #c40000;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field .contact-captcha-wrapper {
    height: auto;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field .contact-captcha-wrapper input {
    height: 1.12rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field .contact-captcha-wrapper .contact-captcha-refresh {
    top: 0.16rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-grid .contact-form-field .contact-captcha-wrapper .contact-captcha-refresh .contact-captcha-img {
    height: 0.8rem;
    width: 2.56rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-footer {
    margin-top: 0.32rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-footer .contact-privacy-check .checkbox-container {
    width: 0.48rem;
    height: 0.48rem;
    margin-top: -0.48rem;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-footer .contact-privacy-check .checkbox-container .svg-ctx {
    width: 100%;
    height: auto;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-footer .contact-privacy-check .contact-form-label {
    font-size: 0.28rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-us-page .contact-form-section .contact-container.contact-form-container .contact-form-wrapper .contact-form-footer .contact-submit-btn {
    width: 100%;
    height: 0.96rem;
    font-size: 0.28rem;
    padding: 0.24rem 0.4rem;
    margin-top: 0.48rem;
  }
}
/* contact-us页面end */
/* 404页面start */
.error-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #f6f8fc;
  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;
}
.error-page .error-bg {
  width: 100%;
  height: 100%;
}
.error-page .error-bg img {
  width: 100%;
  height: 100%;
}
.error-page .error-content {
  position: absolute;
  z-index: 2;
  top: 1.6rem;
  text-align: center;
  color: #232A66;
  border-radius: 0.18rem;
  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;
}
.error-page .error-content .error-title {
  margin: 0.5rem 0 0.5rem 0;
  -webkit-background-clip: text;
  /* 必须加前缀，兼容 Chrome/Safari */
  background-clip: text;
  color: transparent;
}
.error-page .error-content .error-title .error-title-img.phone-show {
  width: 100%;
}
.error-page .error-content .error-message {
  font-size: 0.48rem;
  color: #ffffff;
  margin-bottom: 0.32rem;
  font-weight: 500;
}
.error-page .error-content .error-message-note {
  font-size: 0.2rem;
  color: #ffffff;
  margin-bottom: 0.32rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.32rem;
}
.error-page .error-content .error-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.32rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.error-page .error-content .error-nav .error-btn {
  display: inline-block;
  color: #292274;
  font-size: 0.16rem;
  padding: 0.13rem 0.64rem;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 1px solid #292274;
  cursor: pointer;
}
.error-page .error-content .error-nav .error-btn:hover {
  background-color: #292274;
  color: #ffffff;
}

@media screen and (max-width: 800px) {
  .error-page .error-bg img {
    width: 100%;
  }
  .error-page .error-content {
    margin: auto 0.51rem;
    top: 3.84rem;
  }
  .error-page .error-content .error-message {
    font-size: 0.48rem;
    line-height: 0.48rem;
  }
  .error-page .error-content .error-message-note {
    font-size: 0.32rem;
    line-height: 0.48rem;
    width: 100%;
    margin-bottom: 0.64rem;
  }
  .error-page .error-content .error-nav {
    gap: 0.17rem;
  }
  .error-page .error-content .error-nav .error-btn {
    font-size: 0.28rem;
    padding: 0.16rem 1.04rem;
    white-space: nowrap;
  }
  .error-page .error-content .error-title {
    margin: 0.7rem 0 auto 0;
  }
}
/* 404页面end */
/* 搜索结果页面start */
.search-result-page main {
  width: 100%;
  background: #fff;
}
.search-result-page .search-result-main {
  padding: 0.64rem 0 1.28rem 0;
  font-size: 0.48rem;
}
.search-result-page .search-result-main .search-title {
  text-align: center;
  font-size: 0.48rem;
  font-weight: 500;
  color: #02001B;
  margin-bottom: 0.35rem;
  font-family: var(--sk-font-Medium);
}
.search-result-page .search-result-main .search-bar {
  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-bottom: 0.64rem;
}
.search-result-page .search-result-main .search-bar .search-input-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;
  border: 1px solid rgba(1, 0, 27, 0.2);
  width: 6.88rem;
  padding-left: 0.19rem;
}
.search-result-page .search-result-main .search-bar .search-input-wrapper img {
  width: 0.24rem;
  height: auto;
  cursor: pointer;
}
.search-result-page .search-result-main .search-bar .search-input-wrapper .search-result-in {
  outline: none;
  font-size: 0.16rem;
  padding: 0.1rem 0.18rem 0.1rem 0.19rem;
  background: transparent;
  width: 5.28rem;
  font-family: var(--sk-font-Regular);
}
.search-result-page .search-result-main .search-bar .search-input-wrapper .search-btn {
  background: #232A66;
  color: #fff;
  font-size: 0.16rem;
  border: 2px solid rgba(1, 0, 27, 0.2);
  padding: 0.09rem 0.42rem;
  width: 1.6rem;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  cursor: pointer;
  font-family: var(--sk-font-Medium);
}
.search-result-page .search-result-main .search-bar .search-input-wrapper .search-btn:hover {
  background: #2014A4;
}
.search-result-page .search-result-main .search-bar .search-input-wrapper:focus-within {
  border-color: #02001B;
}
.search-result-page .search-result-main .search-tabs {
  margin: 0 auto 0.64rem auto;
  border-bottom: 1px solid #eee;
}
.search-result-page .search-result-main .search-tabs 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.45rem;
}
.search-result-page .search-result-main .search-tabs ul li {
  font-size: 0.16rem;
  padding: 0.14rem 0;
  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;
}
.search-result-page .search-result-main .search-tabs ul li span {
  margin-right: 0.08rem;
  font-weight: 400;
  font-family: var(--sk-font-Regular);
  font-size: 0.16rem;
}
.search-result-page .search-result-main .search-tabs ul li.on {
  color: #292274;
}
.search-result-page .search-result-main .search-tabs ul li.on::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #292274;
  border-radius: 1px;
}
.search-result-page .search-result-main .search-stats {
  text-align: left;
  font-size: 0.14rem;
  color: #666;
  margin: 0.18rem 0 0 0;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #dce4ed;
}
.search-result-page .search-result-main .search-stats .total {
  font-weight: 600;
  color: #232A66;
}
.search-result-page .search-result-main .search-stats .stats-count {
  font-weight: 600;
  color: #232A66;
}
.search-result-page .search-result-main .result-list {
  margin-bottom: 0.64rem;
  background-color: #fff;
}
.search-result-page .search-result-main .result-list .result-item {
  border-bottom: 1px solid #dce4ed;
  padding: 0.32rem 0.1rem;
  font-size: 0.17rem;
  word-break: break-all;
}
.search-result-page .search-result-main .result-list .result-item a {
  color: #02001b;
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
  font-size: 0.2rem;
  font-weight: 500;
}
.search-result-page .search-result-main .result-list .result-item a:hover {
  color: #292274;
  text-decoration: underline;
}
.search-result-page .search-result-main .search-result-btn-box {
  width: 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;
}
.search-result-page .search-result-main .search-result-btn-box .search-result-loadMore {
  border: 1px solid #232A66;
  background: #fff;
  color: #232A66;
  font-size: 0.17rem;
  padding: 0.11rem 0.64rem;
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  font-family: var(--sk-font-Regular);
}
.search-result-page .search-result-main .search-result-btn-box .search-result-loadMore:hover {
  background: #232A66;
  color: #fff;
}

@media screen and (max-width: 800px) {
  .search-result-page .search-result-main .search-title {
    font-size: 0.64rem;
    text-align: left;
  }
  .search-result-page .search-result-main .search-bar {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 0.96rem;
  }
  .search-result-page .search-result-main .search-bar .search-input-wrapper {
    width: 100%;
    font-size: 0.28rem;
    padding-left: 0.32rem;
  }
  .search-result-page .search-result-main .search-bar .search-input-wrapper img {
    width: 0.48rem;
    height: auto;
  }
  .search-result-page .search-result-main .search-bar .search-input-wrapper .search-result-in {
    font-size: 0.28rem;
  }
  .search-result-page .search-result-main .search-tabs {
    border-bottom: 1px solid #dce4ed;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .search-result-page .search-result-main .search-tabs::-webkit-scrollbar {
    display: none;
  }
  .search-result-page .search-result-main .search-tabs ul {
    gap: 0.32rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .search-result-page .search-result-main .search-tabs ul li {
    padding: 0.16rem 0;
  }
  .search-result-page .search-result-main .search-tabs ul li span {
    font-size: 0.28rem;
    white-space: nowrap;
  }
  .search-result-page .search-result-main .search-tabs ul li.on::after {
    height: 3px;
    right: 4%;
  }
  .search-result-page .search-result-main .search-stats {
    font-size: 0.28rem;
    color: #02001B;
  }
  .search-result-page .search-result-main .search-stats .total {
    margin-right: 0.1rem;
    margin-left: 0.1rem;
  }
  .search-result-page .search-result-main .result-list .result-item {
    padding: 0.48rem 0;
  }
  .search-result-page .search-result-main .result-list .result-item a {
    font-size: 0.32rem;
  }
  .search-result-page .search-result-main .search-result-btn-box .search-result-loadMore {
    font-size: 0.28rem;
    width: 3.68rem;
    padding: 0.16rem 1.28rem;
    white-space: nowrap;
  }
}
/* 搜索结果页面end */
/* 弹簧定制新改版样式 */
.spring-customized-page .form-section .form-box .form-content .title-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;
}
.spring-customized-page .form-section .form-box .form-content .title-box .inch-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item {
  margin-left: 0.32rem;
  cursor: pointer;
}
.spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item span {
  color: #02001B;
  font-size: 0.14rem;
  font-family: var(--sk-font-Light);
  margin-left: 0.04rem;
  vertical-align: middle;
}
.spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item img {
  width: 0.24rem;
  height: auto;
  display: none;
}
.spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item.is-active img.checked {
  display: inline-block;
}
.spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item:not(.is-active) img.unchecked {
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .title-box {
    -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;
  }
  .spring-customized-page .form-section .form-box .form-content .title-box .inch-box {
    margin-top: 0.64rem;
    gap: 0.48rem;
  }
  .spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item {
    margin-left: 0;
  }
  .spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item img {
    width: 0.48rem;
    height: auto;
  }
  .spring-customized-page .form-section .form-box .form-content .title-box .inch-box .inch-item span {
    font-size: 0.24rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.45rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options {
    -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;
    row-gap: 0.24rem;
    -webkit-column-gap: 0.16rem;
    -moz-column-gap: 0.16rem;
    column-gap: 0.16rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 0.08rem);
    -ms-flex: 0 0 calc(50% - 0.08rem);
    flex: 0 0 calc(50% - 0.08rem);
    max-width: calc(50% - 0.08rem);
  }
}
.spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option .diameter-text {
  color: #02001B;
  font-size: 0.16rem;
  font-family: var(--sk-font-Light);
  margin-left: 0.04rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option .diameter-text {
    font-size: 0.28rem;
    white-space: nowrap;
  }
}
.spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option .diameter-tag {
  color: rgba(2, 0, 27, 0.4);
  font-size: 0.14rem;
  font-family: var(--sk-font-Light);
  font-weight: 300;
  margin-left: 0.08rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option .diameter-tag {
    font-size: 0.24rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option img {
  width: 0.24rem;
  height: auto;
  display: none;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option img {
    width: 0.48rem;
    height: auto;
  }
}
.spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option.is-active img.checked {
  display: inline-block;
}
.spring-customized-page .form-section .form-box .form-content .diameter-selector .diameter-options .diameter-option:not(.is-active) img.unchecked {
  display: inline-block;
}
.spring-customized-page .form-section .form-box .form-content .form-item {
  margin-top: 0;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item {
  margin-top: 0.16rem;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .label {
  display: block;
  font-size: 0.16rem;
  color: #02001B;
  margin-bottom: 0.08rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .label {
    font-size: 0.28rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select {
  position: relative;
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.12rem 0.16rem;
  border: 1px solid rgba(2, 0, 27, 0.2);
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-trigger .selected-value {
  font-size: 0.14rem;
  color: #02001B;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-trigger .selected-value {
    font-size: 0.28rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-trigger .select-arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select.active .select-trigger {
  border-color: rgba(2, 0, 27, 0.6);
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select.active .select-trigger .select-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select.active .select-dropdown {
  display: block;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.08rem);
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #DCE4ED;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
  padding-top: 0.08rem;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-dropdown .select-option {
  padding: 0.12rem 0.16rem;
  font-size: 0.14rem;
  color: #02001B;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-dropdown .select-option:hover {
  background-color: #F5F7FA;
}
.spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-dropdown .select-option.selected {
  background-color: #EEF0F4;
  color: #292274;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-dropdown .select-option {
    font-size: 0.28rem;
    height: 0.8rem;
  }
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select {
    height: 0.96rem;
  }
  .spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item.select-item .custom-select .select-trigger {
    height: 100%;
  }
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .custom-select-item {
    margin-top: 0.32rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item.form-performance {
  margin-top: 0;
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(1) {
  width: 100%;
  font-size: 0.24rem;
  font-weight: 500;
  color: #02001B;
  margin-bottom: 0.16rem;
  padding-bottom: 0.16rem;
  font-family: var(--sk-font-Medium);
  border-bottom: 0.01rem solid #DCE4ED;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .table-box div:nth-child(1) {
    font-size: 0.32rem !important;
  }
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #DCE4ED;
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr {
  color: var(--kgu-c-text-1);
  background-color: white;
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr:first-child {
  color: white;
  background-color: #464D66;
  font-weight: 600;
  font-family: var(--sk-font-Medium);
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr:first-child td {
  padding-top: 0.08rem;
  padding-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr:first-child td {
    color: rgba(255, 255, 255, 0.8);
    padding-top: 0.16rem;
    padding-bottom: 0.16rem;
  }
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr:first-child {
    background-color: #0F1540;
  }
  .spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr:first-child .td {
    color: rgba(255, 255, 255, 0.8);
  }
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr td {
  padding: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  vertical-align: top;
  font-weight: 300;
  font-family: var(--sk-font-Light);
  border-right: 1px solid #DCE4ED;
  border-bottom: 1px solid #DCE4ED;
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr td:first-child {
  width: 12%;
  font-weight: 300;
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr td:nth-child(2) {
  width: 38%;
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr td:nth-child(3) {
  width: 50%;
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr td:last-child {
  border-right: 0;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr td {
    font-size: 0.2rem;
    padding: 0.12rem;
    color: rgba(2, 0, 27, 0.8);
  }
}
.spring-customized-page .form-section .form-box .table-box div:nth-child(2) table tr:last-child td {
  border-bottom: 0;
}

.g-text-hover {
  --color: var(--sk-global-color);
}
.g-text-hover:hover .tent-lint {
  background-size: 100% 100%;
}
@media screen and (max-width: 800px) {
  .g-text-hover:hover .tent-lint {
    background-size: 0 100%;
  }
}
.g-text-hover .tent-lint {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0, var(--color)));
  background-image: -webkit-linear-gradient(top, transparent 95%, var(--color) 0);
  background-image: linear-gradient(to bottom, transparent 95%, 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);
}

/* 去掉 number 输入框的上下箭头 */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.g-header {
  height: var(--g-header-height, 0.8rem);
}
@media screen and (max-width: 800px) {
  .g-header {
    height: 0.88rem;
  }
}
.g-header .g-head {
  height: 0.8rem;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--g-head-background, #fff);
  box-shadow: var(--g-head-box-shadow, 0rem 0.04rem 0.2rem 0rem rgba(0, 0, 0, 0.05));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main {
  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 .g-head-main .logo-box .logo .svg {
  width: 1.66rem;
}
.g-header .g-head .g-head-main .logo-box .logo .svg.white {
  display: var(--logo-white, none);
}
.g-header .g-head .g-head-main .logo-box .logo .svg.color {
  display: var(--logo-color, block);
}
.g-header .g-head .g-head-main .center-nav {
  height: 100%;
  margin-left: 1.22rem;
}
.g-header .g-head .g-head-main .center-nav .center-list {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 0.48rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item:last-child {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item > .a {
  color: var(--g-head-a-color, var(--fcolor-default));
  font-size: 0.16rem;
  line-height: 0.24rem;
  -webkit-text-decoration: wavy underline;
  -moz-text-decoration: wavy underline;
  text-decoration: wavy underline;
  -webkit-text-decoration-style: wavy;
  -moz-text-decoration-style: wavy;
  text-decoration-style: wavy;
  text-decoration-thickness: 0.01rem;
  text-underline-offset: 0.14rem;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  text-decoration-color: transparent;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item.on > .a, .g-header .g-head .g-head-main .center-nav .center-list .nav-item:hover > .a {
  color: var(--g-head-a-color-hover, var(--sk-global-color));
  -webkit-text-decoration-color: var(--g-head-a-text-decoration-color, var(--sk-global-color));
  -moz-text-decoration-color: var(--g-head-a-text-decoration-color, var(--sk-global-color));
  text-decoration-color: var(--g-head-a-text-decoration-color, var(--sk-global-color));
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer {
  max-height: 80vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0.8rem;
  left: 0;
  height: 0;
  z-index: 10;
  background: #FFFFFF;
  box-shadow: inset 0 0.2rem 0.2rem -0.2rem rgba(0, 0, 0, 0.05);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer {
  padding-top: 0.32rem;
  padding-bottom: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .left-class-list {
  width: 3.6rem;
  border-left: 0.01rem solid #DCE4ED;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .left-class-list .class-li {
  margin-left: -0.01rem;
  padding-left: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  display: block;
  margin-top: 0.16rem;
  border-left: 0.02rem solid transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .left-class-list .class-li.on {
  border-left: 0.02rem solid var(--sk-global-color);
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .left-class-list .class-li.on .tent-lint {
  background-size: 100% 100%;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .left-class-list .class-li:first-child {
  margin-top: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: none;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.selection .link-card {
  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-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;
  width: calc((100% - 0.64rem) / 3);
  background: rgba(237, 242, 247, 0.4);
  padding: 0.16rem 0.16rem 0.16rem 0.32rem;
  margin-right: 0.32rem;
  margin-top: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.selection .link-card:nth-child(3n) {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.selection .link-card:nth-child(-n+3) {
  margin-top: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.selection .link-card .txt {
  padding-right: 0.2rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.selection .link-card .link-img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.72rem;
  height: 0.72rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.selection .link-card:hover {
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.selection .link-card:hover .link-img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card {
  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-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;
  width: calc((100% - 0.64rem) / 3);
  margin-right: 0.32rem;
  margin-top: 0.32rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card:nth-child(3n) {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card:nth-child(-n+3) {
  margin-top: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card .img-box {
  width: 100%;
  height: 1.04rem;
  overflow: hidden;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card .img-box .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card .label {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card .label .icon {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card .label .name {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card:hover .img-box .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .selection-design_layer .class-content.special .link-card:hover .label .name {
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer {
  padding-top: 0.32rem;
  padding-bottom: 0.48rem;
  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 .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card {
  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-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;
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
  margin-top: 0.32rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card:nth-child(4n) {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card:nth-child(-n+4) {
  margin-top: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card .img-box {
  width: 100%;
  height: 1.04rem;
  overflow: hidden;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card .img-box .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card .label {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card .label .icon {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card .label .name {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card:hover .img-box .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .solution_layer .link-card:hover .label .name {
  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;
}
.g-header .g-head .g-head-main .g-head-right .link-btn {
  height: 0.245rem;
  width: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .link-btn .svg {
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .link-btn .svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: var(--g-head-svg-color, var(--fcolor-default));
}
.g-header .g-head .g-head-main .g-head-right .link-btn .svg:hover path {
  fill: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .link-btn .badge__content {
  position: absolute;
  background: #0398CC;
  color: #FFFFFF;
  font-size: 0.12rem;
  line-height: 0.16rem;
  padding: 0.02rem 0.04rem;
  border-radius: 0.1rem;
  bottom: 100%;
  left: 100%;
  -webkit-transform: translate(-0.08rem, 0.08rem);
  -ms-transform: translate(-0.08rem, 0.08rem);
  transform: translate(-0.08rem, 0.08rem);
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .g-head-right .link-btn .badge__content {
    padding: 0 0.04rem;
    font-size: 0.1rem;
    line-height: 0.16rem;
  }
}
.g-header .g-head .g-head-main .g-head-right .search-btn {
  margin-left: 0.32rem;
  width: 0.24rem;
  height: 0.24rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .svg-box {
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .svg-box .svg {
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .svg-box .svg rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: var(--g-head-svg-color, var(--fcolor-default));
}
.g-header .g-head .g-head-main .g-head-right .search-btn .svg-box .svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: var(--g-head-svg-color, var(--fcolor-default));
}
.g-header .g-head .g-head-main .g-head-right .search-btn .svg-box:hover .svg rect {
  stroke: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .search-btn .svg-box:hover .svg path {
  fill: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .search-btn.on .svg-box .svg rect {
  stroke: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .search-btn.on .svg-box .svg path {
  fill: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer {
  max-height: 80vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0.8rem;
  left: 0;
  height: 0;
  z-index: 10;
  background: #FFFFFF;
  box-shadow: inset 0 0.2rem 0.2rem -0.2rem rgba(0, 0, 0, 0.05);
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer {
  padding-top: 0.48rem;
  padding-bottom: 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;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .input-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;
  height: 0.48rem;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .input-box_wrapper .input-box {
  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;
  padding: 0 0.16rem;
  width: 5.28rem;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .input-box_wrapper .input-box .search-img {
  height: 0.24rem;
  width: 0.24rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .input-box_wrapper .input-box input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0.01rem solid rgba(2, 0, 27, 0.2);
  border-right: none;
  padding-right: 0.16rem;
  padding-left: 0.56rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .input-box_wrapper .input-box input:focus {
  border: 0.01rem solid rgba(2, 0, 27, 0.6);
  border-right: none;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .input-box_wrapper .btn {
  min-width: 1.6rem;
  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: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #fff;
  padding: 0 0.4rem;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .close-box {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .solution_layer .close-box .close {
  height: 100%;
  width: 100%;
}
.g-header .g-head .g-head-main .g-head-right .language-btn {
  margin-left: 0.32rem;
  width: 0.24rem;
  height: 0.24rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg {
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg ellipse {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: var(--g-head-svg-color, var(--fcolor-default));
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg line {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: var(--g-head-svg-color, var(--fcolor-default));
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg:hover ellipse {
  stroke: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg:hover line {
  stroke: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .language-btn .language-layer {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 0.16rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .language-layer .layer__wp {
  background: #FFFFFF;
  box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(0, 0, 0, 0.05);
  padding: 0.04rem;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .language-layer .layer__wp .language-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;
  font-size: 0.16rem;
  line-height: 0.24rem;
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .language-layer .layer__wp .language-link.on, .g-header .g-head .g-head-main .g-head-right .language-btn .language-layer .layer__wp .language-link:hover {
  background: rgba(237, 242, 247, 0.4);
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .g-head-right .language-btn:hover .language-layer {
  opacity: 1;
  visibility: visible;
}
.g-header .g-head .g-head-main .g-head-right .btn-btn {
  margin-left: 0.32rem;
  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;
  padding: 0 0.2rem 0 0.12rem;
  border-radius: 0.2rem;
  background: #2014A4;
}
.g-header .g-head .g-head-main .g-head-right .btn-btn .svg {
  width: 0.24rem;
  height: 0.24rem;
}
.g-header .g-head .g-head-main .g-head-right .btn-btn .txt {
  color: #fff;
  margin-left: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .g-head-right .btn-btn:hover {
  background-color: var(--sk-global-color);
}
.g-header .g-head-phone {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0.88rem;
  box-shadow: 0rem 0.08rem 0.2rem 0rem rgba(0, 0, 0, 0.05);
}
.g-header .g-head-phone .g-head-main {
  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;
  padding: 0 0.3rem 0 0.32rem;
}
.g-header .g-head-phone .g-head-main .tree-logo {
  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 .g-head-main .tree-logo .tree-box {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .g-head-phone .g-head-main .tree-logo .tree-box .img {
  width: 100%;
  height: 100%;
  display: none;
}
.g-header .g-head-phone .g-head-main .tree-logo .tree-box .img.tree-img {
  display: block;
}
.g-header .g-head-phone .g-head-main .tree-logo .tree-box.on .img.tree-img {
  display: none;
}
.g-header .g-head-phone .g-head-main .tree-logo .tree-box.on .img.close-img {
  display: block;
}
.g-header .g-head-phone .g-head-main .tree-logo .logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1.9rem;
  height: 0.64rem;
  margin-left: 0.16rem;
}
.g-header .g-head-phone .g-head-main .tree-logo .logo-box .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g-header .g-head-phone .g-head-main .list-search-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;
}
.g-header .g-head-phone .g-head-main .list-search-btn .list-box {
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.32rem;
  position: relative;
}
.g-header .g-head-phone .g-head-main .list-search-btn .list-box .svg {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.g-header .g-head-phone .g-head-main .list-search-btn .list-box .badge__content {
  position: absolute;
  background: #0398CC;
  color: #FFFFFF;
  border-radius: 0.2rem;
  bottom: 100%;
  left: 100%;
  -webkit-transform: translate(-0.22rem, 0.12rem);
  -ms-transform: translate(-0.22rem, 0.12rem);
  transform: translate(-0.22rem, 0.12rem);
  padding: 0 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
.g-header .g-head-phone .g-head-main .list-search-btn .search-box {
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.32rem;
}
.g-header .g-head-phone .g-head-main .list-search-btn .search-box .svg {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.g-header .g-head-phone .g-head-main .list-search-btn .btn-btn {
  height: 0.56rem;
  padding: 0 0.16rem 0 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;
  background: #2014A4;
  border-radius: 0.4rem;
}
.g-header .g-head-phone .g-head-main .list-search-btn .btn-btn .svg {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .g-head-phone .g-head-main .list-search-btn .btn-btn .txt {
  margin-left: 0.08rem;
  color: #FFFFFF;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
.g-header .head-phone-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #FFFFFF;
  padding: 0.88rem 0.46rem 1.04rem 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;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 90;
}
.g-header .head-phone-nav.show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.g-header .head-phone-nav .nav-list-box {
  margin-top: 0.32rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box {
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  border-bottom: 0.02rem solid #DCE4ED;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .txt {
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .svg {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box {
  background: #FFFFFF;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.88rem 0.46rem 1.04rem 0.48rem;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: 0.3s;
  overflow-y: auto;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .return-btn {
  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;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .return-btn .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .return-btn .txt {
  margin-left: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.48rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .two-tit {
  margin-top: 0.32rem;
  font-size: 0.4rem;
  line-height: 0.64rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper {
  margin-top: 0.32rem;
  border-top: 0.02rem solid #DCE4ED;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li {
  border-bottom: 0.02rem solid #DCE4ED;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li .tree-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.32rem 0;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li .tree-cell .txt {
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li .tree-cell .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li .child-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;
  padding-left: 0.32rem;
  height: 0;
  overflow: hidden;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li .child-box .child-link {
  display: block;
  padding: 0.24rem 0;
  font-size: 0.28rem;
  line-height: 0.48rem;
  border-bottom: 0.02rem solid #DCE4ED;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li .child-box .child-link:last-child {
  border-bottom: 0;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li.show .tree-cell .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .tree-box-wrapper .tree-li.show .child-box {
  height: auto;
  border-top: 0.02rem solid #DCE4ED;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .list-box-wrapper {
  margin-top: 0.32rem;
  border-top: 0.02rem solid #DCE4ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .list-box-wrapper .link-li {
  font-size: 0.28rem;
  line-height: 0.48rem;
  padding: 0.24rem 0;
  font-size: 0.28rem;
  line-height: 0.48rem;
  border-bottom: 0.02rem solid #DCE4ED;
}
.g-header .head-phone-nav .language-box .nav-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.g-header .head-phone-nav .language-box .nav-cell .label {
  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 .head-phone-nav .language-box .nav-cell .label .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .head-phone-nav .language-box .nav-cell .label .txt {
  margin-left: 0.32rem;
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.g-header .head-phone-nav .language-box .nav-cell .svg {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .head-phone-nav .language-box .nav-two-box {
  background: #FFFFFF;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.88rem 0.46rem 1.04rem 0.48rem;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: 0.3s;
  overflow-y: auto;
}
.g-header .head-phone-nav .language-box .nav-two-box.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.g-header .head-phone-nav .language-box .nav-two-box .return-btn {
  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;
}
.g-header .head-phone-nav .language-box .nav-two-box .return-btn .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .head-phone-nav .language-box .nav-two-box .return-btn .txt {
  margin-left: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.48rem;
}
.g-header .head-phone-nav .language-box .nav-two-box .two-tit {
  margin-top: 0.32rem;
  font-size: 0.4rem;
  line-height: 0.64rem;
}
.g-header .head-phone-nav .language-box .nav-two-box .list-box-wrapper {
  margin-top: 0.32rem;
  border-top: 0.02rem solid #DCE4ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.g-header .head-phone-nav .language-box .nav-two-box .list-box-wrapper .link-li {
  font-size: 0.28rem;
  line-height: 0.48rem;
  padding: 0.24rem 0;
  font-size: 0.28rem;
  line-height: 0.48rem;
  border-bottom: 0.02rem solid #DCE4ED;
}
.g-header .head-phone-nav .language-box .nav-two-box .list-box-wrapper .link-li.on {
  color: var(--sk-global-color);
}
.g-header .head-phone-search {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #FFFFFF;
  padding: 0.88rem 0.46rem 1.04rem 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;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.g-header .head-phone-search.show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.g-header .head-phone-search .search-phone-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;
  position: relative;
}
.g-header .head-phone-search .search-phone-box .search-icon {
  position: absolute;
  left: 0.32rem;
  height: 0.48rem;
  width: 0.48rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.g-header .head-phone-search .search-phone-box input {
  width: calc(100% - 0.8rem);
  border: 0.02rem solid rgba(2, 0, 27, 0.2);
  height: 0.96rem;
  padding-left: 0.96rem;
  font-size: 0.28rem;
  line-height: 0.48rem;
}
.g-header .head-phone-search .search-phone-box input::-webkit-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.g-header .head-phone-search .search-phone-box input::-moz-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.g-header .head-phone-search .search-phone-box input:-ms-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.g-header .head-phone-search .search-phone-box input::placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.g-header .head-phone-search .search-phone-box .close-search {
  width: 0.48rem;
  height: 0.48rem;
}
.g-header .dropdown-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 50;
}
.g-header.JsFixed {
  --g-header-height: 0;
  --g-head-background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  --g-head-box-shadow: none;
  --logo-white: block;
  --logo-color: none;
  --g-head-a-color: #fff;
  --g-head-a-color-hover: #fff;
  --g-head-a-text-decoration-color: transparent;
  --g-head-svg-color: #fff;
}
.g-header:hover {
  --g-head-background: #fff;
  --g-head-box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(0, 0, 0, 0.05);
  --logo-white: none;
  --logo-color: block;
  --g-head-a-color: var(--fcolor-default);
  --g-head-a-color-hover: var(--sk-global-color);
  --g-head-a-text-decoration-color: var(--sk-global-color);
  --g-head-svg-color: var(--fcolor-default);
}
.g-header.dialog__wrapper, .g-header.search-hover {
  --g-head-background: #fff;
  --g-head-box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(0, 0, 0, 0.05);
  --logo-white: none;
  --logo-color: block;
  --g-head-a-color: var(--fcolor-default);
  --g-head-a-color-hover: var(--sk-global-color);
  --g-head-a-text-decoration-color: var(--sk-global-color);
  --g-head-svg-color: var(--fcolor-default);
}
.g-header.dialog__wrapper .dropdown-wrapper, .g-header.search-hover .dropdown-wrapper {
  opacity: 1;
  visibility: visible;
}
.g-header.isScroll {
  --g-head-background: #fff;
  --g-head-box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(0, 0, 0, 0.05);
  --logo-white: none;
  --logo-color: block;
  --g-head-a-color: var(--fcolor-default);
  --g-head-a-color-hover: var(--sk-global-color);
  --g-head-a-text-decoration-color: var(--sk-global-color);
  --g-head-svg-color: var(--fcolor-default);
}

.technology-empowerment-page .h__breadcrumb {
  background: rgba(237, 242, 247, 0.4);
  height: 0.56rem;
}
.technology-empowerment-page .h__breadcrumb .breadcrumb {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.technology-empowerment-page .h__breadcrumb .breadcrumb .breadcrumb-item {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #4A5568;
  white-space: pre;
}
.technology-empowerment-page .h__breadcrumb .breadcrumb .breadcrumb-item::after {
  content: "/";
  display: inline-block;
  padding: 0 0.08rem;
}
.technology-empowerment-page .h__breadcrumb .breadcrumb .breadcrumb-item:last-child {
  color: var(--fcolor-default);
  cursor: default;
}
.technology-empowerment-page .h__breadcrumb .breadcrumb .breadcrumb-item:last-child::after {
  content: "";
}
.technology-empowerment-page .banner-section {
  height: 5.6rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .banner-section {
    height: 4.32rem;
  }
}
.technology-empowerment-page .banner-section .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-empowerment-page .technology-section {
  padding-top: 0.96rem;
  padding-bottom: 0.64rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section {
    padding-top: 0.96rem;
    padding-bottom: 1.28rem;
  }
}
.technology-empowerment-page .technology-section .h2 {
  text-align: center;
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .h2 {
    font-size: 0.64rem;
    line-height: 0.8rem;
    width: 5.92rem;
    margin: 0 auto;
  }
}
.technology-empowerment-page .technology-section .technology-txt {
  margin: 0.32rem auto 0;
  width: 9.28rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: #4A5568;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-txt {
    margin: 0.48rem auto 0;
    width: 100%;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.technology-empowerment-page .technology-section .technology-swiper {
  width: 11.68rem;
  margin: 0.96rem auto 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper {
    width: 100%;
    margin: 0.96rem auto 0;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .img-box {
  height: 5.6rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .img-box {
    height: 3.68rem;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .img-box .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .img-box .add-btn {
  position: absolute;
  bottom: 0.32rem;
  right: 0.32rem;
  width: 0.4rem;
  height: 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;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .img-box .add-btn {
    width: 0.8rem;
    height: 0.8rem;
    right: 0.16rem;
    bottom: 0.16rem;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .img-box .add-btn .add-icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .img-box .add-btn .add-icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .name {
  margin-top: 0.32rem;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .name {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .content-txt {
  margin-top: 0.08rem;
  color: #4A5568;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .content-txt {
    margin-top: 0;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.1rem);
    z-index: 200;
    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;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  }
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box {
    width: 8.16rem;
    position: relative;
    padding: 0.48rem 0.64rem;
    min-height: 3.6rem;
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box {
    width: 6.56rem;
    padding: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .close-btn {
    position: absolute;
    cursor: pointer;
    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;
    top: 0.16rem;
    right: 0.16rem;
    border: 0.01rem solid var(--sk-global-color);
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .close-btn {
    width: 0.64rem;
    height: 0.64rem;
    border: 0.02rem solid var(--sk-global-color);
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .close-btn .close-icon {
    width: 0.24rem;
    height: 0.24rem;
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .close-btn .close-icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .dialog__header {
    font-size: 0.32rem;
    line-height: 0.4rem;
    padding-bottom: 0.32rem;
    border-bottom: 0.01rem solid #DCE4ED;
    position: relative;
    color: #ffffff;
    font-family: var(--sk-font-Medium);
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .dialog__header {
    font-size: 0.48rem;
    line-height: 0.64rem;
    border-bottom: 0.02rem solid #DCE4ED;
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .dialog__header::before {
    bottom: -0.02rem;
    width: 1.28rem;
    height: 0.02rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .dialog__body {
    margin-top: 0.32rem;
    color: #ffffff;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide .card-dialog__wrapper .dialog-box .dialog__body {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-wrapper .swiper-slide:hover .img-box .img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-btns {
    display: none;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-btns .swiper-btn {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
  position: absolute;
  top: 2.52rem;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-btns .swiper-btn.swiper-next {
  right: -1.52rem;
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-btns .swiper-btn.swiper-prev {
  left: -1.52rem;
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-btns .swiper-btn .img {
  width: 0.24rem;
  height: 0.24rem;
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-pagination {
  margin: 0.32rem auto 0;
  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) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-pagination {
    margin-top: 0.48rem;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.32rem;
  height: 0.02rem;
  background-color: #DCE4ED;
  margin-right: 0.08rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .technology-section .technology-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.64rem;
    height: 0.04rem;
    margin-right: 0.16rem;
  }
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.technology-empowerment-page .technology-section .technology-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--sk-global-color);
}
.technology-empowerment-page .li-qi-qi-section {
  background: rgba(237, 242, 247, 0.4);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section {
    background: #F5F5F7;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal {
  padding-top: 0.96rem;
  padding-bottom: 1.28rem;
}
.technology-empowerment-page .li-qi-qi-section .wal .tit-txt {
  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) {
  .technology-empowerment-page .li-qi-qi-section .wal .tit-txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .tit-txt .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  padding-right: 0.5rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .tit-txt .h2 {
    font-size: 0.64rem;
    line-height: 0.8rem;
    padding-right: 0;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .tit-txt .li-qi-qi-txt {
  width: 8.08rem;
  color: #4A5568;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .tit-txt .li-qi-qi-txt {
    width: 100%;
    margin-top: 0.48rem;
    font-size: 0.3rem;
    line-height: 0.48rem;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper {
  margin-top: 0.96rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper {
    width: 5.92rem;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
  background: #FFFFFF;
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box {
  height: 3.28rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box {
    height: 5.92rem;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box {
    /* WebKit 内核（Chrome / Safari / 新 Edge）默认隐藏 */
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.1rem);
    z-index: 200;
    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;
    visibility: hidden;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    -ms-overflow-style: none;
    /* IE / old Edge 隐藏滚动条 */
    scrollbar-width: none;
    /* Firefox 默认隐藏滚动条 */
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper::-webkit-scrollbar-button {
    width: 10px;
    height: 0;
    display: none;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box {
    width: 8.16rem;
    position: relative;
    padding: 0.48rem 0.64rem 0.48rem 0.64rem;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box::-webkit-scrollbar {
    width: 0.06rem;
    height: 0.06rem;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box::-webkit-scrollbar-track {
    background: transparent;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 0.08rem;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box::-webkit-scrollbar-button, .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box::-webkit-scrollbar-button:single-button, .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box::-webkit-scrollbar-button:vertical:start:decrement, .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box::-webkit-scrollbar-button:vertical:end:increment {
    width: 0;
    height: 0;
    display: none;
    background: transparent;
  }
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box:hover::-webkit-scrollbar-thumb, .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box:active::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box {
    width: 6.56rem;
    padding: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .close-btn {
    position: absolute;
    cursor: pointer;
    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;
    top: 0.16rem;
    right: 0.16rem;
    border: 0.01rem solid var(--sk-global-color);
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .close-btn {
    width: 0.64rem;
    height: 0.64rem;
    border: 0.02rem solid var(--sk-global-color);
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .close-btn .close-icon {
    width: 0.24rem;
    height: 0.24rem;
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .close-btn .close-icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .dialog__header {
    font-size: 0.32rem;
    line-height: 0.4rem;
    padding-bottom: 0.32rem;
    border-bottom: 0.01rem solid #DCE4ED;
    position: relative;
    color: #ffffff;
    font-family: var(--sk-font-Medium);
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .dialog__header {
    font-size: 0.48rem;
    line-height: 0.64rem;
    border-bottom: 0.02rem solid #DCE4ED;
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .dialog__header::before {
    bottom: -0.02rem;
    width: 1.28rem;
    height: 0.02rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .dialog__body {
    margin-top: 0.32rem;
    color: #ffffff;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .dialog-box .dialog__body {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .img-box .card-dialog__wrapper .card-dialog__wrapper .dialog-box {
    -ms-overflow-style: none;
    /* IE/old Edge 隐藏滚动条 */
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add {
  padding: 0.16rem 0.16rem 0.16rem 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;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add {
    padding: 0.32rem 0.32rem 0.32rem 0.48rem;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add .name {
  padding-right: 0.2rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add .add-icon {
  width: 0.4rem;
  height: 0.4rem;
  border: 0.01rem solid 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) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add .add-icon {
    width: 0.8rem;
    height: 0.8rem;
    border: 0.02rem solid var(--sk-global-color);
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add .add-icon .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide .name-add .add-icon .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-wrapper .swiper-slide:hover .img-box .img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-btns {
    display: none;
  }
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-btns .swiper-btn {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
  position: absolute;
  top: 1.68rem;
  z-index: 10;
  cursor: pointer;
  -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;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-btns .swiper-btn.swiper-next {
  right: -0.32rem;
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-btns .swiper-btn.swiper-prev {
  left: -0.32rem;
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-btns .swiper-btn.swiper-button-disabled {
  display: none;
}
.technology-empowerment-page .li-qi-qi-section .wal .equipment-swiper .swiper-btns .swiper-btn .img {
  width: 0.24rem;
  height: 0.24rem;
}
.technology-empowerment-page .precision-section {
  padding-top: 0.96rem;
  padding-bottom: 1.28rem;
}
.technology-empowerment-page .precision-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) {
  .technology-empowerment-page .precision-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.technology-empowerment-page .precision-section .flex-box .left-box {
  width: 4.48rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .left-box {
    width: 100%;
  }
}
.technology-empowerment-page .precision-section .flex-box .left-box .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .left-box .h2 {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .left-box .precision-text {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: #4A5568;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .left-box .precision-text {
    margin-top: 0.48rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .left-box .list-box {
  margin-top: 0.88rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .left-box .list-box {
    margin-top: 0.96rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .left-box .list-box .item {
  margin-bottom: 0.64rem;
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem solid #DCE4ED;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .left-box .list-box .item {
    padding-bottom: 0.32rem;
    border-bottom: 0.02rem solid #DCE4ED;
  }
}
.technology-empowerment-page .precision-section .flex-box .left-box .list-box .item:last-child {
  margin-bottom: 0;
}
.technology-empowerment-page .precision-section .flex-box .left-box .list-box .item .label {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .left-box .list-box .item .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .left-box .list-box .item .value {
  margin-top: 0.08rem;
  font-size: 0.64rem;
  line-height: 0.72rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Num);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .left-box .list-box .item .value {
    margin-top: 0.16rem;
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con {
  width: 8.08rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con {
    width: 100%;
    margin-top: 0.96rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box {
  cursor: pointer;
  margin-bottom: 0.08rem;
  background: rgba(237, 242, 247, 0.4);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box {
    margin-bottom: 0.16rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box:last-child {
  margin-bottom: 0;
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .img-box {
  height: 0;
  padding-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  will-change: padding height;
  overflow: hidden;
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .img-box .img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .img-box .img {
    min-height: 3.68rem;
    max-width: none;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt {
  padding: 0 0.32rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt {
    padding: 0 0.48rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt .tit-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;
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt .tit-box .text {
  padding: 0.16rem 0;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt .tit-box .text {
    padding: 0.48rem 0;
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt .tit-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt .tit-box .icon {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt .card-txt {
  font-size: 0.16rem;
  line-height: 0.24rem;
  height: 0;
  padding-bottom: 0;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  will-change: padding height;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box .card-tit-txt .card-txt {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box.show .img-box {
  height: 3.44rem;
  padding-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box.show .img-box {
    height: 3.68rem;
    padding-bottom: 0;
  }
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box.show .card-tit-txt .tit-box .icon {
  opacity: 0;
}
.technology-empowerment-page .precision-section .flex-box .right-con .card-list .card-box.show .card-tit-txt .card-txt {
  padding-bottom: 0.32rem;
  height: auto;
}
@media screen and (max-width: 800px) {
  .technology-empowerment-page .card-dialog__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    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;
    padding: 0.48rem;
    z-index: 300;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .technology-empowerment-page .card-dialog__wrapper.show {
    visibility: visible;
    opacity: 1;
  }
  .technology-empowerment-page .card-dialog__wrapper .dialog-box {
    width: 100%;
    max-width: 6.56rem;
    background: #FFFFFF;
    padding: 0.64rem 0.48rem;
    min-height: auto;
    overflow-y: auto;
    position: relative;
  }
  .technology-empowerment-page .card-dialog__wrapper .dialog-box .close-btn {
    position: absolute;
    top: 0.24rem;
    right: 0.24rem;
    background: transparent;
  }
  .technology-empowerment-page .card-dialog__wrapper .dialog-box .dialog__header {
    color: #1A202C;
    font-size: 0.48rem;
    line-height: 0.64rem;
    padding-bottom: 0.32rem;
    border-bottom: 0.02rem solid #DCE4ED;
    position: relative;
  }
  .technology-empowerment-page .card-dialog__wrapper .dialog-box .dialog__header::before {
    content: "";
    position: absolute;
    bottom: -0.02rem;
    left: 0;
    width: 1.28rem;
    height: 0.02rem;
    background-color: var(--sk-global-color);
  }
  .technology-empowerment-page .card-dialog__wrapper .dialog-box .dialog__body {
    color: #4A5568;
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0.48rem;
  }
}

@media screen and (max-width: 800px) {
  .spring-customized-page .tabs_wrapper {
    overflow-x: auto;
    padding-right: 0;
    scrollbar-width: none;
  }
}
.spring-customized-page .tabs_wrapper .tabs-box {
  border-bottom: 0.01rem solid #DCE4ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .tabs_wrapper .tabs-box {
    margin-top: 0.16rem;
    padding-right: 0.48rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.spring-customized-page .tabs_wrapper .tabs-box .tab-pane {
  cursor: pointer;
  padding: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc((100% - 1.6rem) / 6);
  margin-right: 0.32rem;
  border-bottom: 0.02rem solid transparent;
  margin-bottom: -0.01rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .tabs_wrapper .tabs-box .tab-pane {
    margin-right: 0.48rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.32rem 0;
    border-bottom: 0.04rem solid transparent;
  }
}
.spring-customized-page .tabs_wrapper .tabs-box .tab-pane.on {
  border-bottom: 0.02rem solid var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .tabs_wrapper .tabs-box .tab-pane.on {
    border-bottom: 0.04rem solid var(--sk-global-color);
  }
}
.spring-customized-page .tabs_wrapper .tabs-box .tab-pane:last-child {
  margin-right: 0;
}
.spring-customized-page .tabs_wrapper .tabs-box .tab-pane .img-box {
  width: 0.4rem;
  height: 0.4rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .tabs_wrapper .tabs-box .tab-pane .img-box {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.spring-customized-page .tabs_wrapper .tabs-box .tab-pane .img-box .img {
  width: 100%;
  height: 100%;
}
.spring-customized-page .tabs_wrapper .tabs-box .tab-pane .tab-label {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .tabs_wrapper .tabs-box .tab-pane .tab-label {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 0.16rem;
    margin-left: 0;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.spring-customized-page .customized_wrapper {
  padding-top: 0.64rem;
  padding-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper {
    padding-top: 0.48rem;
    padding-bottom: 1.28rem;
  }
}
.spring-customized-page .customized_wrapper .h1-tit {
  font-size: 0.48rem;
  line-height: 0.56rem;
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #DCE4ED;
  position: relative;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .h1-tit {
    border-bottom: none;
    padding-bottom: 0;
    font-size: 0.64rem;
    line-height: 0.96rem;
  }
}
.spring-customized-page .customized_wrapper .h1-tit::before {
  content: "";
  position: absolute;
  width: 0.64rem;
  height: 0.01rem;
  bottom: -0.01rem;
  left: 0;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .h1-tit::before {
    display: none;
  }
}
.spring-customized-page .customized_wrapper .wrapper-flex {
  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.32rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .wrapper-flex {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.spring-customized-page .customized_wrapper .wrapper-flex .left-img {
  width: 4.48rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .wrapper-flex .left-img {
    width: 100%;
  }
}
.spring-customized-page .customized_wrapper .wrapper-flex .left-img .img {
  width: 100%;
}
.spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con {
  width: 8.08rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con {
    width: 100%;
  }
}
.spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con .text {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con .text {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #4A5568;
  }
}
.spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con .btn-s {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con .btn-s {
    margin-top: 0.48rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con .btn-s .btn {
  height: 0.48rem;
  padding: 0 0.4rem;
  min-width: 1.92rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.01rem solid var(--sk-global-color);
  color: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.32rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con .btn-s .btn {
    height: 0.8rem;
    width: calc(50% - 0.08rem);
    font-size: 0.28rem;
    line-height: 0.48rem;
    border: 0.02rem solid var(--sk-global-color);
    margin-right: 0;
  }
}
@media screen and (min-width: 800px) {
  .spring-customized-page .customized_wrapper .wrapper-flex .wrapper-con .btn-s .btn:hover {
    background-color: var(--sk-global-color);
    color: #fff;
  }
}
.spring-customized-page .form-section {
  position: relative;
  padding-top: 0.96rem;
  padding-bottom: 1.28rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section {
    padding: 0.96rem 0.16rem 1.28rem;
  }
}
.spring-customized-page .form-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spring-customized-page .form-section .form-box {
  position: relative;
  z-index: 5;
  background: #FFFFFF;
  padding: 0.64rem 1.2rem 0.96rem 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) {
  .spring-customized-page .form-section .form-box {
    padding: 0 0.48rem 0.96rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.spring-customized-page .form-section .form-box .left-cell {
  width: 1.75rem;
  border-right: 0.01rem solid #DCE4ED;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .left-cell {
    position: -webkit-sticky;
    position: sticky;
    top: 0.88rem;
    background-color: #fff;
    z-index: 5;
    width: 100%;
    padding-top: 0.32rem;
    border-bottom: 0.01rem solid #DCE4ED;
    border-right: none;
  }
}
.spring-customized-page .form-section .form-box .left-cell .cell-box {
  position: -webkit-sticky;
  position: sticky;
  top: 1.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: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .left-cell .cell-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.spring-customized-page .form-section .form-box .left-cell .cell-box .cell-li {
  cursor: pointer;
  margin-bottom: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
  padding-right: 0.32rem;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .left-cell .cell-box .cell-li {
    padding-right: 0;
    margin-bottom: 0;
    padding-bottom: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.spring-customized-page .form-section .form-box .left-cell .cell-box .cell-li:last-child {
  margin-bottom: 0;
}
.spring-customized-page .form-section .form-box .left-cell .cell-box .cell-li.on {
  color: var(--sk-global-color);
}
.spring-customized-page .form-section .form-box .left-cell .cell-box .cell-li.on::after {
  position: absolute;
  content: "";
  right: -0.01rem;
  top: 0;
  height: 100%;
  width: 0.02rem;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .left-cell .cell-box .cell-li.on::after {
    width: 100%;
    height: 0.04rem;
    right: 0;
    top: auto;
    bottom: -0.01rem;
  }
}
.spring-customized-page .form-section .form-box .form-content {
  width: 9.28rem;
}
.spring-customized-page .form-section .form-box .form-content .h2-tit {
  color: 2001b;
  font-size: 0.4rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .h2-tit {
    font-size: 0.48rem;
    margin-top: 0.64rem;
  }
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content {
    width: 100%;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item {
    margin-top: 0.64rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item:first-child {
    margin-top: 0.64rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .name {
  width: 100%;
  font-size: 0.24rem;
  line-height: 0.32rem;
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem solid #DCE4ED;
  font-weight: 500;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .name {
    font-size: 0.4rem;
    line-height: 0.64rem;
    border-bottom: 0.02rem solid #DCE4ED;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item {
  margin-top: 0.16rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item {
    margin-top: 0.32rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .label {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .label .red {
  color: #C40000;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .label .unit-tag {
  font-size: 0.14rem;
  color: rgba(2, 0, 27, 0.4);
  margin-left: 0.04rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item .label .unit-tag {
    font-size: 0.24rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content {
  margin-top: 0.08rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content {
    margin-top: 0.16rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input {
  height: 0.48rem;
  border: 0.01rem solid rgba(2, 0, 27, 0.2);
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding: 0 0.16rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input {
    height: 0.96rem;
    border: 0.02rem solid rgba(2, 0, 27, 0.2);
    padding: 0 0.24rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input::-webkit-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input::-moz-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input:-ms-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input::placeholder {
  color: rgba(2, 0, 27, 0.2);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input::-webkit-input-placeholder {
    color: rgba(2, 0, 27, 0.4);
  }
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input::-moz-placeholder {
    color: rgba(2, 0, 27, 0.4);
  }
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input:-ms-input-placeholder {
    color: rgba(2, 0, 27, 0.4);
  }
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input::placeholder {
    color: rgba(2, 0, 27, 0.4);
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input:focus {
  border: 0.01rem solid rgba(2, 0, 27, 0.6);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content input:focus {
    border: 0.02rem solid rgba(2, 0, 27, 0.6);
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item .item__content .code-img {
  position: absolute;
  width: 1.28rem;
  height: 0.4rem;
  right: 0.08rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item .item__content .code-img {
    width: 2.56rem;
    height: 0.8rem;
    right: 0.16rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.interval .item__content {
  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;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.interval .item__content input {
  width: calc((100% - 0.32rem) / 2);
  height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.interval .item__content input {
    height: 0.96rem;
    width: calc((100% - 0.48rem) / 2);
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.interval .item__content .hr {
  height: 0.01rem;
  width: 0.16rem;
  background-color: var(--fcolor-default);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.interval .item__content .hr {
    height: 0.02rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box {
  width: 50%;
  margin-bottom: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box:nth-last-child(-n+2) {
    margin-bottom: 0.16rem;
  }
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box {
    width: 100%;
    margin-bottom: 0.16rem;
  }
  .spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box:last-child {
    margin-bottom: 0;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box .checkbox-input {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box .checkbox-input {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box .checkbox-input .checked {
  height: 100%;
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box .checkbox-input .checked.false {
  display: block;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box .checkbox-input .checked.true {
  display: none;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box .label {
  padding-left: 0.08rem;
  padding-right: 0.2rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box .label {
    padding-left: 0.16rem;
    padding-right: 0;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box.on .checkbox-input .checked.false {
  display: none;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.checkbox .checkbox-box.on .checkbox-input .checked.true {
  display: block;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.code .item__content input {
    height: 1.12rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-item-1 {
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-item-1 .item__content {
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-item-1 .item__content input {
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 {
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content {
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer {
  width: 100%;
  padding: 0.12rem 0.16rem;
  border: 0.01rem solid rgba(2, 0, 27, 0.2);
  font-size: 0.14rem;
  line-height: 0.24rem;
  resize: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer {
    font-size: 0.28rem;
    height: 0.96rem;
    padding: 0.24rem;
    border: 0.02rem solid rgba(2, 0, 27, 0.2);
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer::-webkit-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer::-moz-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer:-ms-input-placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer::placeholder {
  color: rgba(2, 0, 27, 0.2);
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer:focus {
  border: 0.01rem solid rgba(2, 0, 27, 0.6);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.input-textarea-1 .item__content input.input-customer:focus {
    border: 0.02rem solid rgba(2, 0, 27, 0.6);
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-item-2 {
  width: calc(50% - 0.16rem);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.input-item-2 {
    width: 100%;
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-item-2 .item__content {
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .form-item .item.input-item-2 .item__content input {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-item .item.half-width {
    width: calc(50% - 0.16rem);
  }
}
.spring-customized-page .form-section .form-box .form-content .form-item.message .item .label {
  font-family: var(--sk-font-Regular);
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .user-privacy-policy {
    margin-top: 0.32rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy .checkbox-input {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .user-privacy-policy .checkbox-input {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy .checkbox-input .checked {
  height: 100%;
  width: 100%;
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy .checkbox-input .checked.false {
  display: block;
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy .checkbox-input .checked.true {
  display: none;
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy .label {
  padding-left: 0.08rem;
  padding-right: 0.2rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .user-privacy-policy .label {
    padding-left: 0.16rem;
    padding-right: 0;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy .label .red {
  color: #C40000;
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy .label a {
  text-decoration: underline;
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy.on .checkbox-input .checked.false {
  display: none;
}
.spring-customized-page .form-section .form-box .form-content .user-privacy-policy.on .checkbox-input .checked.true {
  display: block;
}
.spring-customized-page .form-section .form-box .form-content .form-btn {
  cursor: pointer;
  margin-top: 0.32rem;
  min-width: 2.08rem;
  padding: 0 0.4rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  background-color: var(--sk-global-color);
  color: #fff;
  border: 0.01rem solid var(--sk-global-color);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 0.48rem;
  -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) {
  .spring-customized-page .form-section .form-box .form-content .form-btn {
    margin-top: 0.48rem;
    width: 100%;
    height: 0.96rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    border: 0.02rem solid var(--sk-global-color);
  }
}
@media screen and (min-width: 800px) {
  .spring-customized-page .form-section .form-box .form-content .form-btn:hover {
    background-color: transparent;
    color: var(--sk-global-color);
  }
}

@media screen and (max-width: 800px) {
  .spring-selection-page .tabs_wrapper {
    overflow-x: auto;
    padding-right: 0;
    scrollbar-width: none;
  }
}
.spring-selection-page .tabs_wrapper .tabs-box {
  border-bottom: 0.01rem solid #DCE4ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .tabs_wrapper .tabs-box {
    margin-top: 0.16rem;
    padding-right: 0.48rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.spring-selection-page .tabs_wrapper .tabs-box .tab-pane {
  cursor: pointer;
  padding: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc((100% - 1.6rem) / 6);
  margin-right: 0.32rem;
  border-bottom: 0.02rem solid transparent;
  margin-bottom: -0.01rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .tabs_wrapper .tabs-box .tab-pane {
    margin-right: 0.48rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.32rem 0;
    border-bottom: 0.04rem solid transparent;
  }
}
.spring-selection-page .tabs_wrapper .tabs-box .tab-pane.on {
  border-bottom: 0.02rem solid var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .spring-selection-page .tabs_wrapper .tabs-box .tab-pane.on {
    border-bottom: 0.04rem solid var(--sk-global-color);
  }
}
.spring-selection-page .tabs_wrapper .tabs-box .tab-pane:last-child {
  margin-right: 0;
}
.spring-selection-page .tabs_wrapper .tabs-box .tab-pane .img-box {
  width: 0.4rem;
  height: 0.4rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .tabs_wrapper .tabs-box .tab-pane .img-box {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.spring-selection-page .tabs_wrapper .tabs-box .tab-pane .img-box .img {
  width: 100%;
  height: 100%;
}
.spring-selection-page .tabs_wrapper .tabs-box .tab-pane .tab-label {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .tabs_wrapper .tabs-box .tab-pane .tab-label {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 0.16rem;
    margin-left: 0;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.spring-selection-page .customized_wrapper {
  padding-top: 0.64rem;
  padding-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper {
    padding-top: 0.48rem;
  }
}
.spring-selection-page .customized_wrapper .h1-tit {
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #DCE4ED;
  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) {
  .spring-selection-page .customized_wrapper .h1-tit {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.spring-selection-page .customized_wrapper .h1-tit::before {
  content: "";
  position: absolute;
  width: 0.64rem;
  height: 0.01rem;
  bottom: -0.01rem;
  left: 0;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .h1-tit::before {
    display: none;
  }
}
.spring-selection-page .customized_wrapper .h1-tit .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .h1-tit .h1 {
    font-size: 0.64rem;
    line-height: 0.96rem;
  }
}
.spring-selection-page .customized_wrapper .h1-tit .btn-s {
  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;
}
.spring-selection-page .customized_wrapper .h1-tit .btn-s .btn {
  margin-left: 0.32rem;
  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;
  padding: 0 0.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border: 0.01rem solid var(--sk-global-color);
  cursor: pointer;
  color: var(--sk-global-color);
  cursor: pointer;
}
.spring-selection-page .customized_wrapper .h1-tit .btn-s .btn:hover {
  background-color: var(--sk-global-color);
  color: #fff;
}
.spring-selection-page .customized_wrapper .wrapper-flex {
  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.32rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .wrapper-flex {
    margin-top: 0.48rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.spring-selection-page .customized_wrapper .wrapper-flex .left-img {
  width: 4.48rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .wrapper-flex .left-img {
    width: 100%;
  }
}
.spring-selection-page .customized_wrapper .wrapper-flex .left-img .img {
  width: 100%;
}
.spring-selection-page .customized_wrapper .wrapper-flex .wrapper-con {
  width: 8.08rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .wrapper-flex .wrapper-con {
    width: 100%;
  }
}
.spring-selection-page .customized_wrapper .wrapper-flex .wrapper-con .text {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .wrapper-flex .wrapper-con .text {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #4A5568;
  }
}
.spring-selection-page .customized_wrapper .wrapper-flex .wrapper-con .text .title {
  margin-bottom: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .wrapper-flex .wrapper-con .text .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customized_wrapper .btn-s {
    margin-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;
  }
  .spring-selection-page .customized_wrapper .btn-s .btn {
    width: calc(50% - 0.08rem);
    height: 0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.02rem solid var(--sk-global-color);
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: var(--sk-global-color);
  }
}
.spring-selection-page .filter-section .filter-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem solid #DCE4ED;
}
.spring-selection-page .filter-section .filter-wrapper .label-img {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
  margin-top: 0.08rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.spring-selection-page .filter-section .filter-wrapper .label-txt {
  margin-left: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.4rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .filter-section .filter-wrapper .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.08rem;
  margin-left: 0.32rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.spring-selection-page .filter-section .filter-wrapper .tag-list .tag-li {
  margin-right: 0.08rem;
  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;
  padding: 0.08rem 0.09rem 0.08rem 0.12rem;
  background: rgba(220, 228, 237, 0.4);
}
.spring-selection-page .filter-section .filter-wrapper .tag-list .tag-li .txt {
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-right: 0.04rem;
  font-family: var(--sk-font-Light);
}
.spring-selection-page .filter-section .filter-wrapper .tag-list .tag-li .close-img {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
.spring-selection-page .filter-section .filter-wrapper .reset-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;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.spring-selection-page .filter-section .filter-wrapper .reset-btn .reset-svg {
  width: 0.24rem;
  height: 0.24rem;
}
.spring-selection-page .filter-section .filter-wrapper .reset-btn .txt {
  margin-left: 0.04rem;
  color: #0398CC;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.spring-selection-page .filter-content {
  margin-top: 0.16rem;
  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;
}
.spring-selection-page .filter-content .unit-cell {
  width: 2.96rem;
}
.spring-selection-page .filter-content .unit-cell .unit-label {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
.spring-selection-page .filter-content .unit-cell .card-list {
  margin-top: 0.16rem;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card {
  margin-bottom: 0.08rem;
  background: rgba(220, 228, 237, 0.4);
  padding: 0.16rem;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card:last-child {
  margin-bottom: 0;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .label-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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .label-box .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-right: 0.2rem;
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .label-box .expand-svg {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 0;
  overflow-y: auto;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con::-webkit-scrollbar-track {
  background: transparent;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con::-webkit-scrollbar-thumb {
  background: #E4E4E4;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con.slider {
  overflow: visible;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .layui__slider {
  padding-top: 0.23rem;
  margin-bottom: 0.23rem;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .layui__slider .layui-slider {
  height: 0.02rem;
  background: #DCE4ED;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .layui__slider .layui-slider-wrap-btn {
  background-color: #0398CC;
  width: 0.16rem;
  height: 0.16rem;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .slider-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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .slider-input .input-box {
  width: calc(50% - 0.12rem);
  position: relative;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .slider-input .input-box .input-label {
  position: absolute;
  left: 0.08rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(2, 0, 27, 0.4);
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .slider-input .input-box input {
  width: 100%;
  height: 0.4rem;
  padding: 0.08rem;
  border: 0.01rem solid #DCE4ED;
  background: #FFFFFF;
  font-size: 0.14rem;
  line-height: 0.24rem;
  text-align: right;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .slider-input .input-box input:focus {
  border: 0.01rem solid rgba(2, 0, 27, 0.6);
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .slider-input .hr {
  height: 0.01rem;
  width: 0.08rem;
  background-color: var(--fcolor-default);
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox {
  padding-top: 0.16rem;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box {
  width: 100%;
  margin-bottom: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box:last-child {
  margin-bottom: 0;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box .checkbox-input {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box .checkbox-input {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box .checkbox-input .checked {
  height: 100%;
  width: 100%;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box .checkbox-input .checked.false {
  display: block;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box .checkbox-input .checked.true {
  display: none;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box .label {
  padding-left: 0.08rem;
  padding-right: 0.2rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box .label {
    padding-left: 0.16rem;
    padding-right: 0;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box.on .checkbox-input .checked.false {
  display: none;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card .card-con .checkbox .checkbox-box.on .checkbox-input .checked.true {
  display: block;
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card.show .label-box .expand-svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.spring-selection-page .filter-content .unit-cell .card-list .item-card.show .card-con {
  opacity: 1;
  visibility: visible;
  max-height: 2rem;
}
.spring-selection-page .filter-content .unit-cell .card-list .sample-diagram {
  margin-top: 0.08rem;
  width: 100%;
}
.spring-selection-page .filter-content .table-box {
  width: 10.48rem;
}
.spring-selection-page .filter-content .table-box .statistics {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
.spring-selection-page .filter-content .table-box .statistics span {
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .filter-content .table-box table {
  margin-top: 0.16rem;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.spring-selection-page .filter-content .table-box table td,
.spring-selection-page .filter-content .table-box table th {
  height: 0.4rem;
  font-weight: inherit;
  text-align: left;
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding-left: 0.16rem;
}
.spring-selection-page .filter-content .table-box table thead {
  background: #0F1540;
  color: #fff;
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .filter-content .table-box table tbody {
  font-family: var(--sk-font-Light);
}
.spring-selection-page .filter-content .table-box table tbody tr:nth-child(2n) {
  background: rgba(220, 228, 237, 0.3);
}
.spring-selection-page .filter-content .table-box table .checkbox-box {
  width: 50%;
  margin-bottom: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.spring-selection-page .filter-content .table-box table .checkbox-box:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .filter-content .table-box table .checkbox-box:nth-last-child(-n+2) {
    margin-bottom: 0.16rem;
  }
}
@media screen and (max-width: 800px) {
  .spring-selection-page .filter-content .table-box table .checkbox-box {
    width: 100%;
    margin-bottom: 0.16rem;
  }
  .spring-selection-page .filter-content .table-box table .checkbox-box:last-child {
    margin-bottom: 0;
  }
}
.spring-selection-page .filter-content .table-box table .checkbox-box .checkbox-input {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .filter-content .table-box table .checkbox-box .checkbox-input {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.spring-selection-page .filter-content .table-box table .checkbox-box .checkbox-input .checked {
  height: 100%;
  width: 100%;
}
.spring-selection-page .filter-content .table-box table .checkbox-box .checkbox-input .checked.false {
  display: block;
}
.spring-selection-page .filter-content .table-box table .checkbox-box .checkbox-input .checked.true {
  display: none;
}
.spring-selection-page .filter-content .table-box table .checkbox-box.on .checkbox-input .checked.false {
  display: none;
}
.spring-selection-page .filter-content .table-box table .checkbox-box.on .checkbox-input .checked.true {
  display: block;
}
.spring-selection-page .filter-content .table-box .view-more-box {
  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;
}
.spring-selection-page .filter-content .table-box .view-more-box .btn {
  cursor: pointer;
  padding: 0 0.64rem;
  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;
  border: 0.01rem solid var(--sk-global-color);
  color: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.spring-selection-page .filter-content .table-box .view-more-box .btn:hover {
  background-color: var(--sk-global-color);
  color: #fff;
}
.spring-selection-page .filter-phone-section .sample-diagram {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 3.84rem;
  margin: 0 auto;
}
.spring-selection-page .filter-phone-section .form-box {
  margin-top: 0.48rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.16rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item:first-child {
  margin-top: 0;
}
.spring-selection-page .filter-phone-section .form-box .form-item .label {
  width: 1.46rem;
  padding-right: 0.32rem;
  font-size: 0.28rem;
  line-height: 0.48rem;
  text-align: right;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .filter-phone-section .form-box .form-item .input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.8rem;
  border: 0.02rem solid #DCE4ED;
  padding: 0 0.16rem;
  font-size: 0.28rem;
  line-height: 0.48rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item .input::-webkit-input-placeholder {
  color: rgba(2, 0, 27, 0.4);
}
.spring-selection-page .filter-phone-section .form-box .form-item .input::-moz-placeholder {
  color: rgba(2, 0, 27, 0.4);
}
.spring-selection-page .filter-phone-section .form-box .form-item .input:-ms-input-placeholder {
  color: rgba(2, 0, 27, 0.4);
}
.spring-selection-page .filter-phone-section .form-box .form-item .input::placeholder {
  color: rgba(2, 0, 27, 0.4);
}
.spring-selection-page .filter-phone-section .form-box .form-item .input:focus {
  border: 0.02rem solid rgba(2, 0, 27, 0.6);
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select {
  --h: 0.8rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front {
  padding: 0;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front::after {
  position: absolute;
  right: 0.16rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front input {
  height: 0.8rem;
  border: 0.02rem solid #DCE4ED;
  padding: 0 0.16rem;
  font-size: 0.28rem;
  line-height: 0.48rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front input::-webkit-input-placeholder {
  color: #02001B;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front input::-moz-placeholder {
  color: #02001B;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front input:-ms-input-placeholder {
  color: #02001B;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front input::placeholder {
  color: #02001B;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-front input:focus {
  border: 0.02rem solid rgba(2, 0, 27, 0.6);
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-layer .-inner {
  border: 0.02rem solid rgba(2, 0, 27, 0.2);
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-select-layer .-inner dl dd {
  font-size: 0.26rem;
  line-height: 0.4rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item .sk_select .-scroll {
  max-height: 4rem;
}
.spring-selection-page .filter-phone-section .form-box .form-item .btn {
  margin-top: 0.48rem;
  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;
  width: 100%;
}
.spring-selection-page .filter-phone-section .form-box .form-item .btn .search {
  min-width: 5.12rem;
  height: 0.8rem;
  border: 0.02rem solid var(--sk-global-color);
  padding: 0 0.6rem;
  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.28rem;
  line-height: 0.48rem;
  color: var(--sk-global-color);
}
.spring-selection-page .data-list-section {
  margin-top: 0.96rem;
}
.spring-selection-page .data-list-section .data-total {
  font-size: 0.28rem;
  line-height: 0.48rem;
}
.spring-selection-page .data-list-section .data-total span {
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .data-list-section .data-list {
  margin-top: 0.18rem;
}
.spring-selection-page .data-list-section .data-list .data-li {
  margin-bottom: 0.16rem;
  background: rgba(220, 228, 237, 0.4);
}
.spring-selection-page .data-list-section .data-list .data-li:last-child {
  margin-bottom: 0;
}
.spring-selection-page .data-list-section .data-list .data-li .data-header {
  padding: 0.16rem 0.32rem;
  background: #0F1540;
  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;
  color: #fff;
}
.spring-selection-page .data-list-section .data-list .data-li .data-header .title {
  font-size: 0.28rem;
  line-height: 0.48rem;
  padding-right: 0.2rem;
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .data-list-section .data-list .data-li .data-header .checkbox {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.48rem;
  height: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.spring-selection-page .data-list-section .data-list .data-li .data-header .checkbox .checkbox-img {
  height: 100%;
  width: 100%;
}
.spring-selection-page .data-list-section .data-list .data-li .data-header .checkbox .checkbox-img.false {
  display: block;
}
.spring-selection-page .data-list-section .data-list .data-li .data-header .checkbox .checkbox-img.true {
  display: none;
}
.spring-selection-page .data-list-section .data-list .data-li .data-header .checkbox.on .checkbox-img.false {
  display: none;
}
.spring-selection-page .data-list-section .data-list .data-li .data-header .checkbox.on .checkbox-img.true {
  display: block;
}
.spring-selection-page .data-list-section .data-list .data-li .data_body {
  padding: 0.32rem 0.32rem 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.spring-selection-page .data-list-section .data-list .data-li .data_body .data-item {
  width: 50%;
  margin-bottom: 0.16rem;
}
.spring-selection-page .data-list-section .data-list .data-li .data_body .data-item .label {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.spring-selection-page .data-list-section .data-list .data-li .data_body .data-item .value {
  font-size: 0.28rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Medium);
}
.spring-selection-page .customize-section {
  margin-top: 1.28rem;
  height: 2.56rem;
  margin-bottom: 1.28rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customize-section {
    margin-top: 0.96rem;
    height: 4rem;
  }
}
.spring-selection-page .customize-section .customize-box {
  height: 100%;
  position: relative;
}
.spring-selection-page .customize-section .customize-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.spring-selection-page .customize-section .customize-box .card-con {
  position: relative;
  z-index: 1;
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.32rem;
}
.spring-selection-page .customize-section .customize-box .card-con .text {
  font-size: 0.32rem;
  line-height: 0.48rem;
  color: #fff;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customize-section .customize-box .card-con .text {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.spring-selection-page .customize-section .customize-box .card-con .btn {
  margin-top: 0.32rem;
  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;
  color: var(--sk-global-color);
  padding: 0 0.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .spring-selection-page .customize-section .customize-box .card-con .btn {
    padding: 0 1.28rem;
    height: 0.8rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .spring-selection-page .customize-section .customize-box .card-con .btn:hover {
    background-color: var(--sk-global-color);
    color: #fff;
  }
}

@media screen and (max-width: 800px) {
  .special-springs-page .tabs_wrapper {
    overflow-x: auto;
    padding-right: 0;
    scrollbar-width: none;
  }
}
.special-springs-page .tabs_wrapper .tabs-box {
  border-bottom: 0.01rem solid #DCE4ED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .tabs_wrapper .tabs-box {
    margin-top: 0.16rem;
    padding-right: 0.48rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.special-springs-page .tabs_wrapper .tabs-box .tab-pane {
  cursor: pointer;
  padding: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc((100% - 1.6rem) / 6);
  margin-right: 0.32rem;
  border-bottom: 0.02rem solid transparent;
  margin-bottom: -0.01rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .tabs_wrapper .tabs-box .tab-pane {
    margin-right: 0.48rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.32rem 0;
    border-bottom: 0.04rem solid transparent;
  }
}
.special-springs-page .tabs_wrapper .tabs-box .tab-pane.on {
  border-bottom: 0.02rem solid var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .special-springs-page .tabs_wrapper .tabs-box .tab-pane.on {
    border-bottom: 0.04rem solid var(--sk-global-color);
  }
}
.special-springs-page .tabs_wrapper .tabs-box .tab-pane:last-child {
  margin-right: 0;
}
.special-springs-page .tabs_wrapper .tabs-box .tab-pane .tab-label {
  margin-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .tabs_wrapper .tabs-box .tab-pane .tab-label {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 0.16rem;
    margin-left: 0;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.special-springs-page .customized_wrapper {
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper {
    padding-top: 0.48rem;
  }
}
.special-springs-page .customized_wrapper .h1-tit {
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #DCE4ED;
  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) {
  .special-springs-page .customized_wrapper .h1-tit {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.special-springs-page .customized_wrapper .h1-tit::before {
  content: "";
  position: absolute;
  width: 0.64rem;
  height: 0.01rem;
  bottom: -0.01rem;
  left: 0;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .h1-tit::before {
    display: none;
  }
}
.special-springs-page .customized_wrapper .h1-tit .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .h1-tit .h1 {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.special-springs-page .customized_wrapper .h1-tit .btn-s {
  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;
}
.special-springs-page .customized_wrapper .h1-tit .btn-s .btn {
  margin-left: 0.32rem;
  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;
  padding: 0 0.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border: 0.01rem solid var(--sk-global-color);
  cursor: pointer;
  color: var(--sk-global-color);
  cursor: pointer;
}
.special-springs-page .customized_wrapper .h1-tit .btn-s .btn:hover {
  background-color: var(--sk-global-color);
  color: #fff;
}
.special-springs-page .customized_wrapper .content-box {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .content-box {
    margin-top: 0.64rem;
  }
}
.special-springs-page .customized_wrapper .content-box .html-box {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Light);
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .content-box .html-box {
    font-size: 0.28rem;
    color: #4A5568;
    line-height: 0.48rem;
  }
}
.special-springs-page .customized_wrapper .content-box .html-box .text {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .content-box .html-box .text {
    margin-top: 0.48rem;
  }
}
.special-springs-page .customized_wrapper .content-box .html-box .text:first-child {
  margin-top: 0;
}
.special-springs-page .customized_wrapper .content-box .html-box .text .title {
  margin-bottom: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .content-box .html-box .text .title {
    margin-bottom: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .btn-s {
    margin-top: 0.48rem;
  }
  .special-springs-page .customized_wrapper .btn-s .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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 0.8rem;
    padding: 0 1.28rem;
    border: 0.02rem solid var(--sk-global-color);
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: var(--sk-global-color);
  }
}
.special-springs-page .customized_wrapper .infor-card {
  margin-top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .infor-card {
    margin-top: 1.28rem;
  }
}
.special-springs-page .customized_wrapper .infor-card .img-box {
  height: 3.04rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .infor-card .img-box {
    height: 3.68rem;
  }
}
.special-springs-page .customized_wrapper .infor-card .img-box .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.special-springs-page .customized_wrapper .infor-card .card-con {
  padding: 0.64rem 1.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;
  background: rgba(237, 242, 247, 0.4);
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .infor-card .card-con {
    padding: 0.48rem 0.48rem 0.96rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: #F5F5F7;
  }
}
.special-springs-page .customized_wrapper .infor-card .card-con .card-text {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .infor-card .card-con .card-text {
    font-size: 0.28rem;
    line-height: 0.48rem;
    text-align: left;
  }
}
.special-springs-page .customized_wrapper .infor-card .card-con .customer-service {
  margin-top: 0.32rem;
  height: 0.48rem;
  padding: 0 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.01rem solid var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .special-springs-page .customized_wrapper .infor-card .card-con .customer-service {
    margin-top: 0.48rem;
    height: 0.8rem;
    padding: 0 1.28rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.special-springs-page .customized_wrapper .infor-card .card-con .customer-service:hover {
  background-color: var(--sk-global-color);
  color: #fff;
}
.special-springs-page .customized_wrapper .infor-card:hover .img-box .img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.sitemap-page .sitemap_wrapper {
  padding-top: 0.64rem;
  padding-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .sitemap-page .sitemap_wrapper {
    padding-top: 0.48rem;
  }
}
.sitemap-page .sitemap_wrapper .h1-tit {
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #DCE4ED;
  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) {
  .sitemap-page .sitemap_wrapper .h1-tit {
    border-bottom: 0.02rem solid #DCE4ED;
  }
}
.sitemap-page .sitemap_wrapper .h1-tit::before {
  content: "";
  position: absolute;
  width: 0.64rem;
  height: 0.01rem;
  bottom: -0.01rem;
  left: 0;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .sitemap-page .sitemap_wrapper .h1-tit::before {
    height: 0.02rem;
  }
}
.sitemap-page .sitemap_wrapper .h1-tit .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .sitemap-page .sitemap_wrapper .h1-tit .h1 {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.sitemap-page .sitemap_wrapper .link-list_wrapper .link-box {
  margin-top: 0.64rem;
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #DCE4ED;
}
.sitemap-page .sitemap_wrapper .link-list_wrapper .link-box:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.sitemap-page .sitemap_wrapper .link-list_wrapper .link-box .h2 {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .sitemap-page .sitemap_wrapper .link-list_wrapper .link-box .h2 {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.sitemap-page .sitemap_wrapper .link-list_wrapper .link-box .link-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;
}
.sitemap-page .sitemap_wrapper .link-list_wrapper .link-box .link-list .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;
  height: 0.48rem;
  width: calc((100% - 0.96rem) / 4);
  border: 0.01rem solid rgba(2, 0, 27, 0.2);
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-right: 0.32rem;
  margin-bottom: 0.32rem;
  padding: 0.1rem 0.2rem;
}
@media screen and (max-width: 800px) {
  .sitemap-page .sitemap_wrapper .link-list_wrapper .link-box .link-list .link {
    width: 100%;
    height: 0.8rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-right: 0;
  }
}
.sitemap-page .sitemap_wrapper .link-list_wrapper .link-box .link-list .link:nth-child(4n) {
  margin-right: 0;
}
@media screen and (min-width: 800px) {
  .sitemap-page .sitemap_wrapper .link-list_wrapper .link-box .link-list .link:hover {
    border: 0.01rem solid var(--sk-global-color);
    background: var(--sk-global-color);
    color: #fff;
  }
}

.cookie_wrapper {
  box-shadow: 0rem 0rem 0.4rem 0rem rgba(0, 0, 0, 0.15);
  padding: 0.32rem;
  width: 5.12rem;
  position: fixed;
  z-index: 50;
  bottom: 0.16rem;
  left: 0.16rem;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .cookie_wrapper {
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 0.48rem 0.48rem 0.72rem;
  }
}
.cookie_wrapper.show {
  opacity: 1;
  visibility: visible;
}
.cookie_wrapper .close-img {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .cookie_wrapper .close-img {
    top: 0.48rem;
    right: 0.46rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.cookie_wrapper .title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .cookie_wrapper .title {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.cookie_wrapper .cookie-text {
  margin-top: 0.16rem;
  color: #4A5568;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .cookie_wrapper .cookie-text {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.cookie_wrapper .btn-s {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .cookie_wrapper .btn-s {
    margin-top: 0.48rem;
  }
}
.cookie_wrapper .btn-s .btn {
  width: calc(50% - 0.16rem);
  height: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border: 0.01rem solid var(--sk-global-color);
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .cookie_wrapper .btn-s .btn {
    height: 0.8rem;
    width: calc(50% - 0.08rem);
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .cookie_wrapper .btn-s .btn:hover {
    color: #fff;
    background-color: var(--sk-global-color);
  }
}
.cookie_wrapper .btn-s .btn.color {
  color: #fff;
  background-color: var(--sk-global-color);
}
@media screen and (min-width: 800px) {
  .cookie_wrapper .btn-s .btn.color:hover {
    color: var(--sk-global-color);
    background-color: transparent;
  }
}

.my-list-page .my-list-section {
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
}
.my-list-page .my-list-section .h1-tit {
  padding-bottom: 0.32rem;
  border-bottom: 0.01rem solid #DCE4ED;
  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) {
  .my-list-page .my-list-section .h1-tit {
    border-bottom: 0.02rem solid #DCE4ED;
  }
}
.my-list-page .my-list-section .h1-tit::before {
  content: "";
  position: absolute;
  width: 0.64rem;
  height: 0.01rem;
  bottom: -0.01rem;
  left: 0;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .h1-tit::before {
    display: none;
    height: 0.02rem;
  }
}
.my-list-page .my-list-section .h1-tit .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .h1-tit .h1 {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}
.my-list-page .my-list-section .product-table {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table {
    margin-top: 0;
  }
}
.my-list-page .my-list-section .product-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: var(--sk-font-Medium);
}
.my-list-page .my-list-section .product-table table thead {
  background: #0F1540;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table thead {
    display: none;
  }
}
.my-list-page .my-list-section .product-table table thead th {
  font-weight: inherit;
  text-align: left;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #FFFFFF;
}
.my-list-page .my-list-section .product-table table tbody tr {
  border-bottom: 0.01rem solid #DCE4ED;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td {
  font-weight: inherit;
  text-align: left;
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding-left: 0.16rem;
  padding: 0.24rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td {
    padding: 0;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .my-list-page .my-list-section .product-table table tbody tr td:first-child {
    width: 100%;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box .checkbox-input {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box .checkbox-input {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box .checkbox-input .checked {
  height: 100%;
  width: 100%;
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box .checkbox-input .checked.false {
  display: block;
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box .checkbox-input .checked.true {
  display: none;
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box.on .checkbox-input .checked.false {
  display: none;
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .checkbox-box.on .checkbox-input .checked.true {
  display: block;
}
.my-list-page .my-list-section .product-table table tbody tr td .name-checkbox .name {
  margin-left: 0.16rem;
}
.my-list-page .my-list-section .product-table table tbody tr td .number-input {
  margin: 0 auto;
  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) {
  .my-list-page .my-list-section .product-table table tbody tr td .number-input {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td .number-input .reduce {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td .number-input .reduce {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td .number-input .plus {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td .number-input .plus {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td .number-input .input {
  width: 1.28rem;
  height: 0.4rem;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border: 0.01rem solid #DCE4ED;
  margin: 0 0.16rem;
  font-family: var(--sk-font-Regular);
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td .number-input .input {
    width: 2.56rem;
    height: 0.8rem;
    margin: 0 0.32rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td.td-input {
  width: 3.8rem;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td.td-input {
    margin-top: 0.32rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td.td-del {
  width: 1.52rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td.td-del {
    margin-top: 0.48rem;
    width: 0.48rem;
  }
}
.my-list-page .my-list-section .product-table table tbody tr td.td-del .del-img {
  cursor: pointer;
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .product-table table tbody tr td.td-del .del-img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.my-list-page .my-list-section .btn-s {
  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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .btn-s {
    margin-top: 0.48rem;
  }
}
.my-list-page .my-list-section .btn-s .btn {
  height: 0.48rem;
  padding: 0 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.01rem solid var(--sk-global-color);
  color: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-left: 0.32rem;
}
@media screen and (max-width: 800px) {
  .my-list-page .my-list-section .btn-s .btn {
    height: 0.8rem;
    width: calc(50% - 0.08rem);
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding: 0.16rem;
    margin-left: 0.16rem;
  }
  .my-list-page .my-list-section .btn-s .btn:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 800px) {
  .my-list-page .my-list-section .btn-s .btn:hover {
    background-color: var(--sk-global-color);
    color: #fff;
  }
}
.my-list-page .my-list-section .btn-s .btn.color {
  background-color: var(--sk-global-color);
  color: #fff;
}
@media screen and (min-width: 800px) {
  .my-list-page .my-list-section .btn-s .btn.color:hover {
    background-color: transparent;
    color: var(--sk-global-color);
  }
}

:root {
  --kgu-c-bg: rgba(237, 242, 247, 1);
  --kgu-c-bg-40: rgba(237, 242, 247, 0.40);
  --kgu-c-text-1: #02001B;
  --kgu-c-text-2: #5D5D5D;
  --kgu-c-text-3: #4A5568;
}

@-webkit-keyframes scrollRightAuto {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
}

@keyframes scrollRightAuto {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
}
@-webkit-keyframes scrollLeftAuto {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes scrollLeftAuto {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
.global-footer {
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sk0-imgHover:hover .img img, .sk0-imgHover:hover.img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.sk0-imgHover .img, .sk0-imgHover.img {
  overflow: hidden;
}

.sk-title01 {
  font-family: var(--sk-font-Medium);
  font-size: 0.72rem;
  line-height: 1.4rem;
}

.sk-title02 {
  font-family: var(--sk-font-Medium);
  font-size: 0.64rem;
  line-height: 0.75rem;
}

.sk-translate-icon-hover:hover .sk-translate-icon {
  --translate: translate(calc(-100% - var(--gap)), 0);
  background-color: var(--bg-color-hover);
}
.sk-translate-icon-hover:hover .sk-translate-icon[arrow-to=right] {
  --translate: translate(calc(100% + var(--gap)), 0);
}
.sk-translate-icon-hover:hover .sk-translate-icon .-inner {
  color: var(--svg-color-hover);
}

.sk-translate-icon {
  --gap: .08rem;
  --translate: translate(0, 0);
  --bg-color: white;
  --bg-color-hover: white;
  --svg-color: #1E1A34;
  --svg-color-hover: #1E1A34;
  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.64rem;
  height: 0.64rem;
  border-radius: 0.1rem;
  background-color: var(--bg-color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.sk-translate-icon[arrow-to=right]:hover {
  --translate: translate(calc(100% + var(--gap)), 0);
}
.sk-translate-icon[arrow-to=right] .-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.sk-translate-icon[arrow-to=right] .-inner .svg-ctx {
  margin: 0 0 0 var(--gap);
}
.sk-translate-icon.opacity20 {
  --bg-color: rgba(255, 255, 255, 0.20);
  --svg-color: rgba(255, 255, 255, 0.50);
  --svg-color-hover: #1E1A34;
}
.sk-translate-icon .-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.2rem;
  height: 0.2rem;
  overflow: hidden;
  color: var(--svg-color);
}
.sk-translate-icon .-inner .svg-ctx {
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  object-fit: contain;
  margin-right: var(--gap);
  -webkit-transform: var(--translate);
  -ms-transform: var(--translate);
  transform: var(--translate);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk-translate-icon:hover {
  --translate: translate(calc(-100% - var(--gap)), 0);
  background-color: var(--bg-color-hover);
}
.sk-translate-icon:hover .-inner {
  color: var(--svg-color-hover);
}

.sk0_banner {
  position: relative;
  width: 100%;
  height: 5.6rem;
}
.sk0_banner .wal {
  width: 100%;
  height: 100%;
}

.sk0_secondNav {
  position: -webkit-sticky;
  position: sticky;
  background-color: #F3F7FA;
  top: 0.8rem;
  z-index: 20;
}
.sk0_secondNav .wal .-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;
}
.sk0_secondNav .wal .-box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sk0_secondNav .wal .-box ul li {
  margin-right: 1.16rem;
}
.sk0_secondNav .wal .-box ul li:last-child {
  margin-right: 0;
}
.sk0_secondNav .wal .-box ul li.on a {
  --color: var(--sk-global-color);
}
.sk0_secondNav .wal .-box ul li.on a::after {
  opacity: 1;
}
.sk0_secondNav .wal .-box ul li a {
  --color: #5D5D5D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0.16rem 0;
}
.sk0_secondNav .wal .-box ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.02rem;
  background-color: var(--sk-global-color);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.sk0_secondNav .wal .-box ul li a:hover {
  --color: var(--sk-global-color);
  opacity: 1;
}
.sk0_secondNav .wal .-box ul li a:hover h2 {
  font-family: var(--sk-font-Medium);
}
.sk0_secondNav .wal .-box ul li a h2 {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sk0-btn {
  --color: var(--sk-global-color);
  --color-hover: white;
  --c-border: var(--sk-global-color);
  --c-border-hover: var(--sk-global-color);
  --c-bg: transparent;
  --c-bg-hover: var(--sk-global-color);
}
.sk0-btn[data-type=borderWhite] {
  --c-bg: transparent;
  --c-bg-hover: var(--sk-global-color);
  --c-border: white;
  --c-border-hover: var(--sk-global-color);
  --color: white;
  --color-hover: white;
}
.sk0-btn[data-type=fillWhite] {
  --c-bg: white;
  --c-border: white;
}
.sk0-btn[data-type=fillBrand] {
  --c-bg: var(--sk-global-color);
  --c-bg-hover: transparent;
  --c-border: var(--sk-global-color);
  --color: white;
  --color-hover: var(--sk-global-color);
}
.sk0-btn.-radius[data-size=small] a, .sk0-btn.-radius[data-size=small] .a {
  padding: 0.08rem 0.24rem;
  font-size: 0.14rem;
}
.sk0-btn.-radius a, .sk0-btn.-radius .a {
  padding: 0.16rem 0.32rem;
  border-radius: 0.32rem;
}
.sk0-btn a, .sk0-btn .a {
  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;
  padding: 0.12rem 0.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--color);
  border: 0.01rem solid var(--c-border);
  background-color: var(--c-bg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .sk0-btn a:hover, .sk0-btn .a:hover {
    background-color: var(--c-bg-hover);
    border-color: var(--c-border-hover);
    color: var(--color-hover);
  }
}
.sk0-btn a .svg-ctx, .sk0-btn .a .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
  margin-right: 0.08rem;
}

.sk0-crumbs {
  background-color: var(--kgu-c-bg-40);
}
.sk0-crumbs[type=absolute] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
}
.sk0-crumbs .wal {
  padding-top: 0.12rem;
  padding-bottom: 0.12rem;
}
.sk0-crumbs .wal ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 80%;
}
.sk0-crumbs .wal ul li {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.sk0-crumbs .wal ul li:last-child {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.sk0-crumbs .wal ul li:last-child a {
  pointer-events: none;
  color: #02001B;
}
.sk0-crumbs .wal ul li:last-child a::after {
  display: none;
}
.sk0-crumbs .wal ul li:last-child a span {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.sk0-crumbs .wal ul li a {
  --color: #4A5568;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--color);
}
.sk0-crumbs .wal ul li a::after {
  content: "/";
  margin: 0 0.08rem;
  font-size: 0.12rem;
}
.sk0-crumbs .wal ul li a span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sk0-head {
  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;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #DCE4ED;
}
.sk0-head::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.64rem;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: var(--sk-global-color);
}
.sk0-head .title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  color: var(--kgu-c-text-1);
}
.sk0-head .go-detail {
  margin-left: auto;
}
.sk0-head .go-detail a {
  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;
  color: var(--sk-global-color);
}
.sk0-head .go-detail a img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
  margin-left: 0.16rem;
}

.split__text-animate span {
  opacity: 0.2;
}

.history__section {
  position: relative;
}
.history__section .wal {
  padding-top: 0.64rem;
  height: 7.76rem;
}
.history__section .wal .-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 0.64rem;
  padding-left: 3.6rem;
}
.history__section .wal .-body .year-box {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 0;
  height: 3.36rem;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.history__section .wal .-body .year-box::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 2.88rem;
  background-color: var(--sk-global-color);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.history__section .wal .-body .year-box .-wal ul {
  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-transition: 0.3s;
  transition: 0.3s;
}
.history__section .wal .-body .year-box .-wal ul li {
  font-family: var(--sk-font-Num-M);
  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-right: 1.2rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
  height: 0.48rem;
}
.history__section .wal .-body .year-box .-wal ul li::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.08rem;
  height: 1px;
  background-color: var(--sk-global-color);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.history__section .wal .-body .year-box .-wal ul li.on {
  font-size: 0.24rem;
}
.history__section .wal .-body .year-box .-wal ul li.on::after {
  width: 0.88rem;
}
.history__section .wal .-body .year-box .-wal ul li span {
  cursor: pointer;
  display: inline-block;
  width: 0.88rem;
  text-align: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.history__section .wal .-body .content-box {
  max-width: 100%;
  width: 100%;
}
.history__section .wal .-body .content-box .-wal ul {
  position: relative;
}
.history__section .wal .-body .content-box .-wal ul li {
  display: none;
  width: 100%;
}
.history__section .wal .-body .content-box .-wal ul li .year {
  font-family: var(--sk-font-Num-M);
  font-size: 0.64rem;
  line-height: 0.72rem;
  color: var(--sk-global-color);
}
.history__section .wal .-body .content-box .-wal ul li .context {
  margin-top: 0.32rem;
  max-height: 2.64rem;
  overflow: auto;
}
.history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #4A5568;
}
.history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-thumb:vertical {
  background-color: #4A5568;
}
.history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-width {
  width: 0.04rem;
}
.history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: none;
}
.history__section .wal .-body .content-box .-wal ul li .context p {
  position: relative;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-1);
  padding-left: 0.32rem;
}
.history__section .wal .-body .content-box .-wal ul li .context p::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.16rem;
  top: 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: var(--kgu-c-text-1);
}
.history__section .wal .-body .content-box .-wal ul li.on {
  display: block;
}
.history__section .wal .-body .content-box .-arrow {
  margin-top: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.history__section .wal .-body .content-box .-arrow .prev,
.history__section .wal .-body .content-box .-arrow .next {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.56rem;
  height: 0.56rem;
  border: 0.01rem solid var(--sk-global-color);
  border-radius: 50%;
  color: var(--sk-global-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.history__section .wal .-body .content-box .-arrow .prev:hover,
.history__section .wal .-body .content-box .-arrow .next:hover {
  color: white;
  background-color: var(--sk-global-color);
}
.history__section .wal .-body .content-box .-arrow .prev .svg-ctx,
.history__section .wal .-body .content-box .-arrow .next .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .history__section .wal {
    padding-top: 0;
    height: 11.2rem;
  }
  .history__section .wal .-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-top: 0.48rem;
    padding-left: 1.92rem;
  }
  .history__section .wal .-body .year-box {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 0;
    height: 6.72rem;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .history__section .wal .-body .year-box::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 5.78rem;
    background-color: var(--sk-global-color);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .history__section .wal .-body .year-box .-wal ul {
    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-transition: 0.3s;
    transition: 0.3s;
  }
  .history__section .wal .-body .year-box .-wal ul li {
    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-right: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    color: var(--sk-global-color);
    height: 0.96rem;
  }
  .history__section .wal .-body .year-box .-wal ul li::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 0.08rem;
    height: 1px;
    background-color: var(--sk-global-color);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .history__section .wal .-body .year-box .-wal ul li.on {
    font-size: 0.32rem;
  }
  .history__section .wal .-body .year-box .-wal ul li.on::after {
    width: 0.32rem;
  }
  .history__section .wal .-body .year-box .-wal ul li span {
    cursor: pointer;
    display: inline-block;
    width: 0.82rem;
    text-align: right;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .history__section .wal .-body .content-box {
    max-width: 100%;
    width: 100%;
  }
  .history__section .wal .-body .content-box .-wal ul {
    position: relative;
  }
  .history__section .wal .-body .content-box .-wal ul li {
    display: none;
    width: 100%;
  }
  .history__section .wal .-body .content-box .-wal ul li .year {
    font-size: 0.64rem;
    line-height: 0.96rem;
    color: var(--sk-global-color);
  }
  .history__section .wal .-body .content-box .-wal ul li .context {
    margin-top: 0.32rem;
    max-height: 4.8rem;
    overflow: auto;
  }
  .history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar {
    width: 0.04rem;
    height: 0.04rem;
  }
  .history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-thumb {
    border-radius: 0.04rem;
    background: #4A5568;
  }
  .history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-thumb:vertical {
    background-color: #4A5568;
  }
  .history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-width {
    width: 0.04rem;
  }
  .history__section .wal .-body .content-box .-wal ul li .context::-webkit-scrollbar-track {
    border-radius: 0.04rem;
    background-color: none;
  }
  .history__section .wal .-body .content-box .-wal ul li .context p {
    position: relative;
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: var(--kgu-c-text-1);
    padding-left: 0.32rem;
  }
  .history__section .wal .-body .content-box .-wal ul li .context p::before {
    content: "";
    display: block;
    position: absolute;
    left: 0.16rem;
    top: 0.24rem;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--kgu-c-text-1);
  }
  .history__section .wal .-body .content-box .-wal ul li.on {
    display: block;
  }
  .history__section .wal .-body .content-box .-arrow {
    margin-top: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.32rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .history__section .wal .-body .content-box .-arrow .prev,
  .history__section .wal .-body .content-box .-arrow .next {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 0.8rem;
    height: 0.8rem;
    border: 0.02rem solid var(--sk-global-color);
    border-radius: 50%;
    color: var(--sk-global-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .history__section .wal .-body .content-box .-arrow .prev:hover,
  .history__section .wal .-body .content-box .-arrow .next:hover {
    color: white;
    background-color: var(--sk-global-color);
  }
  .history__section .wal .-body .content-box .-arrow .prev .svg-ctx,
  .history__section .wal .-body .content-box .-arrow .next .svg-ctx {
    width: 0.32rem;
    height: 0.32rem;
    object-fit: contain;
  }
}

.news-page .page__main {
  padding: 0.96rem 0 1.28rem;
}
.news-page .page__main > * {
  margin-top: 0.64rem;
}
.news-page .page__main > *:first-child {
  margin-top: 0;
}
.news-page .page__main .-contorl {
  position: relative;
  z-index: 2;
}
.news-page .page__main .-contorl .wal {
  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;
}
.news-page .page__main .-contorl .wal .-tab {
  position: relative;
  margin-right: 0.32rem;
  overflow: hidden;
  width: 100%;
}
.news-page .page__main .-contorl .wal .-tab .-tab-list::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 100%;
  background: -webkit-linear-gradient(right, white, transparent);
  background: linear-gradient(to left, white, transparent);
  z-index: 2;
}
.news-page .page__main .-contorl .wal .-tab .-tab-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news-page .page__main .-contorl .wal .-tab .-tab-list ul li {
  width: auto;
  margin-right: 0.16rem;
}
.news-page .page__main .-contorl .wal .-tab .-tab-list ul li:last-child {
  margin-right: 0;
}
@media screen and (min-width: 800px) {
  .news-page .page__main .-contorl .wal .-tab .-tab-list ul li a:hover, .news-page .page__main .-contorl .wal .-tab .-tab-list ul li .a:hover {
    color: white;
    background-color: var(--sk-global-color);
    border-color: var(--sk-global-color);
  }
}
.news-page .page__main .-contorl .wal .-tab .-tab-list ul li.on a, .news-page .page__main .-contorl .wal .-tab .-tab-list ul li.on .a {
  color: white;
  background-color: var(--sk-global-color);
  border-color: var(--sk-global-color);
}
.news-page .page__main .-contorl .wal .-tab .-tab-list ul li a, .news-page .page__main .-contorl .wal .-tab .-tab-list ul li .a {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.12rem 0.64rem;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-1);
  border: 0.01rem solid #DCE4ED;
}
.news-page .page__main .-contorl .wal .-year {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 1.3rem;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide {
  --color: var(--kgu-c-text-1);
  width: 100%;
  height: auto;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-left {
  position: relative;
  width: 6.88rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-left .img {
  position: relative;
  width: 100%;
  padding-top: calc((0.5697674419) * 100%);
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-left .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right {
  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-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.48rem 0.64rem 0.32rem;
  background: var(--kgu-c-bg-40);
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-info {
  margin-bottom: 0.32rem;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-info .name {
  font-family: var(--sk-font-Medium);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: var(--kgu-c-text-1);
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-info .context {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-2);
  margin-top: 0.16rem;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding-top: 0.32rem;
  border-top: 0.01rem solid #DCE4ED;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other .tag {
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
  color: var(--sk-global-color);
  background: var(--kgu-c-bg);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other .time {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
  margin: 0 0.16rem;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other .icon {
  margin-left: auto;
}
.news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other .icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.news-page .page__main .-banner .wal .swiper-container .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;
  margin-top: 0.32rem;
}
.news-page .page__main .-banner .wal .swiper-container .dots span {
  cursor: pointer;
  width: 0.32rem;
  height: 0.02rem;
  background-color: var(--kgu-c-bg);
  margin-right: 0.08rem;
}
.news-page .page__main .-banner .wal .swiper-container .dots span:last-child {
  margin-right: 0;
}
.news-page .page__main .-banner .wal .swiper-container .dots span.swiper-pagination-bullet-active {
  background-color: var(--sk-global-color);
}
.news-page .page__main .-list .sk-list .sk-item {
  --color: var(--kgu-c-text-1);
}
.news-page .page__main .-list .sk-list .sk-item a {
  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%;
}
.news-page .page__main .-list .sk-list .sk-item a .img {
  position: relative;
  width: 100%;
  padding-top: calc((0.5714285714) * 100%);
}
.news-page .page__main .-list .sk-list .sk-item a .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-page .page__main .-list .sk-list .sk-item a .-info {
  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-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.32rem;
  background: var(--kgu-c-bg-40);
  min-height: 2.48rem;
  height: 100%;
}
.news-page .page__main .-list .sk-list .sk-item a .-info .name {
  font-family: var(--sk-font-Medium);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: var(--kgu-c-text-1);
  margin-bottom: 0.32rem;
}
.news-page .page__main .-list .sk-list .sk-item a .-info .other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding-top: 0.32rem;
  border-top: 0.01rem solid #DCE4ED;
}
.news-page .page__main .-list .sk-list .sk-item a .-info .other .tag {
  font-size: 0.12rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
  color: var(--sk-global-color);
  background: var(--kgu-c-bg);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.news-page .page__main .-list .sk-list .sk-item a .-info .other .time {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
  margin: 0 0.16rem;
}
.news-page .page__main .-list .sk-list .sk-item a .-info .other .icon {
  margin-left: auto;
}
.news-page .page__main .-list .sk-list .sk-item a .-info .other .icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.news-page .page__main .-list .btn-box {
  text-align: center;
  margin-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .news-page .page__main {
    padding: 0.64rem 0 1.28rem;
  }
  .news-page .page__main > * {
    margin-top: 0.64rem;
  }
  .news-page .page__main > *:first-child {
    margin-top: 0;
  }
  .news-page .page__main .-contorl {
    position: relative;
  }
  .news-page .page__main .-contorl .wal {
    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;
  }
  .news-page .page__main .-contorl .wal .-tab {
    position: relative;
    overflow: hidden;
    margin-right: 0.16rem;
  }
  .news-page .page__main .-contorl .wal .-tab .-tab-list::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 0.5rem;
    height: 100%;
    background: -webkit-linear-gradient(right, white, transparent);
    background: linear-gradient(to left, white, transparent);
    z-index: 2;
  }
  .news-page .page__main .-contorl .wal .-tab .-tab-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .news-page .page__main .-contorl .wal .-tab .-tab-list ul li {
    width: auto;
    margin-right: 0.16rem;
  }
  .news-page .page__main .-contorl .wal .-tab .-tab-list ul li:last-child {
    margin-right: 0;
  }
  .news-page .page__main .-contorl .wal .-tab .-tab-list ul li a, .news-page .page__main .-contorl .wal .-tab .-tab-list ul li .a {
    padding: 0.08rem 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    border: 0.02rem solid #DCE4ED;
  }
  .news-page .page__main .-contorl .wal .-year {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: auto;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a {
    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;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-left {
    position: relative;
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-left .img {
    position: relative;
    width: 100%;
    padding-top: calc((0.5853658537) * 100%);
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-left .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right {
    padding: 0.32rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-info {
    margin-bottom: 0.8rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-info .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-info .context {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0.32rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other {
    padding-top: 0.32rem;
    border-top: 0.02rem solid #DCE4ED;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other .tag {
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.16rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other .time {
    font-size: 0.24rem;
    line-height: 0.48rem;
    margin: 0 0.32rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .swiper-wrapper .swiper-slide a .-right .-other .icon img {
    width: 0.48rem;
    height: 0.48rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .dots {
    margin-top: 0.48rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .dots span {
    width: 0.64rem;
    height: 0.04rem;
    margin-right: 0.16rem;
  }
  .news-page .page__main .-banner .wal .swiper-container .dots span:last-child {
    margin-right: 0;
  }
  .news-page .page__main .-list .sk-list .sk-item a {
    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%;
  }
  .news-page .page__main .-list .sk-list .sk-item a .img {
    position: relative;
    width: 100%;
    padding-top: calc((0.5853658537) * 100%);
  }
  .news-page .page__main .-list .sk-list .sk-item a .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .news-page .page__main .-list .sk-list .sk-item a .-info {
    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-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0.32rem;
    background: var(--kgu-c-bg-40);
    min-height: 3.2rem;
    height: 100%;
  }
  .news-page .page__main .-list .sk-list .sk-item a .-info .name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-bottom: 0.32rem;
  }
  .news-page .page__main .-list .sk-list .sk-item a .-info .other {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    padding-top: 0.32rem;
    border-top: 0.02rem solid #DCE4ED;
  }
  .news-page .page__main .-list .sk-list .sk-item a .-info .other .tag {
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.16rem;
    color: var(--sk-global-color);
    background: var(--kgu-c-bg);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .news-page .page__main .-list .sk-list .sk-item a .-info .other .time {
    font-size: 0.24rem;
    line-height: 0.48rem;
    color: var(--kgu-c-text-3);
    margin: 0 0.32rem;
  }
  .news-page .page__main .-list .sk-list .sk-item a .-info .other .icon img {
    width: 0.48rem;
    height: 0.48rem;
  }
  .news-page .page__main .-list .btn-box {
    text-align: center;
    margin-top: 0.64rem;
  }
}

.news-detail-page .page-box {
  background-color: var(--kgu-c-bg-40);
}
.news-detail-page .page-box .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.32rem;
  padding-bottom: 1.28rem;
  min-height: 100vh;
}
.news-detail-page .page-box .wal .-article {
  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;
  max-width: 100%;
  width: 100%;
  background-color: white;
}
.news-detail-page .page-box .wal .-article .-wrapper {
  padding: 0.64rem 1.2rem 0;
  margin-bottom: auto;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .title {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other {
  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.32rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-left .tag {
  font-size: 0.12rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
  background-color: var(--kgu-c-bg);
  color: var(--sk-global-color);
  margin-right: 0.16rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-left .time {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li {
  position: relative;
  margin-right: 0.24rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li:last-child {
  margin-right: 0;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a {
  color: #A0AEC0;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a:hover {
  color: var(--sk-global-color);
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a:hover + .-layer {
  opacity: 1;
  visibility: visible;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li .-layer {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li .-layer .-inner {
  width: 1.2rem;
  height: 1.2rem;
  padding: 0.12rem;
  background-color: var(--kgu-c-bg);
  border-radius: 0.08rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li .-layer .-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #4A5568;
  padding-top: 0.32rem;
  margin-top: 0.32rem;
  border-top: 1px solid #DCE4ED;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content p, .news-detail-page .page-box .wal .-article .-wrapper .-info .content span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content a {
  text-decoration: underline;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h2,
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h3,
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h4,
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h5 {
  font-family: var(--sk-font-Medium);
  font-weight: 600;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h2 {
  font-size: 0.54rem;
  line-height: 0.64rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h3 {
  font-size: 0.36rem;
  line-height: 0.48rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h4 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content h5 {
  font-size: 0.28rem;
  line-height: 0.38rem;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content ul li, .news-detail-page .page-box .wal .-article .-wrapper .-info .content ol li {
  list-style: inherit;
  list-style-position: inside;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content p:has(video),
.news-detail-page .page-box .wal .-article .-wrapper .-info .content p:has(img) {
  text-align: center;
}
.news-detail-page .page-box .wal .-article .-wrapper .-info .content video,
.news-detail-page .page-box .wal .-article .-wrapper .-info .content img {
  max-width: 100%;
}
.news-detail-page .page-box .wal .-article .-foot {
  position: relative;
  padding: 0 0.88rem;
  height: 0.88rem;
  border-top: 0.01rem solid #DCE4ED;
  margin-top: 0.64rem;
}
.news-detail-page .page-box .wal .-article .-foot .go-back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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%;
  border-left: 0.01rem solid #DCE4ED;
  border-right: 0.01rem solid #DCE4ED;
  z-index: 2;
}
.news-detail-page .page-box .wal .-article .-foot .go-back a {
  --color: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--color);
}
.news-detail-page .page-box .wal .-article .-foot .arrow {
  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: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.news-detail-page .page-box .wal .-article .-foot .arrow .prev,
.news-detail-page .page-box .wal .-article .-foot .arrow .next {
  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.88rem;
  height: 100%;
}
.news-detail-page .page-box .wal .-article .-foot .arrow .prev .img,
.news-detail-page .page-box .wal .-article .-foot .arrow .next .img {
  width: 0.24rem;
  height: 0.24rem;
}
.news-detail-page .page-box .wal .-article .-foot .arrow .prev .img img,
.news-detail-page .page-box .wal .-article .-foot .arrow .next .img img {
  width: 100%;
  height: 100%;
}
.news-detail-page .page-box .wal .-article .-foot .arrow .prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.news-detail-page .page-box .wal .-article .-foot .arrow .next {
  margin-left: auto;
}
.news-detail-page .page-box .wal .-recommend {
  max-width: 4.48rem;
  width: 100%;
  height: 100%;
}
.news-detail-page .page-box .wal .-recommend .-wrapper {
  width: 100%;
  height: 100%;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li {
  --color: var(--kgu-c-text-1);
  margin-top: 0.16rem;
  background-color: white;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li:first-child {
  margin-top: 0;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li a {
  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: 0.32rem;
  min-height: 2.48rem;
  height: 100%;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li a .name {
  font-family: var(--sk-font-Medium);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: var(--kgu-c-text-1);
  margin-bottom: 0.32rem;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li a .other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding-top: 0.32rem;
  border-top: 0.01rem solid #DCE4ED;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li a .other .tag {
  font-size: 0.12rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
  color: var(--sk-global-color);
  background: var(--kgu-c-bg);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li a .other .time {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
  margin: 0 0.16rem;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li a .other .icon {
  margin-left: auto;
}
.news-detail-page .page-box .wal .-recommend .-wrapper ul li a .other .icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .news-detail-page .page-box .wal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    padding: 0;
    min-height: auto;
  }
  .news-detail-page .page-box .wal .-article {
    max-width: 100%;
    width: 100%;
    background-color: white;
  }
  .news-detail-page .page-box .wal .-article .-wrapper {
    padding: 0.64rem 0.48rem 0;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0.32rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-left .tag {
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.16rem;
    margin-right: 0.32rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-left .time {
    font-size: 0.24rem;
    line-height: 0.48rem;
    color: var(--kgu-c-text-3);
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right {
    margin-top: 0.64rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li {
    position: relative;
    margin-right: 0.48rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li:last-child {
    margin-right: 0;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a {
    color: #A0AEC0;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
    object-fit: contain;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a:hover {
    color: var(--sk-global-color);
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li a:hover + .-layer {
    opacity: 1;
    visibility: visible;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li .-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li .-layer .-inner {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.16rem;
    background-color: var(--kgu-c-bg);
    border-radius: 0.16rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .other .-right .-share ul li .-layer .-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content {
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #4A5568;
    padding-top: 0.64rem;
    margin-top: 0.32rem;
    border-top: 1px solid #DCE4ED;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content p, .news-detail-page .page-box .wal .-article .-wrapper .-info .content span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content a {
    text-decoration: underline;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h2,
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h3,
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h4,
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h5 {
    font-family: var(--sk-font-Medium);
    font-weight: 600;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h2 {
    font-size: 0.54rem;
    line-height: 0.64rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h3 {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h4 {
    font-size: 0.32rem;
    line-height: 0.4rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content h5 {
    font-size: 0.28rem;
    line-height: 0.38rem;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content ul li, .news-detail-page .page-box .wal .-article .-wrapper .-info .content ol li {
    list-style: inherit;
    list-style-position: inside;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content p:has(video),
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content p:has(img) {
    text-align: center;
  }
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content video,
  .news-detail-page .page-box .wal .-article .-wrapper .-info .content img {
    max-width: 100%;
  }
  .news-detail-page .page-box .wal .-article .-foot {
    position: relative;
    padding: 0 1.44rem;
    height: 1.44rem;
    border-top: 0.02rem solid #DCE4ED;
    margin-top: 0.96rem;
  }
  .news-detail-page .page-box .wal .-article .-foot .go-back {
    border-left: 0.02rem solid #DCE4ED;
    border-right: 0.02rem solid #DCE4ED;
  }
  .news-detail-page .page-box .wal .-article .-foot .go-back a {
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: var(--sk-global-color);
  }
  .news-detail-page .page-box .wal .-article .-foot .arrow {
    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: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .news-detail-page .page-box .wal .-article .-foot .arrow .prev,
  .news-detail-page .page-box .wal .-article .-foot .arrow .next {
    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: 1.44rem;
    height: 100%;
  }
  .news-detail-page .page-box .wal .-article .-foot .arrow .prev .img,
  .news-detail-page .page-box .wal .-article .-foot .arrow .next .img {
    width: 0.48rem;
    height: 0.48rem;
  }
  .news-detail-page .page-box .wal .-article .-foot .arrow .prev .img img,
  .news-detail-page .page-box .wal .-article .-foot .arrow .next .img img {
    width: 100%;
    height: 100%;
  }
  .news-detail-page .page-box .wal .-article .-foot .arrow .prev {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .news-detail-page .page-box .wal .-recommend {
    display: none;
  }
}

.history-page .page-main .wal {
  padding-top: 0.96rem;
  padding-bottom: 1.28rem;
}
.history-page .page-main .wal .-list {
  position: relative;
}
.history-page .page-main .wal .-list::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: -0.05rem;
  width: 100%;
  height: 3.92rem;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 85%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFFFFF 85%);
  z-index: 1;
}
.history-page .page-main .wal .-list .-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.history-page .page-main .wal .-list .-item:first-child .time__line::before {
  top: 0.16rem;
  height: calc(100% - .16rem);
}
.history-page .page-main .wal .-list .-item:last-child .time__line .time__line-item:last-child {
  padding-bottom: 0;
}
.history-page .page-main .wal .-list .-item .year {
  font-family: var(--sk-font-Num-M);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0.96rem;
  line-height: 1.04rem;
  color: var(--sk-global-color);
}
.history-page .page-main .wal .-list .-item .time__line {
  position: relative;
  max-width: 8.08rem;
  width: 100%;
  margin-left: auto;
}
.history-page .page-main .wal .-list .-item .time__line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #DCE4ED;
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item {
  padding-left: 1.2rem;
  padding-bottom: 0.64rem;
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .date {
  font-family: var(--sk-font-Num-M);
  position: relative;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .date::before {
  content: "";
  display: block;
  position: absolute;
  left: -1.2rem;
  top: 0.16rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--sk-global-color);
  z-index: 1;
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .context {
  margin-top: 0.08rem;
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .context p {
  position: relative;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-1);
  padding-left: 0.32rem;
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .context p::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.16rem;
  top: 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: var(--kgu-c-text-1);
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .img {
  width: 100%;
  margin-top: 0.32rem;
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .img img {
  width: 100%;
  margin-bottom: 0.16rem;
}
.history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .img img:last-child {
  margin-bottom: 0;
}
.history-page .page-main .wal .btn-box {
  text-align: center;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .history-page .page-main .wal {
    padding-top: 0.96rem;
    padding-bottom: 1.28rem;
  }
  .history-page .page-main .wal .-list {
    position: relative;
  }
  .history-page .page-main .wal .-list::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: 0;
    bottom: -0.05rem;
    width: 100%;
    height: 1.6rem;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 85%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFFFFF 85%);
    z-index: 1;
  }
  .history-page .page-main .wal .-list .-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .history-page .page-main .wal .-list .-item:first-child .time__line::before {
    top: 0.24rem;
    height: calc(100% - .24rem);
  }
  .history-page .page-main .wal .-list .-item:last-child .time__line .time__line-item:last-child {
    padding-bottom: 0;
  }
  .history-page .page-main .wal .-list .-item .year {
    font-family: var(--sk-font-Num-M);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    font-size: 0.48rem;
    line-height: 0.8rem;
    color: var(--sk-global-color);
    -webkit-transform: translate(0, -0.16rem);
    -ms-transform: translate(0, -0.16rem);
    transform: translate(0, -0.16rem);
  }
  .history-page .page-main .wal .-list .-item .time__line {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin-left: 1.76rem;
  }
  .history-page .page-main .wal .-list .-item .time__line::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #DCE4ED;
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item {
    padding-left: 0.48rem;
    padding-bottom: 0.64rem;
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .date {
    font-family: var(--sk-font-Num-M);
    position: relative;
    font-size: 0.32rem;
    line-height: 0.48rem;
    color: var(--sk-global-color);
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .date::before {
    content: "";
    display: block;
    position: absolute;
    left: -0.48rem;
    top: 0.24rem;
    width: 0.16rem;
    height: 0.16rem;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--sk-global-color);
    z-index: 1;
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .context {
    margin-top: 0.16rem;
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .context p {
    position: relative;
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: var(--kgu-c-text-1);
    padding-left: 0.32rem;
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .context p::before {
    content: "";
    display: block;
    position: absolute;
    left: 0.16rem;
    top: 0.24rem;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--kgu-c-text-1);
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .img {
    width: 100%;
    margin-top: 0.32rem;
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .img img {
    width: 100%;
    margin-bottom: 0.16rem;
  }
  .history-page .page-main .wal .-list .-item .time__line .time__line-list .time__line-item .img img:last-child {
    margin-bottom: 0;
  }
  .history-page .page-main .wal .btn-box {
    text-align: center;
    margin-top: 0.64rem;
  }
}

.case-detail-page .page-box {
  color: var(--kgu-c-text-1);
}
.case-detail-page .page-box .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
}
.case-detail-page .page-box .wal .-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 1.2rem;
  padding-top: 1.2rem;
  max-width: 2.96rem;
  width: 100%;
  height: 100%;
}
.case-detail-page .page-box .wal .-sidebar .-open,
.case-detail-page .page-box .wal .-sidebar .-close {
  display: none;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper {
  margin-top: -1.2rem;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul {
  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;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li {
  padding: 0.16rem 0;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li.on .-front::before {
  background-image: url(../images/catalog/base/icon/sub.svg);
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li.on .-content {
  display: block;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-front {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-front::before {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.08rem;
  background-image: url(../images/catalog/base/icon/plus.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content {
  padding-top: 0.16rem;
  display: none;
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal {
  padding: 0.08rem 0;
  background-color: var(--kgu-c-bg-40);
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal .-dl .-dd:hover a, .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal .-dl .-dd.on a {
  color: white;
  background-color: var(--sk-global-color);
}
.case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal .-dl .-dd a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-1);
  padding: 0.08rem 0.32rem;
}
.case-detail-page .page-box .wal .-article {
  max-width: 10.48rem;
  width: 100%;
}
.case-detail-page .page-box .wal .-article .-wrapper .-head .title {
  position: relative;
  font-size: 0.48rem;
  line-height: 0.56rem;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #DCE4ED;
}
.case-detail-page .page-box .wal .-article .-wrapper .-head .title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0.64rem;
  height: 1px;
  background-color: var(--sk-global-color);
}
.case-detail-page .page-box .wal .-article .-wrapper .-body {
  padding-top: 0.32rem;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .content {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .content img {
  width: 100%;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row {
  margin-top: 0.64rem;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-title {
  font-family: var(--sk-font-Medium);
  font-size: 0.24rem;
  line-height: 0.32rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #DCE4ED;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content > * {
  margin-top: 0.32rem;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .imgs img {
  width: 100%;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table {
  border-collapse: collapse;
  width: 100%;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr {
  color: var(--kgu-c-text-1);
  background-color: white;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr:first-child {
  color: white;
  background-color: #0F1540 !important;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr:nth-child(2n-1) {
  background-color: var(--kgu-c-bg-40);
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td {
  padding: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  border-right: 1px solid #DCE4ED;
  vertical-align: top;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td:last-child {
  border-right: 0;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ul li, .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ol li {
  position: relative;
  padding-left: 0.24rem;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ul li::before, .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ol li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.12rem;
  top: 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: var(--kgu-c-text-1);
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .title_context .title {
  font-family: var(--sk-font-Medium);
  position: relative;
  font-size: 0.2rem;
  line-height: 0.32rem;
  padding-left: 0.32rem;
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .title_context .title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.16rem;
  top: 0.16rem;
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  background-color: var(--kgu-c-text-1);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .title_context .context {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.08rem;
  color: var(--kgu-c-text-3);
}
.case-detail-page .contact__section {
  margin-bottom: 1.28rem;
}
.case-detail-page .contact__section .wal {
  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;
  position: relative;
  padding-top: 0.64rem;
  padding-bottom: 0.72rem;
}
.case-detail-page .contact__section .wal .-background::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.case-detail-page .contact__section .wal .-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
}
.case-detail-page .contact__section .wal .-box .title {
  font-family: var(--sk-font-Medium);
  text-align: center;
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.case-detail-page .contact__section .wal .-box .context {
  max-width: 6.88rem;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.2rem;
}
.case-detail-page .contact__section .wal .-box .btn-box {
  text-align: center;
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .page-box {
    color: var(--kgu-c-text-1);
  }
  .case-detail-page .page-box .wal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0.64rem;
    padding-bottom: 0.96rem;
  }
  .case-detail-page .page-box .wal .-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .case-detail-page .page-box .wal .-sidebar.show {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  .case-detail-page .page-box .wal .-sidebar.show .-wrapper {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .case-detail-page .page-box .wal .-sidebar .-close {
    display: block;
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    width: 0.48rem;
    height: 0.48rem;
    background: url(../images/catalog/base/icon/close.svg) center center no-repeat;
    background-size: contain;
    z-index: 2;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper {
    background-color: white;
    margin: 0 0 0 auto;
    padding: 0.68rem 0 0.32rem;
    width: 80%;
    height: 100%;
    -webkit-transform: translate(10%, 0);
    -ms-transform: translate(10%, 0);
    transform: translate(10%, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul {
    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;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0 0.32rem;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li {
    padding: 0.32rem 0;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-front {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-front::before {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.16rem;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content {
    padding-top: 0.32rem;
    display: none;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal {
    padding: 0.16rem 0;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal .-dl .-dd.on a {
    color: white;
    background-color: var(--sk-global-color);
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal .-dl .-dd:hover a {
    color: white;
    background-color: transparent;
  }
  .case-detail-page .page-box .wal .-sidebar .-wrapper ul li .-content .-wal .-dl .-dd a {
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding: 0.16rem 0.64rem;
  }
  .case-detail-page .page-box .wal .-article {
    max-width: 100%;
    width: 100%;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-head .title {
    position: relative;
    font-size: 0.48rem;
    line-height: 0.64rem;
    padding-bottom: 0.32rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body {
    padding-top: 0.32rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .content {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row {
    margin-top: 0.64rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-title {
    font-family: var(--sk-font-Medium);
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding-bottom: 0.32rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content > * {
    margin-top: 0.32rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .imgs img {
    width: 100%;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table {
    border-collapse: collapse;
    width: 100%;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr {
    color: var(--kgu-c-text-1);
    background-color: white;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr:first-child {
    color: white;
    background-color: #0F1540 !important;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr:nth-child(2n-1) {
    background-color: var(--kgu-c-bg-40);
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td {
    padding: 0.16rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ul li, .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ol li {
    position: relative;
    padding-left: 0.22rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ul li::before, .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .-table table tr td ol li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.16rem;
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: var(--kgu-c-text-1);
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .title_context .title {
    font-family: var(--sk-font-Medium);
    position: relative;
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding-left: 0.48rem;
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .title_context .title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0.24rem;
    top: 0.24rem;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background-color: var(--kgu-c-text-1);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .case-detail-page .page-box .wal .-article .-wrapper .-body .-rows .-row .row-content .title_context .context {
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0.16rem;
    color: var(--kgu-c-text-3);
  }
  .case-detail-page .contact__section .wal {
    padding-top: 0.96rem;
    padding-bottom: 0.96rem;
  }
  .case-detail-page .contact__section .wal .-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    padding: 0 0.48rem;
  }
  .case-detail-page .contact__section .wal .-box .title {
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .case-detail-page .contact__section .wal .-box .context {
    max-width: 100%;
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-top: 0.32rem;
  }
  .case-detail-page .contact__section .wal .-box .btn-box {
    text-align: center;
    margin-top: 0.64rem;
  }
}

.about-page .partner__section .-wrapper {
  padding-top: 1.2rem;
  padding-bottom: 1.28rem;
  overflow: hidden;
}
.about-page .partner__section .-wrapper .-box .-info {
  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;
  width: 100%;
  max-width: 8rem;
  margin: 0 auto;
  color: var(--kgu-c-text-1);
}
.about-page .partner__section .-wrapper .-box .-info .title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  text-align: center;
}
.about-page .partner__section .-wrapper .-box .-info .context {
  font-size: 0.2rem;
  line-height: 0.32rem;
  text-align: center;
  margin-top: 0.16rem;
}
.about-page .partner__section .-wrapper .-box .scroll-rows {
  position: relative;
  margin-top: 0.64rem;
}
.about-page .partner__section .-wrapper .-box .scroll-rows::before, .about-page .partner__section .-wrapper .-box .scroll-rows::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  height: 100%;
  width: 2.56rem;
  background: -webkit-linear-gradient(left, white, transparent);
  background: linear-gradient(to right, white, transparent);
  z-index: 2;
}
.about-page .partner__section .-wrapper .-box .scroll-rows::after {
  left: auto;
  right: 0;
  background: -webkit-linear-gradient(left, transparent, white);
  background: linear-gradient(to right, transparent, white);
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row {
  --dur: 30s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.32rem;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:first-child {
  margin-top: 0;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:nth-child(2n) {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:nth-child(2n) .row-wrapper {
  -webkit-animation: scrollRightAuto var(--dur) linear infinite;
  animation: scrollRightAuto var(--dur) linear infinite;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:hover .row-wrapper {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper {
  -webkit-animation: scrollLeftAuto var(--dur) linear infinite;
  animation: scrollLeftAuto var(--dur) linear infinite;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper .-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper .-list .-item {
  width: 2.08rem;
  height: 0.96rem;
  margin-right: 0.32rem;
  border: 1px solid #DCE4ED;
}
.about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper .-list .-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-page .factory__section .-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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.64rem;
  height: 7.6rem;
}
.about-page .factory__section .-wrapper .-box {
  position: relative;
  width: 27%;
  height: 36%;
}
.about-page .factory__section .-wrapper .-box .-background::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.about-page .factory__section .-wrapper .-box .-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .factory__section .-wrapper .-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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  height: 100%;
}
.about-page .factory__section .-wrapper .-box .-info .-center {
  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-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 50%;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.about-page .factory__section .-wrapper .-box .-info .-center .title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  text-align: center;
}
.about-page .factory__section .-wrapper .-box .-info .-center .btn-box {
  margin-top: 0.32rem;
  text-align: center;
}
.about-page .factory__section .-wrapper .-box .-info .-bothSides {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.32rem;
  z-index: 0;
}
.about-page .factory__section .-wrapper .-box .-info .-bothSides .-column {
  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;
  max-width: 30%;
}
.about-page .factory__section .-wrapper .-box .-info .-bothSides .-column .big-text {
  font-family: var(--sk-font-Num-M);
  font-size: 1.44rem;
  line-height: 1.52rem;
}
.about-page .factory__section .-wrapper .-box .-info .-bothSides .-column .small-text {
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.32rem;
  text-align: center;
}
.about-page .news__section .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.96rem;
}
.about-page .news__section .wal .-list {
  margin-top: 0.32rem;
}
.about-page .news__section .wal .-list .sk-list .sk-item {
  --color: var(--kgu-c-text-1);
}
.about-page .news__section .wal .-list .sk-list .sk-item a {
  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%;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .img {
  position: relative;
  width: 100%;
  padding-top: calc((0.5714285714) * 100%);
}
.about-page .news__section .wal .-list .sk-list .sk-item a .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .-info {
  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-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.32rem;
  background: var(--kgu-c-bg-40);
  min-height: 2.48rem;
  height: 100%;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .-info .name {
  font-family: var(--sk-font-Medium);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: var(--kgu-c-text-1);
  margin-bottom: 0.32rem;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .-info .other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding-top: 0.32rem;
  border-top: 0.01rem solid #DCE4ED;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .-info .other .tag {
  font-size: 0.12rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
  color: var(--sk-global-color);
  background: var(--kgu-c-bg);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .-info .other .time {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
  margin: 0 0.16rem;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .-info .other .icon {
  margin-left: auto;
}
.about-page .news__section .wal .-list .sk-list .sk-item a .-info .other .icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .about-page .partner__section .-wrapper {
    padding-top: 0.64rem;
    padding-bottom: 0.96rem;
    overflow: hidden;
  }
  .about-page .partner__section .-wrapper .-box .-info {
    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;
    width: 100%;
    max-width: 5.6rem;
    margin: 0 auto;
    color: var(--kgu-c-text-1);
  }
  .about-page .partner__section .-wrapper .-box .-info .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
    text-align: center;
  }
  .about-page .partner__section .-wrapper .-box .-info .context {
    font-size: 0.28rem;
    line-height: 0.48rem;
    text-align: center;
    margin-top: 0.32rem;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows {
    position: relative;
    margin-top: 0.64rem;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows::before, .about-page .partner__section .-wrapper .-box .scroll-rows::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    height: 100%;
    width: 0.5rem;
    background: -webkit-linear-gradient(left, white, transparent);
    background: linear-gradient(to right, white, transparent);
    z-index: 2;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows::after {
    left: auto;
    right: 0;
    background: -webkit-linear-gradient(left, transparent, white);
    background: linear-gradient(to right, transparent, white);
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row {
    --dur: 30s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 0.16rem;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:first-child {
    margin-top: 0;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:nth-child(2n) {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:nth-child(2n) .row-wrapper {
    -webkit-animation: scrollRightAuto var(--dur) linear infinite;
    animation: scrollRightAuto var(--dur) linear infinite;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row:hover .row-wrapper {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper {
    -webkit-animation: scrollLeftAuto var(--dur) linear infinite;
    animation: scrollLeftAuto var(--dur) linear infinite;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper .-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper .-list .-item {
    width: 2.08rem;
    height: 0.96rem;
    margin-right: 0.16rem;
    border: 1px solid #DCE4ED;
  }
  .about-page .partner__section .-wrapper .-box .scroll-rows .scroll-row .row-wrapper .-list .-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .about-page .factory__section .-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: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    height: 10.24rem;
  }
  .about-page .factory__section .-wrapper .-box {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .about-page .factory__section .-wrapper .-box .-background::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .about-page .factory__section .-wrapper .-box .-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-page .factory__section .-wrapper .-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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    height: 100%;
  }
  .about-page .factory__section .-wrapper .-box .-info .-center {
    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-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    height: 30%;
    margin: 0 auto;
    z-index: 1;
  }
  .about-page .factory__section .-wrapper .-box .-info .-center .title {
    display: none;
  }
  .about-page .factory__section .-wrapper .-box .-info .-center .btn-box {
    margin-top: 0;
    text-align: center;
  }
  .about-page .factory__section .-wrapper .-box .-info .-bothSides {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.28rem 0.32rem;
    z-index: 0;
  }
  .about-page .factory__section .-wrapper .-box .-info .-bothSides .-column {
    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;
    max-width: 100%;
  }
  .about-page .factory__section .-wrapper .-box .-info .-bothSides .-column .big-text {
    font-size: 1.28rem;
    line-height: 1.44rem;
  }
  .about-page .factory__section .-wrapper .-box .-info .-bothSides .-column .small-text {
    font-size: 0.32rem;
    line-height: 0.48rem;
    text-align: center;
    margin-top: 0.16rem;
  }
  .about-page .news__section .wal {
    padding-top: 0.96rem;
    padding-bottom: 0.96rem;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a {
    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%;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .img {
    position: relative;
    width: 100%;
    padding-top: calc((0.5853658537) * 100%);
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .-info {
    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-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0.32rem;
    background: var(--kgu-c-bg-40);
    min-height: 3.2rem;
    height: 100%;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .-info .name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-bottom: 0.32rem;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .-info .other {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    padding-top: 0.32rem;
    border-top: 0.02rem solid #DCE4ED;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .-info .other .tag {
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.16rem;
    color: var(--sk-global-color);
    background: var(--kgu-c-bg);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .-info .other .time {
    font-size: 0.24rem;
    line-height: 0.48rem;
    color: var(--kgu-c-text-3);
    margin: 0 0.32rem;
  }
  .about-page .news__section .wal .-list .sk-list .sk-item a .-info .other .icon img {
    width: 0.48rem;
    height: 0.48rem;
  }
}

.index-page main {
  padding-bottom: 1.28rem;
}
.index-page .index-banner .swiper-container {
  position: relative;
  height: 100vh;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-backgroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  z-index: -1;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-backgroud::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;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-backgroud video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal {
  padding: 0.64rem 0;
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box .title {
  color: white;
  font-size: 0.4rem;
  line-height: 0.48rem;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box .title em {
  font-size: 0.64rem;
  line-height: 0.72rem;
  letter-spacing: 0.06rem;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box .-animate {
  opacity: 0;
  -webkit-transform: translate(0, 0.8rem);
  -ms-transform: translate(0, 0.8rem);
  transform: translate(0, 0.8rem);
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box .btn-box {
  margin-top: 0.32rem;
}
.index-page .index-banner .swiper-container .swiper-dots {
  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;
  width: 100%;
  left: 0;
  bottom: 0.32rem;
  z-index: 10;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-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;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span {
  --progress: 0;
  cursor: pointer;
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  width: 0.32rem;
  height: 0.02rem;
  margin-right: 0.04rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span:last-child {
  margin-right: 0;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--progress) * 100%);
  height: 100%;
  background-color: white;
}
.index-page .product__section .wal1792 {
  padding-top: 0.96rem;
}
.index-page .product__section .wal1792 .-head .title {
  text-align: center;
  font-size: 0.48rem;
  line-height: 0.56rem;
  color: var(--sk-global-color);
}
.index-page .product__section .wal1792 .-body {
  position: relative;
  margin-top: 0.96rem;
}
.index-page .product__section .wal1792 .-body .-wrapper {
  width: 100%;
  height: 5.92rem;
  padding: 0.48rem 0;
  mix-blend-mode: multiply;
}
.index-page .product__section .wal1792 .-body .-wrapper .content-box .content {
  display: none;
}
.index-page .product__section .wal1792 .-body .-wrapper .-info {
  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: 0 auto;
}
.index-page .product__section .wal1792 .-body .-wrapper .-info .title {
  font-family: var(--sk-font-Medium);
  font-size: 0.32rem;
  line-height: 0.4rem;
  color: var(--kgu-c-text-1);
}
.index-page .product__section .wal1792 .-body .-wrapper .-info .context {
  text-align: center;
  max-width: 80%;
  margin-top: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.index-page .product__section .wal1792 .-body .-wrapper .-info .btns-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.16rem;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list {
  position: relative;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container {
  overflow: hidden;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper .swiper-slide {
  width: auto;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper .swiper-slide .img {
  width: 3.36rem;
  height: 3.36rem;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow .prev,
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow .next {
  content: "";
  display: block;
  position: absolute;
  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;
  left: 0.16rem;
  top: 50%;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 2;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(0.2rem);
  backdrop-filter: blur(0.2rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow .prev .svg-ctx,
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow .next .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow .prev:hover,
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow .next:hover {
  background-color: var(--sk-global-color);
}
.index-page .product__section .wal1792 .-body .-wrapper .-list .arrow .next {
  left: auto;
  right: 0.16rem;
}
.index-page .scene__section {
  margin-top: 0.32rem;
}
.index-page .scene__section .wal1792 {
  position: relative;
  overflow: hidden;
}
.index-page .scene__section .wal1792 .-background::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  background: -webkit-linear-gradient(top, transparent, black);
  background: linear-gradient(to bottom, transparent, black);
  z-index: 1;
}
.index-page .scene__section .wal1792 .-background img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.index-page .scene__section .wal1792 .-background img.on {
  opacity: 1;
}
.index-page .scene__section .wal1792 .-box {
  position: relative;
  padding: 0 1.76rem;
  height: 5.04rem;
}
.index-page .scene__section .wal1792 .-box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.index-page .scene__section .wal1792 .-box ul li {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .scene__section .wal1792 .-box ul li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.index-page .scene__section .wal1792 .-box ul li.on {
  -webkit-backdrop-filter: blur(0.1rem);
  backdrop-filter: blur(0.1rem);
  background-color: rgba(0, 0, 0, 0.2);
}
.index-page .scene__section .wal1792 .-box ul li.on .info {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.index-page .scene__section .wal1792 .-box ul li.on .info .context,
.index-page .scene__section .wal1792 .-box ul li.on .info .btn-box {
  opacity: 1;
}
.index-page .scene__section .wal1792 .-box ul li .info {
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.64rem 0.32rem;
  color: white;
  -webkit-transform: translate(0, calc(100% - 1.6rem));
  -ms-transform: translate(0, calc(100% - 1.6rem));
  transform: translate(0, calc(100% - 1.6rem));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .scene__section .wal1792 .-box ul li .info .title {
  font-family: var(--sk-font-Medium);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.index-page .scene__section .wal1792 .-box ul li .info .context {
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin: 0.16rem 0;
}
.index-page .scene__section .wal1792 .-box ul li .info .btn-box {
  width: 100%;
  margin-top: auto;
}
.index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn {
  width: 100%;
}
.index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn a, .index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn .a {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.12rem 0.08rem;
}
.index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn a span, .index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn .a span {
  text-align: center;
}
.index-page .scene__section .wal1792 .-box ul li .info .context,
.index-page .scene__section .wal1792 .-box ul li .info .btn-box {
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.1s;
  transition: opacity 0.3s 0.1s;
}
.index-page .solution__section .wal {
  padding-top: 0.96rem;
}
.index-page .solution__section .wal .-body {
  margin-top: 0.64rem;
}
.index-page .solution__section .wal .-body .-box {
  position: relative;
  padding-right: 9.6rem;
  height: 5.2rem;
}
.index-page .solution__section .wal .-body .-box .-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;
  height: 100%;
}
.index-page .solution__section .wal .-body .-box .-list .-item {
  --progress: 0;
  cursor: pointer;
  height: 0.88rem;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (min-width: 800px) {
  .index-page .solution__section .wal .-body .-box .-list .-item:hover .-info::after {
    left: 0;
    width: 100%;
  }
}
.index-page .solution__section .wal .-body .-box .-list .-item.on {
  height: 100%;
}
.index-page .solution__section .wal .-body .-box .-list .-item.on .img {
  opacity: 1;
}
.index-page .solution__section .wal .-body .-box .-list .-item.on .-info::after {
  left: 0 !important;
  width: calc(var(--progress) * 100%) !important;
  -webkit-transition: none;
  transition: none;
}
.index-page .solution__section .wal .-body .-box .-list .-item .img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  max-width: 9.28rem;
  width: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.index-page .solution__section .wal .-body .-box .-list .-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info {
  position: relative;
  padding: 0.24rem 0;
  border-bottom: 1px solid #DCE4ED;
  height: 100%;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: auto;
  right: 0;
  width: calc(var(--progress) * 100%);
  height: 1px;
  background-color: var(--sk-global-color);
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .title-box {
  font-family: var(--sk-font-Medium);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.24rem;
  line-height: 0.4rem;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .title-box .icon {
  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: 0.4rem;
  height: 0.4rem;
  margin-right: 0.16rem;
  background-color: var(--sk-global-color);
  border-radius: 50%;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .title-box .icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .content {
  display: none;
  padding-top: 0.32rem;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul {
  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 0;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul li {
  --color: var(--kgu-c-text-1);
  width: 50%;
  padding-right: 0.16rem;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: var(--color);
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul li a .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.08rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--sk-global-color);
}
.index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul li a .icon .svg-ctx {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .contact__section {
  position: relative;
  margin-top: 1.28rem;
}
.index-page .contact__section .-background::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.index-page .contact__section .wal {
  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;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
  height: 5.04rem;
}
.index-page .contact__section .wal .-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
}
.index-page .contact__section .wal .-box .title {
  font-family: var(--sk-font-Medium);
  text-align: center;
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.index-page .contact__section .wal .-box .btn-box {
  text-align: center;
  margin-top: 0.32rem;
}
.index-page .faq__section .wal {
  padding-top: 0.96rem;
  padding-bottom: 0.96rem;
}
.index-page .faq__section .wal .-body {
  position: relative;
  margin-top: 0.64rem;
  padding-left: 4.8rem;
}
.index-page .faq__section .wal .-body .-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.48rem;
}
.index-page .faq__section .wal .-body .-left .img {
  width: 100%;
  height: auto;
}
.index-page .faq__section .wal .-body .-left .img img {
  width: 100%;
}
.index-page .faq__section .wal .-body .-list ul {
  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;
}
.index-page .faq__section .wal .-body .-list ul li {
  width: 100%;
  background-color: var(--kgu-c-bg-40);
  padding: 0.32rem;
  margin-top: 0.08rem;
}
.index-page .faq__section .wal .-body .-list ul li:first-child {
  margin-top: 0;
}
.index-page .faq__section .wal .-body .-list ul li.on .front::after {
  background-image: url(../images/catalog/base/icon/sub.svg);
}
.index-page .faq__section .wal .-body .-list ul li .front {
  font-family: var(--sk-font-Medium);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: var(--kgu-c-text-1);
}
.index-page .faq__section .wal .-body .-list ul li .front::after {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 0.32rem;
  background-image: url(../images/catalog/base/icon/plus.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.index-page .faq__section .wal .-body .-list ul li .content {
  display: none;
  padding-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
  padding-right: 0.24rem;
}
.index-page .faq__section .wal .-body .-list ul li .content p, .index-page .faq__section .wal .-body .-list ul li .content span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.index-page .faq__section .wal .-body .-list ul li .content a {
  text-decoration: underline;
}
.index-page .faq__section .wal .-body .-list ul li .content h2,
.index-page .faq__section .wal .-body .-list ul li .content h3,
.index-page .faq__section .wal .-body .-list ul li .content h4,
.index-page .faq__section .wal .-body .-list ul li .content h5 {
  font-family: var(--sk-font-Medium);
  font-weight: 600;
}
.index-page .faq__section .wal .-body .-list ul li .content h2 {
  font-size: 0.54rem;
  line-height: 0.64rem;
}
.index-page .faq__section .wal .-body .-list ul li .content h3 {
  font-size: 0.36rem;
  line-height: 0.48rem;
}
.index-page .faq__section .wal .-body .-list ul li .content h4 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.index-page .faq__section .wal .-body .-list ul li .content h5 {
  font-size: 0.28rem;
  line-height: 0.38rem;
}
.index-page .faq__section .wal .-body .-list ul li .content ul li, .index-page .faq__section .wal .-body .-list ul li .content ol li {
  list-style: inherit;
  list-style-position: inside;
}
.index-page .faq__section .wal .-body .-list ul li .content p:has(video),
.index-page .faq__section .wal .-body .-list ul li .content p:has(img) {
  text-align: center;
}
.index-page .faq__section .wal .-body .-list ul li .content video,
.index-page .faq__section .wal .-body .-list ul li .content img {
  max-width: 100%;
}
.index-page .about__section .wal {
  padding-top: 1.14rem;
}
.index-page .about__section .wal .-top {
  position: relative;
  padding-right: 8.4rem;
}
.index-page .about__section .wal .-top .-info .img {
  position: absolute;
  right: 0;
  top: 0;
  width: 6.88rem;
  height: 5.12rem;
}
.index-page .about__section .wal .-top .-info .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .about__section .wal .-top .-info .content {
  margin-top: 0.64rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--kgu-c-text-3);
}
.index-page .about__section .wal .-top .-info .content p, .index-page .about__section .wal .-top .-info .content span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.index-page .about__section .wal .-top .-info .content a {
  text-decoration: underline;
}
.index-page .about__section .wal .-top .-info .content h2,
.index-page .about__section .wal .-top .-info .content h3,
.index-page .about__section .wal .-top .-info .content h4,
.index-page .about__section .wal .-top .-info .content h5 {
  font-family: var(--sk-font-Medium);
  font-weight: 600;
}
.index-page .about__section .wal .-top .-info .content h2 {
  font-size: 0.54rem;
  line-height: 0.64rem;
}
.index-page .about__section .wal .-top .-info .content h3 {
  font-size: 0.36rem;
  line-height: 0.48rem;
}
.index-page .about__section .wal .-top .-info .content h4 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.index-page .about__section .wal .-top .-info .content h5 {
  font-size: 0.28rem;
  line-height: 0.38rem;
}
.index-page .about__section .wal .-top .-info .content ul li, .index-page .about__section .wal .-top .-info .content ol li {
  list-style: inherit;
  list-style-position: inside;
}
.index-page .about__section .wal .-top .-info .content p:has(video),
.index-page .about__section .wal .-top .-info .content p:has(img) {
  text-align: center;
}
.index-page .about__section .wal .-top .-info .content video,
.index-page .about__section .wal .-top .-info .content img {
  max-width: 100%;
}
.index-page .about__section .wal .-top .-info .foot {
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.index-page .about__section .wal .-top .-info .foot .icons {
  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;
  gap: 0.08rem;
}
.index-page .about__section .wal .-top .-info .foot .icons img {
  height: 0.48rem;
}
.index-page .about__section .wal .-bottom {
  margin-top: 0.96rem;
}
.index-page .about__section .wal .-bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.32rem;
}
.index-page .about__section .wal .-bottom ul li {
  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-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto;
  padding-bottom: 0.16rem;
  background-color: var(--kgu-c-bg-40);
}
.index-page .about__section .wal .-bottom ul li .-title {
  font-family: var(--sk-font-Medium);
  position: relative;
  padding: 0.24rem 0.24rem 0.16rem 0.24rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: var(--kgu-c-text-1);
}
.index-page .about__section .wal .-bottom ul li .-title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.24rem;
  bottom: 0;
  width: calc(100% - 0.24rem);
  height: 1px;
  background-color: #DCE4ED;
}
.index-page .about__section .wal .-bottom ul li .-count {
  font-family: var(--sk-font-Num);
  margin: 0.64rem 0.16rem 0 auto;
  font-size: 0.96rem;
  line-height: 1.04rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .index-page .index-banner .swiper-container {
    height: 9.6rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a {
    height: 9.6rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal {
    padding: 1.28rem 0.48rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box .title {
    text-align: center;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box .title em {
    font-size: 0.64rem;
    line-height: 0.8rem;
    letter-spacing: 0.03rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .wal .slide-box .btn-box {
    text-align: center;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-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;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span {
    width: 0.64rem;
    height: 0.04rem;
    margin-right: 0.08rem;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span:last-child {
    margin-right: 0;
  }
  .index-page .product__section .wal1792 {
    padding: 0.64rem 0 0;
  }
  .index-page .product__section .wal1792 .-head {
    padding: 0 0.48rem;
  }
  .index-page .product__section .wal1792 .-head .title {
    font-size: 0.4rem;
    line-height: 0.56rem;
  }
  .index-page .product__section .wal1792 .-body {
    position: relative;
    margin-top: 0.8rem;
  }
  .index-page .product__section .wal1792 .-body .-wrapper {
    width: 100%;
    height: 8.96rem;
    padding: 0.64rem;
    mix-blend-mode: multiply;
    overflow: hidden;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-info .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-info .context {
    max-width: 100%;
    text-align: center;
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-info .btns-box {
    margin-top: 0.48rem;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-list {
    position: relative;
    margin-top: 0.32rem;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container {
    overflow: visible;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper .swiper-slide {
    width: auto;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper .swiper-slide .img {
    width: 3.36rem;
    height: 3.36rem;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-list .swiper-container .swiper-wrapper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .index-page .product__section .wal1792 .-body .-wrapper .-list .arrow {
    display: none;
  }
  .index-page .scene__section {
    margin-top: 0.48rem;
  }
  .index-page .scene__section .wal1792 {
    position: relative;
    padding: 4.8rem 0 0;
    overflow: hidden;
  }
  .index-page .scene__section .wal1792 .-background::after {
    display: none;
  }
  .index-page .scene__section .wal1792 .-background img {
    height: 4.8rem;
  }
  .index-page .scene__section .wal1792 .-box {
    position: relative;
    padding: 0.32rem 0 0;
    height: auto;
    background: -webkit-linear-gradient(top, #030252 0%, #0207BB 100%);
    background: linear-gradient(to bottom, #030252 0%, #0207BB 100%);
  }
  .index-page .scene__section .wal1792 .-box .-nav {
    padding: 0 0.48rem;
  }
  .index-page .scene__section .wal1792 .-box .-nav .scroll-box .ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .index-page .scene__section .wal1792 .-box .-nav .scroll-box .ul::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.34);
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .scene__section .wal1792 .-box .-nav .scroll-box .ul .li {
    position: relative;
    width: auto;
    white-space: nowrap;
    font-size: 0.32rem;
    line-height: 0.48rem;
    color: rgba(255, 255, 255, 0.34);
    padding-bottom: 0.32rem;
    margin-right: 0.64rem;
  }
  .index-page .scene__section .wal1792 .-box .-nav .scroll-box .ul .li:last-child {
    margin-right: 0;
  }
  .index-page .scene__section .wal1792 .-box .-nav .scroll-box .ul .li::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0;
    background-color: white;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .scene__section .wal1792 .-box .-nav .scroll-box .ul .li.on {
    color: white;
  }
  .index-page .scene__section .wal1792 .-box .-nav .scroll-box .ul .li.on::after {
    opacity: 1;
  }
  .index-page .scene__section .wal1792 .-box ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 0 0.48rem;
  }
  .index-page .scene__section .wal1792 .-box ul li {
    display: none;
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: 100%;
    border-right: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .scene__section .wal1792 .-box ul li:first-child {
    border-left: 0;
  }
  .index-page .scene__section .wal1792 .-box ul li.on {
    display: block;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background-color: transparent;
  }
  .index-page .scene__section .wal1792 .-box ul li.on .info {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .index-page .scene__section .wal1792 .-box ul li.on .info .context,
  .index-page .scene__section .wal1792 .-box ul li.on .info .btn-box {
    opacity: 1;
  }
  .index-page .scene__section .wal1792 .-box ul li .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 4.48rem;
    padding: 0.48rem 0;
    color: white;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .scene__section .wal1792 .-box ul li .info .title {
    display: none;
  }
  .index-page .scene__section .wal1792 .-box ul li .info .context {
    text-align: left;
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin: 0 0 0.32rem;
  }
  .index-page .scene__section .wal1792 .-box ul li .info .btn-box {
    width: auto;
    margin-top: auto;
    text-align: center;
  }
  .index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn {
    width: auto;
  }
  .index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn a, .index-page .scene__section .wal1792 .-box ul li .info .btn-box .sk0-btn .a {
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.12rem 0.24rem;
  }
  .index-page .scene__section .wal1792 .-box ul li .info .context,
  .index-page .scene__section .wal1792 .-box ul li .info .btn-box {
    opacity: 1;
  }
  .index-page .solution__section .wal {
    padding-top: 0.96rem;
  }
  .index-page .solution__section .wal .-body {
    margin-top: 0.32rem;
  }
  .index-page .solution__section .wal .-body .-box {
    position: relative;
    padding: 3.84rem 0 0;
    height: auto;
  }
  .index-page .solution__section .wal .-body .-box .-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;
    height: 100%;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item {
    height: 1.44rem;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item.on {
    height: 100%;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .img {
    position: absolute;
    right: 0;
    top: 0;
    height: 3.84rem;
    max-width: 100%;
    width: 100%;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info {
    position: relative;
    padding: 0.32rem 0;
    height: 100%;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: auto;
    right: 0;
    width: calc(var(--progress) * 100%);
    height: 1px;
    background-color: var(--sk-global-color);
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .title-box {
    font-family: var(--sk-font-Medium);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.32rem;
    line-height: 0.8rem;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .title-box .icon {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.32rem;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .title-box .icon img {
    width: 0.48rem;
    height: 0.48rem;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .content {
    display: none;
    padding-top: 0.32rem;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.32rem 0;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul li {
    --color: var(--kgu-c-text-1);
    width: 50%;
    padding-right: 0.16rem;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    color: var(--color);
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .index-page .solution__section .wal .-body .-box .-list .-item .-info .content ul li a .icon {
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.16rem;
  }
  .index-page .contact__section {
    position: relative;
    margin-top: 0.96rem;
  }
  .index-page .contact__section .wal {
    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;
    padding-top: 0.96rem;
    padding-bottom: 0.96rem;
    height: auto;
    min-height: 4.32rem;
  }
  .index-page .contact__section .wal .-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    height: 100%;
  }
  .index-page .contact__section .wal .-box .title {
    text-align: center;
    font-size: 0.4rem;
    line-height: 0.56rem;
  }
  .index-page .contact__section .wal .-box .btn-box {
    margin-top: 0.48rem;
  }
  .index-page .faq__section .wal {
    padding-top: 0.96rem;
    padding-bottom: 0.96rem;
  }
  .index-page .faq__section .wal .-body {
    position: relative;
    margin-top: 0.32rem;
    padding-left: 0;
  }
  .index-page .faq__section .wal .-body .-left {
    display: none;
  }
  .index-page .faq__section .wal .-body .-list ul li {
    padding: 0.32rem;
    margin-top: 0.16rem;
  }
  .index-page .faq__section .wal .-body .-list ul li:first-child {
    margin-top: 0;
  }
  .index-page .faq__section .wal .-body .-list ul li .front {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .index-page .faq__section .wal .-body .-list ul li .front::after {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.48rem;
  }
  .index-page .faq__section .wal .-body .-list ul li .content {
    display: none;
    padding-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    padding-right: 0;
  }
  .index-page .about__section .wal {
    padding-top: 0.96rem;
  }
  .index-page .about__section .wal .-top {
    position: relative;
    padding-right: 0;
  }
  .index-page .about__section .wal .-top .-info .img {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 0.32rem;
  }
  .index-page .about__section .wal .-top .-info .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-page .about__section .wal .-top .-info .content {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .index-page .about__section .wal .-top .-info .foot {
    margin-top: 0.64rem;
  }
  .index-page .about__section .wal .-top .-info .foot .icons {
    gap: 0.08rem;
  }
  .index-page .about__section .wal .-top .-info .foot .icons img {
    height: 0.8rem;
  }
  .index-page .about__section .wal .-bottom {
    margin-top: 1.28rem;
  }
  .index-page .about__section .wal .-bottom ul {
    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;
  }
  .index-page .about__section .wal .-bottom ul li {
    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-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: auto;
    padding: 0.32rem;
    background-color: var(--kgu-c-bg-40);
  }
  .index-page .about__section .wal .-bottom ul li:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
  .index-page .about__section .wal .-bottom ul li .-title {
    padding: 0;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .index-page .about__section .wal .-bottom ul li .-title::after {
    display: none;
  }
  .index-page .about__section .wal .-bottom ul li .-count {
    margin: 0.32rem 0 0 auto;
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
}

@media screen and (max-width: 800px) {
  .sk0_banner {
    height: 5.28rem;
  }

  .sk0-crumbs .wal {
    padding-top: 0.16rem;
    padding-bottom: 0.16rem;
  }
  .sk0-crumbs .wal ul {
    max-width: 100%;
  }
  .sk0-crumbs .wal ul li a {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .sk0-crumbs .wal ul li a::after {
    margin: 0 0.16rem;
    font-size: 0.2rem;
  }

  .sk0_secondNav {
    top: 0.88rem;
  }
  .sk0_secondNav .wal .-box ul {
    width: 90%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .sk0_secondNav .wal .-box ul li {
    margin-right: auto;
  }
  .sk0_secondNav .wal .-box ul li a {
    padding: 0.24rem 0;
  }
  .sk0_secondNav .wal .-box ul li a::after {
    height: 0.02rem;
  }
  .sk0_secondNav .wal .-box ul li a h2 {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }

  .sk0-btn.-radius[data-size=small] a, .sk0-btn.-radius[data-size=small] .a {
    padding: 0.12rem 0.38rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
    border-radius: 0.32rem;
  }
  .sk0-btn.-radius a, .sk0-btn.-radius .a {
    padding: 0.16rem 0.44rem;
    border-radius: 0.64rem;
  }
  .sk0-btn a, .sk0-btn .a {
    padding: 0.16rem 1.28rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    border: 0.02rem solid var(--c-border);
  }
  .sk0-btn a .svg-ctx, .sk0-btn .a .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
    object-fit: contain;
    margin-right: 0.16rem;
  }

  .sidebar-open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -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;
    right: 0.3rem;
    top: 1.2rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: var(--sk-global-color);
    z-index: 5;
  }
  .sidebar-open::after {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    background: url(../images/catalog/base/icon/menu.svg) center center no-repeat;
    background-size: contain;
  }

  .sk0-head .title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
  .sk0-head .go-detail a {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .sk0-head .go-detail a img {
    width: 0.32rem;
    height: 0.32rem;
    margin-left: 0.16rem;
  }
}
