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

/*
 * 富文本初始化
 */
/* 全局样式变量 */
:root {
  --sk-font-Light: '';
  --sk-font-Regular: 'Fustat-Regular', Roboto, sans-serif;
  --sk-font-Medium: 'Fustat-Medium';
  --sk-font-Bold: 'Fustat-Bold';
  --sk-font-SemiBold: 'Fustat-SemiBold';
  --sk-font-Num: 'Inter_18pt-Bold';
  --headH: 1rem;
  /* 以下颜色根据设计稿的不同来设置 */
  --sk-global-color: #C30D23; /* -------------- 主题色 ---------------*/
  --fcolor-default: #333333; /* -------------- 字体默认色 ---------------*/
  --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/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: 1.2rem;
  overflow: auto;
}
.-scroll::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #666666;
}
.-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #666666;
}
.-scroll::-webkit-scrollbar-width {
  width: 0.08rem;
}
.-scroll::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
@media screen and (max-width: 800px) {
  .-scroll {
    max-height: 2.4rem;
  }
}

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

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

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

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

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

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

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

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

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

li {
  list-style: outside none;
}

li {
  list-style-type: none;
}

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

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

em {
  font-style: normal;
}

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

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

:root {
  --fiexd-classify-top: 1rem;
}

body.hide {
  --fiexd-classify-top: 0;
}

.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;
}

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

@keyframes qsacle {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.nala-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.nala-slider .surface,
.nala-slider .slide {
  width: 100%;
  height: 100%;
}
.nala-slider .slide {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.nala-slider .slide .block-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.text-hover {
  --color: white;
}
@media screen and (min-width: 800px) {
  .text-hover:hover span {
    background-size: 100% 100%;
    color: var(--color);
  }
}
.text-hover span {
  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);
}

.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;
}

.stickyHideContainer {
  --top: 0;
}
.stickyHideContainer .stickyHideItem {
  position: -webkit-sticky;
  position: sticky;
  top: var(--top);
}

.sk-section-title {
  font-family: var(--sk-font-Bold);
  text-transform: capitalize;
  font-size: 0.54rem;
  line-height: 0.68rem;
}
.sk-section-title em {
  color: var(--sk-global-color);
}

.sk0-btn {
  --min-width: 1.48rem;
  --height: .45rem;
  --font-size: 0.16rem;
  --icon-size: .2rem;
  --c-btn-text: white;
  --c-btn-text-hover: var(--sk-global-color);
  --c-btn-background: var(--sk-global-color);
  --c-btn-background-hover: white;
  --c-btn-border: var(--sk-global-color);
  --c-btn-border-hover: var(--sk-global-color);
  --c-btn-icon-background: #E6E6E6;
  --c-btn-icon-background-hover: var(--sk-global-color);
  --c-btn-icon-color: var(--sk-global-color);
  --c-btn-icon-color-hover: white;
}
.sk0-btn.grey-fill {
  --c-btn-text-hover: #7B859B;
  --c-btn-background: #7B859B;
  --c-btn-background-hover: white;
  --c-btn-border: #7B859B;
}
.sk0-btn.noArrow {
  --min-width: 2rem;
  --height: .56rem;
}
.sk0-btn.noArrow a .text, .sk0-btn.noArrow .a .text {
  padding: 0 0.43rem;
  border: 2px solid var(--c-btn-border);
}
.sk0-btn.noArrow a > .icon, .sk0-btn.noArrow .a > .icon {
  display: none;
}
.sk0-btn a, .sk0-btn .a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: var(--height);
}
.sk0-btn a .text, .sk0-btn .a .text {
  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;
  min-width: var(--min-width);
  height: 100%;
  padding: 0.2rem;
  background: var(--c-btn-background);
  color: var(--c-btn-text);
  font-size: var(--font-size);
  border: 2px solid var(--c-btn-border);
  border-right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk0-btn a .text::before, .sk0-btn .a .text::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: auto;
  right: 0;
  top: 0;
  background: var(--c-btn-background-hover);
  color: var(--c-btn-text-hover);
  border-color: var(--c-btn-border-hover);
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk0-btn a .text span, .sk0-btn .a .text span {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .sk0-btn a:hover .text, .sk0-btn .a:hover .text {
    color: var(--c-btn-text-hover);
  }
  .sk0-btn a:hover .text::before, .sk0-btn .a:hover .text::before {
    left: 0;
    right: auto;
    width: 100%;
  }
  .sk0-btn a:hover .icon, .sk0-btn .a:hover .icon {
    color: var(--c-btn-icon-color-hover);
  }
  .sk0-btn a:hover .icon::before, .sk0-btn .a:hover .icon::before {
    left: 0;
    right: auto;
    width: 100%;
  }
}
.sk0-btn a .icon, .sk0-btn .a .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--height);
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: var(--c-btn-icon-background);
  color: var(--c-btn-icon-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk0-btn a .icon.arrow-down .svg-ctx,
.sk0-btn a .icon.arrow-down img, .sk0-btn .a .icon.arrow-down .svg-ctx,
.sk0-btn .a .icon.arrow-down img {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sk0-btn a .icon::before, .sk0-btn .a .icon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: auto;
  right: 0;
  top: 0;
  background-color: var(--c-btn-icon-background-hover);
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk0-btn a .icon .svg-ctx,
.sk0-btn a .icon img, .sk0-btn .a .icon .svg-ctx,
.sk0-btn .a .icon img {
  position: relative;
  width: var(--icon-size);
  height: var(--icon-size);
  object-fit: contain;
  z-index: 1;
}
.sk0-btn a .icon .svg-ctx path, .sk0-btn a .icon .svg-ctx line,
.sk0-btn a .icon img path,
.sk0-btn a .icon img line, .sk0-btn .a .icon .svg-ctx path, .sk0-btn .a .icon .svg-ctx line,
.sk0-btn .a .icon img path,
.sk0-btn .a .icon img line {
  fill: none;
  stroke: currentColor;
}

.skSmoothScroll {
  --w: .08rem;
  --thumb-c: #D0D0D0;
  --track-c: #EEEEEE;
  --border-radius: 0.04rem;
  --padding-right: 0.3rem;
  width: calc(100% + var(--padding-right));
  padding-right: var(--padding-right);
  overflow: auto;
}
.skSmoothScroll:hover .scrollbar-track {
  opacity: 1;
}
.skSmoothScroll .scroll-content {
  padding-bottom: 0.6rem;
}
.skSmoothScroll .scrollbar-thumb {
  width: var(--w);
  background-color: var(--thumb-c);
  border-radius: var(--border-radius);
}
.skSmoothScroll .scrollbar-track {
  width: var(--w);
  background-color: var(--track-c);
  border-radius: var(--border-radius);
  -webkit-transition: opacity 0.5s 0.2s ease-out;
  transition: opacity 0.5s 0.2s ease-out;
}

.cookie-dialog {
  --c-backgroud: white;
  position: fixed;
  left: 0.25rem;
  bottom: 0.25rem;
  max-width: 8.81rem;
  width: 100%;
  z-index: 10;
  -webkit-transform: translate(0, 110%);
      -ms-transform: translate(0, 110%);
          transform: translate(0, 110%);
  border-radius: 0.24rem;
  background-color: var(--c-backgroud);
  box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cookie-dialog.show {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.cookie-dialog .-wrapper {
  padding: 0.45rem 0.6rem 0.3rem;
}
.cookie-dialog .-wrapper .title {
  font-family: var(--sk-font-Medium);
  font-size: 0.32rem;
  line-height: 1;
}
.cookie-dialog .-wrapper .context {
  font-size: 0.2rem;
  line-height: 0.3rem;
  margin-top: 0.18rem;
}
.cookie-dialog .-wrapper .context a {
  color: var(--sk-global-color);
  text-decoration: underline;
  font-size: inherit;
  line-height: inherit;
}
.cookie-dialog .-wrapper .btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.24rem;
  margin-top: 0.24rem;
}
.cookie-dialog .-wrapper .btn-box .sk0-btn {
  --min-width: 100%;
  --height: .67rem;
  --font-size: 0.24rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cookie-dialog .-wrapper .btn-box .sk0-btn a, .cookie-dialog .-wrapper .btn-box .sk0-btn .a {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .cookie-dialog {
    left: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0.24rem;
  }
  .cookie-dialog .-wrapper {
    padding: 0.6rem 0.4rem;
  }
  .cookie-dialog .-wrapper .title {
    font-family: var(--sk-font-Bold);
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .cookie-dialog .-wrapper .context {
    font-size: 0.26rem;
    line-height: 0.44rem;
    margin-top: 0.14rem;
  }
  .cookie-dialog .-wrapper .btn-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;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }
  .cookie-dialog .-wrapper .btn-box .sk0-btn {
    --min-width: 100%;
    --height: .96rem;
    --font-size: .32rem;
  }
}

.index-page .index-banner .swiper-container {
  position: relative;
  height: 100vh;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a, .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, .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, .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, .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.1);
  z-index: 1;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .slide-backgroud video, .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, .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, .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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 0.6rem;
  color: white;
  text-transform: capitalize;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal .slide-box .title, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a .inner .wal .slide-box .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.64rem;
  line-height: 0.8rem;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal .slide-box .title em, .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 .context, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a .inner .wal .slide-box .context {
  font-size: 0.3rem;
  line-height: 0.48rem;
  margin-top: 0.1rem;
  max-width: 8.8rem;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal .slide-box .-animate, .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 .product-head .wal {
  padding-top: 1rem;
  padding-bottom: 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;
}
.index-page .product-head .wal .sk-section-title {
  max-width: 9rem;
}
.index-page .product-head .wal .context {
  color: #666666;
  font-size: 0.2rem;
  line-height: 0.3rem;
  text-align: right;
  margin-top: 0.8rem;
  max-width: 5rem;
  -webkit-margin-start: 0.2rem;
     -moz-margin-start: 0.2rem;
          margin-inline-start: 0.2rem;
}
.index-page .product-box {
  --c-backgound: #FBFBFA;
  background-color: var(--c-backgound);
  overflow: hidden;
}
.index-page .product-box.reverse {
  --c-backgound: #F6F7F3;
}
.index-page .product-box.reverse .wal .content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.index-page .product-box.reverse .wal .content .-info {
  max-width: 50%;
}
.index-page .product-box.reverse .wal .content .-info .icons {
  display: block;
}
.index-page .product-box.reverse .wal .content .-info .icons ul {
  gap: 0.3rem 0.6rem;
}
.index-page .product-box.reverse .wal .content .-info .icons ul li {
  max-width: 33.33%;
}
.index-page .product-box.reverse .wal .content .-right .icons {
  display: none;
}
.index-page .product-box .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 7rem;
}
.index-page .product-box .wal .bg-text {
  font-family: var(--sk-font-Bold);
  --c-text: white;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--c-text);
  text-transform: uppercase;
  z-index: 0;
}
.index-page .product-box .wal .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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.32rem 0;
  z-index: 1;
}
.index-page .product-box .wal .content .icons 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;
  gap: 0.6rem;
}
.index-page .product-box .wal .content .icons 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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
}
.index-page .product-box .wal .content .icons ul li img {
  width: 0.64rem;
  height: 0.64rem;
  object-fit: contain;
  margin-bottom: 0.1rem;
}
.index-page .product-box .wal .content .-info {
  max-width: 40%;
  width: 100%;
}
.index-page .product-box .wal .content .-info .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.48rem;
  line-height: 0.54rem;
  color: #7B859B;
}
.index-page .product-box .wal .content .-info .title em {
  color: var(--sk-global-color);
}
.index-page .product-box .wal .content .-info .context {
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #1C1C1C;
  margin-top: 0.32rem;
}
.index-page .product-box .wal .content .-info .icons {
  display: none;
  margin-top: 0.43rem;
}
.index-page .product-box .wal .content .-info .icons ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.index-page .product-box .wal .content .-info .btn-box {
  margin-top: 0.43rem;
}
.index-page .product-box .wal .content .-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.index-page .product-box .wal .content .-right .img-swiper .swiper-container {
  width: 5.8rem;
  height: 4.4rem;
  overflow: hidden;
}
.index-page .product-box .wal .content .-right .img-swiper .swiper-container .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .product-box .wal .content .-right .img-swiper .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;
  width: 100%;
  margin-top: 0.1rem;
  gap: 0.1rem;
}
.index-page .product-box .wal .content .-right .img-swiper .dots span {
  cursor: pointer;
  width: 0.14rem;
  height: 0.14rem;
  background-color: #E6E6E6;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .product-box .wal .content .-right .img-swiper .dots span.swiper-pagination-bullet-active {
  background-color: var(--sk-global-color);
}
.index-page .product-box .wal .content .-right .icons {
  -webkit-margin-start: 0.16rem;
     -moz-margin-start: 0.16rem;
          margin-inline-start: 0.16rem;
  max-width: 2rem;
}
.index-page .product-box .wal .content .-right .icons 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;
  gap: 0.6rem;
}
.index-page .product-box .wal .content .-right .icons 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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.index-page .product-box .wal .content .-right .icons ul li img {
  width: 0.64rem;
  height: 0.64rem;
  object-fit: contain;
  margin-bottom: 0.1rem;
}
.index-page .production-process {
  position: relative;
}
.index-page .production-process .-background {
  z-index: 1;
  overflow: hidden;
}
.index-page .production-process .-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .production-process .wal {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 0.9rem;
  height: auto;
  z-index: 2;
}
.index-page .production-process .wal .-body {
  margin-top: 1.16rem;
}
.index-page .production-process .wal .-body .img {
  width: 100%;
  height: 4.72rem;
  object-fit: contain;
}
.index-page .production-process .wal .-body .btn-box {
  margin-top: 0.68rem;
  text-align: center;
}
.index-page .future-section .content-box .wal {
  position: relative;
  padding: 1.2rem 0;
  min-height: 7.37rem;
}
.index-page .future-section .content-box .wal .bg-video {
  position: absolute;
  width: 50%;
  height: 7.31rem;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 0;
}
.index-page .future-section .content-box .wal .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .future-section .content-box .wal .info {
  position: relative;
  max-width: 50%;
  width: 100%;
  z-index: 1;
}
.index-page .future-section .content-box .wal .info .context {
  max-width: 80%;
  margin-top: 0.37rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
}
.index-page .future-section .content-box .wal .info .btn-box {
  margin-top: 0.43rem;
}
.index-page .future-section .count-box {
  position: relative;
}
.index-page .future-section .count-box .-background {
  z-index: 0;
}
.index-page .future-section .count-box .wal {
  position: relative;
  z-index: 1;
  padding-top: 1.37rem;
  padding-bottom: 1.18rem;
}
.index-page .future-section .count-box .wal .list {
  padding: 1.3rem 0;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(0.02rem);
}
.index-page .future-section .count-box .wal .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.index-page .future-section .count-box .wal .list 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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.2rem;
}
.index-page .future-section .count-box .wal .list ul li .-num {
  font-family: var(--sk-font-Num);
  font-size: 0.96rem;
  line-height: 1;
  color: var(--sk-global-color);
  margin-bottom: 0.24rem;
}
.index-page .future-section .count-box .wal .list ul li .text {
  font-size: 0.2rem;
  line-height: 0.3rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .index-page .index-banner .swiper-container {
    height: 10.58rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a {
    height: 10.58rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a .inner .wal {
    padding: 0 0.4rem;
    height: 100%;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal .slide-box, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a .inner .wal .slide-box {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 1.8rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal .slide-box .context, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a .inner .wal .slide-box .context {
    line-height: 0.4rem;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal .slide-box .btn-box, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a .inner .wal .slide-box .btn-box {
    display: none;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide > a .inner .wal .slide-box .btn-box .sk0-btn, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .a .inner .wal .slide-box .btn-box .sk0-btn {
    --height: .92rem;
    --icon-size: .4rem;
  }
  .index-page .product-head .wal {
    padding-top: 0.68rem;
    padding-bottom: 0.74rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .index-page .product-head .wal .sk-section-title {
    max-width: 100%;
  }
  .index-page .product-head .wal .context {
    display: none;
  }
  .index-page .product-box.reverse {
    --c-backgound: #F6F7F3;
  }
  .index-page .product-box.reverse .wal .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .index-page .product-box.reverse .wal .content .-info {
    max-width: 100%;
  }
  .index-page .product-box.reverse .wal .content .-info .icons {
    display: none;
  }
  .index-page .product-box.reverse .wal .content .-right .icons {
    display: block;
  }
  .index-page .product-box .wal {
    height: auto;
    min-height: auto;
    padding-bottom: 0.82rem;
  }
  .index-page .product-box .wal .bg-text {
    font-size: 1.2rem;
    line-height: 1;
  }
  .index-page .product-box .wal .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0;
    height: 100%;
    z-index: 1;
  }
  .index-page .product-box .wal .content .icons 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;
    gap: 0.6rem;
  }
  .index-page .product-box .wal .content .icons 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-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .index-page .product-box .wal .content .icons ul li img {
    width: 0.64rem;
    height: 0.64rem;
    object-fit: contain;
    margin-bottom: 0.1rem;
  }
  .index-page .product-box .wal .content .-info {
    max-width: 100%;
    width: 100%;
    margin-top: 0.86rem;
  }
  .index-page .product-box .wal .content .-info .title {
    font-size: 0.4rem;
    line-height: 1.2;
  }
  .index-page .product-box .wal .content .-info .context {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    font-size: 0.26rem;
    line-height: 0.44rem;
    margin-top: 0.32rem;
  }
  .index-page .product-box .wal .content .-info .icons {
    display: none;
  }
  .index-page .product-box .wal .content .-info .btn-box {
    margin-top: 0.32rem;
  }
  .index-page .product-box .wal .content .-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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 0.32rem;
  }
  .index-page .product-box .wal .content .-right .img-swiper {
    position: relative;
    width: 100%;
  }
  .index-page .product-box .wal .content .-right .img-swiper .swiper-container {
    width: 100%;
    height: 4.54rem;
    overflow: hidden;
    margin: 0;
  }
  .index-page .product-box .wal .content .-right .img-swiper .swiper-container .swiper-wrapper {
    width: 100%;
  }
  .index-page .product-box .wal .content .-right .img-swiper .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    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;
  }
  .index-page .product-box .wal .content .-right .img-swiper .swiper-container .swiper-wrapper .swiper-slide .img {
    width: 100%;
    height: 100%;
  }
  .index-page .product-box .wal .content .-right .img-swiper .swiper-container .swiper-wrapper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .index-page .product-box .wal .content .-right .img-swiper .dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 0;
    top: 1.32rem;
    -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;
    width: 0.21rem;
    margin-top: 0;
    gap: 0.22rem;
    z-index: 1;
  }
  .index-page .product-box .wal .content .-right .img-swiper .dots span {
    width: 0.21rem;
    height: 0.21rem;
  }
  .index-page .product-box .wal .content .-right .icons {
    width: 100%;
    margin: 0.14rem 0 0;
    max-width: 100%;
  }
  .index-page .product-box .wal .content .-right .icons ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.48rem;
  }
  .index-page .product-box .wal .content .-right .icons ul li {
    text-align: center;
    width: 100%;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .index-page .product-box .wal .content .-right .icons ul li img {
    width: 0.7rem;
    height: 0.7rem;
    margin-bottom: 0.14rem;
  }
  .index-page .production-process .wal {
    padding-top: 1.16rem;
    padding-bottom: 1rem;
    height: auto;
    min-height: 100vh;
    z-index: 2;
  }
  .index-page .production-process .wal .-body {
    margin-top: 0.92rem;
  }
  .index-page .production-process .wal .-body .img {
    width: 100%;
    height: auto;
  }
  .index-page .production-process .wal .-body .img img {
    min-height: 6rem;
  }
  .index-page .production-process .wal .-body .btn-box {
    margin-top: 1rem;
    text-align: center;
  }
  .index-page .future-section .content-box .wal {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.9rem 0.4rem 0;
    min-height: auto;
  }
  .index-page .future-section .content-box .wal .bg-video {
    position: static;
    width: 100%;
    height: 7.31rem;
    top: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .index-page .future-section .content-box .wal .info {
    max-width: 100%;
  }
  .index-page .future-section .content-box .wal .info .context {
    max-width: 100%;
    margin-top: 0.44rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .index-page .future-section .content-box .wal .info .btn-box {
    margin-top: 0.48rem;
  }
  .index-page .future-section .count-box {
    position: relative;
  }
  .index-page .future-section .count-box .-background {
    z-index: 0;
  }
  .index-page .future-section .count-box .wal {
    position: relative;
    z-index: 1;
    padding-top: 0.92rem;
    padding-bottom: 0.86rem;
  }
  .index-page .future-section .count-box .wal .list {
    padding: 0.96rem 0;
    backdrop-filter: blur(0.1rem);
  }
  .index-page .future-section .count-box .wal .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    gap: 0.64rem 0;
  }
  .index-page .future-section .count-box .wal .list ul li {
    width: 45%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.1rem;
  }
  .index-page .future-section .count-box .wal .list ul li .-num {
    font-size: 0.74rem;
    margin-bottom: 0;
  }
  .index-page .future-section .count-box .wal .list ul li .text {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}

.product-page .fiexd-classify-box {
  position: fixed;
  top: var(--fiexd-classify-top);
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0.04rem);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-page .fiexd-classify-box.show {
  opacity: 1;
  visibility: visible;
}
.product-page .fiexd-classify-box.align-center .wal .swiper-container .swiper-wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-page .fiexd-classify-box .wal {
  max-width: 100%;
  padding: 0 0.64rem;
  overflow: hidden;
}
.product-page .fiexd-classify-box .wal .swiper-container {
  overflow: visible;
}
.product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide {
  width: auto;
  -webkit-margin-end: 0.73rem;
     -moz-margin-end: 0.73rem;
          margin-inline-end: 0.73rem;
}
.product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide:last-child {
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
}
.product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide 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;
  min-height: 0.76rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: white;
}
.product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide.on a {
  color: var(--sk-global-color);
}
@media screen and (min-width: 800px) {
  .product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide:hover a {
    color: var(--sk-global-color);
  }
}
.product-page .page-box .page-head .wal {
  padding-top: 2.04rem;
}
.product-page .page-box .page-head .wal .classify-box {
  margin-top: 0.64rem;
  overflow: hidden;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide {
  width: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-margin-end: 0.48rem;
     -moz-margin-end: 0.48rem;
          margin-inline-end: 0.48rem;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide:last-child {
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide.on a {
  color: var(--sk-global-color);
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide.on a .img img {
  display: none;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide.on a .img img.on {
  display: block;
}
@media screen and (min-width: 800px) {
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide:hover a {
    color: var(--sk-global-color);
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide:hover a .img img {
    display: none;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide:hover a .img img.on {
    display: block;
  }
}
.product-page .page-box .page-head .wal .classify-box .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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: none;
  transition: none;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 80%;
  height: 0.64rem;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a .img img {
  min-height: 0.4rem;
  max-height: 0.64rem;
  object-fit: contain;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a .img img.on {
  display: none;
}
.product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a span {
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin-top: 0.24rem;
  text-align: center;
}
.product-page .page-box .page-body .page-content {
  display: none;
}
.product-page .page-box .page-body .page-content.on {
  display: block;
}
.product-page .page-box .page-body .page-content .top-product .wal {
  position: relative;
  padding-top: 1.58rem;
  padding-bottom: 0.91rem;
}
.product-page .page-box .page-body .page-content .top-product .wal .info {
  max-width: 45%;
}
.product-page .page-box .page-body .page-content .top-product .wal .info .img {
  position: absolute;
  top: 0.38rem;
  right: 0;
  max-width: 8.13rem;
  width: 100%;
  height: 5.7rem;
  z-index: -1;
}
.product-page .page-box .page-body .page-content .top-product .wal .info .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-page .page-box .page-body .page-content .top-product .wal .info .context {
  margin-top: 0.4rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #1C1C1C;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info {
  margin-top: 1.1rem;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .title {
  font-family: var(--sk-font-Bold);
  max-width: 45%;
  font-size: 0.36rem;
  line-height: 0.4rem;
  color: #7B859B;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list {
  --dotWidth: 0.12rem;
  margin-top: 0.6rem;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.6rem 0.4rem;
  min-height: 3.5rem;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0.15rem;
  width: 1px;
  height: calc(100% - 0.3rem);
  border-radius: 50%;
  background-color: #D5E3F9;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(0.15rem + var(--dotWidth) / 2);
  width: calc(100% - 0.3rem - var(--dotWidth) / 2);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot .dot-left::before {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot .dot-left::after {
  -webkit-transform: translate(0, 50%);
      -ms-transform: translate(0, 50%);
          transform: translate(0, 50%);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child::after {
  display: none;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.15rem;
  width: calc(100% - 0.3rem - var(--dotWidth) / 2);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot .dot-right {
  display: block;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before,
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--dotWidth);
  height: var(--dotWidth);
  border: 1px solid var(--sk-global-color);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right {
  display: none;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(0, 50%);
      -ms-transform: translate(0, 50%);
          transform: translate(0, 50%);
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.15rem;
  top: 0;
  width: calc(100% - 0.3rem);
  height: 1px;
  border-radius: 50%;
  background-color: #D5E3F9;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::after {
  top: auto;
  bottom: 0;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .name-box {
  font-family: var(--sk-font-Bold);
  display: -webkit-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.24rem;
  line-height: 0.4rem;
  color: #7B859B;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .name-box img {
  width: 0.3rem;
  height: 0.3rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  object-fit: contain;
  -webkit-margin-end: 0.08rem;
     -moz-margin-end: 0.08rem;
          margin-inline-end: 0.08rem;
}
.product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .text {
  margin-top: 0.48rem;
  color: #1C1C1C;
  font-size: 0.2rem;
  line-height: 0.3rem;
}
.product-page .page-box .page-body .page-content .product-box {
  --c-background: #F6F7F3;
  background-color: var(--c-background);
}
.product-page .page-box .page-body .page-content .product-box:nth-child(2n) {
  --c-background: #FBFBFA;
}
.product-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal {
  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;
}
.product-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal .info .swiper-imgs {
  left: 0;
  right: auto;
}
.product-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal .info .params-list::before {
  background: url(../images/product/line-left.svg) center center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-0.52rem, 0);
      -ms-transform: translate(-0.52rem, 0);
          transform: translate(-0.52rem, 0);
}
.product-page .page-box .page-body .page-content .product-box .wal {
  position: relative;
  padding-top: 1.1rem;
  padding-bottom: 0.64rem;
  min-height: 6.5rem;
}
.product-page .page-box .page-body .page-content .product-box .wal .info {
  max-width: 7.1rem;
  width: 100%;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs {
  position: absolute;
  right: 0;
  top: 0;
  width: 8.1rem;
  height: 6.5rem;
  overflow: hidden;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 100%;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .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;
  left: 0;
  bottom: 0.54rem;
  width: 100%;
  gap: 0.1rem;
  z-index: 2;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .dots span {
  cursor: pointer;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background-color: #E6E6E6;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .dots span.swiper-pagination-bullet-active {
  background-color: var(--sk-global-color);
}
.product-page .page-box .page-body .page-content .product-box .wal .info .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.36rem;
  line-height: 0.4rem;
  color: #7B859B;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .title em {
  color: var(--sk-global-color);
}
.product-page .page-box .page-body .page-content .product-box .wal .info .context {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #1C1C1C;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .btn-box {
  margin-top: 0.24rem;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .params-list {
  position: relative;
  padding-top: 0.32rem;
  margin-top: 0.3rem;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .params-list::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 7.63rem;
  height: 0.3rem;
  background: url(../images/product/line-right.svg) center center no-repeat;
  background-size: contain;
  z-index: -1;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .params-list 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.2rem 0.2rem;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .params-list ul li {
  width: calc((100% - 0.4rem) / 3);
  font-size: 0.2rem;
  line-height: 0.3rem;
  word-break: break-word;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .download-btn {
  margin-top: 0.48rem;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .download-btn 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.2rem;
  line-height: 0.3rem;
  color: #7B859B;
}
.product-page .page-box .page-body .page-content .product-box .wal .info .download-btn a:hover {
  color: var(--sk-global-color);
}
.product-page .page-box .page-body .page-content .product-box .wal .info .download-btn a img {
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
  -webkit-margin-start: 0.15rem;
     -moz-margin-start: 0.15rem;
          margin-inline-start: 0.15rem;
}
.product-page .page-box .page-body .page-content .main-applications .wal {
  padding-top: 1.2rem;
  padding-bottom: 0.84rem;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.55rem;
  border-top: 1px solid #D5E3F9;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left {
  max-width: 4rem;
  width: 100%;
  height: auto;
  min-height: 4rem;
  padding: 0.59rem 0.1rem 0.65rem 0;
  border-right: 1px solid #D5E3F9;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .title {
  font-size: 0.24rem;
  line-height: 0.3rem;
  color: #000;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list {
  position: relative;
  margin-top: 0.26rem;
  height: 100%;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: auto;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #D0D0D0;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner::-webkit-scrollbar-thumb:vertical {
  background-color: #D0D0D0;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner::-webkit-scrollbar-width {
  width: 0.08rem;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li {
  position: relative;
  padding-left: 0.24rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  margin-top: 0.24rem;
  color: #7B859B;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li:first-child {
  margin-top: 0;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 0.08rem;
  height: 0.08rem;
  background-color: var(--sk-global-color);
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.57rem 0 0.38rem 1.12rem;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box {
  position: relative;
  pointer-events: none;
  max-width: 7.92rem;
  width: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .img {
  width: 100%;
  height: auto;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot {
  --top: 20%;
  --left: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -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: var(--top);
  left: var(--left);
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot em {
  display: block;
  position: relative;
  width: 0.16rem;
  height: 0.16rem;
  background-color: var(--sk-global-color);
  border-radius: 50%;
  z-index: 1;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot::before, .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgb(213, 227, 249);
  -webkit-animation: qsacle 2.5s linear infinite;
          animation: qsacle 2.5s linear infinite;
  z-index: 0;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot::after {
  -webkit-transform: scale(0.3);
      -ms-transform: scale(0.3);
          transform: scale(0.3);
  -webkit-animation: qsacle 2.5s 1.5s linear infinite;
          animation: qsacle 2.5s 1.5s linear infinite;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips {
  -webkit-margin-start: 0.32rem;
     -moz-margin-start: 0.32rem;
          margin-inline-start: 0.32rem;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner {
  font-family: var(--sk-font-Bold);
  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;
  font-size: 0.24rem;
  line-height: 0.4rem;
  color: #7B859B;
  padding-left: 0.3rem;
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner .dot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -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;
  left: 0;
  top: 0.2rem;
  background-color: rgba(213, 227, 249, 0.8);
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner .dot em {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background-color: var(--sk-global-color);
}
.product-page .page-box .page-body .page-content .support-box .wal {
  max-width: 100%;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li {
  --c-background: var(--sk-global-color);
  --c-text: rgba(255, 255, 255, 0.70);
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 33.33%;
  background-color: var(--c-background);
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li:first-child a {
  padding-left: 1.47rem;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li:last-child a {
  padding-right: 1.47rem;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li[c-background=lightblue] {
  --c-background: #BECBE0;
  --c-text: white;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 0.4rem;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li a .icon {
  width: 1.6rem;
  height: 1.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li a .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li a .content {
  max-width: 60%;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li a .content .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.28rem;
  line-height: 0.4rem;
  color: white;
}
.product-page .page-box .page-body .page-content .support-box .wal .list ul li a .content .text {
  margin-top: 0.09rem;
  font-size: 0.2rem;
  line-height: 0.26rem;
  color: var(--c-text);
}
@media screen and (max-width: 800px) {
  .product-page .fiexd-classify-box {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .product-page .fiexd-classify-box .wal {
    max-width: 100%;
    padding: 0 0.4rem;
  }
  .product-page .fiexd-classify-box .wal .swiper-container {
    overflow: visible;
  }
  .product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide {
    -webkit-margin-end: 0.64rem;
       -moz-margin-end: 0.64rem;
            margin-inline-end: 0.64rem;
  }
  .product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide:last-child {
    -webkit-margin-end: 0;
       -moz-margin-end: 0;
            margin-inline-end: 0;
  }
  .product-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide 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;
    min-height: 1.2rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: white;
  }
  .product-page .page-box .page-head .wal {
    padding-top: 1.88rem;
  }
  .product-page .page-box .page-head .wal .sk-section-title {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
  .product-page .page-box .page-head .wal .classify-box {
    margin-top: 0.86rem;
    overflow: hidden;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide {
    width: auto;
    -webkit-margin-end: 0.9rem;
       -moz-margin-end: 0.9rem;
            margin-inline-end: 0.9rem;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide:last-child {
    -webkit-margin-end: 0;
       -moz-margin-end: 0;
            margin-inline-end: 0;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a .img {
    max-width: 80%;
    height: 0.9rem;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a .img img {
    min-height: 0.8rem;
    max-height: 0.9rem;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a span {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-top: 0.24rem;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control {
    position: relative;
    padding: 0 0.5rem;
    height: 0.47rem;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .prev,
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .next {
    position: absolute;
    width: 0.47rem;
    height: 0.47rem;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .prev img,
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .next {
    left: auto;
    right: 0;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress {
    --progress: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin-top: 0.52rem;
    padding: 0 0.2rem;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .min-size {
    font-size: 0.24rem;
    line-height: 0.39rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .progress-line {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
    background-color: #D5E3F9;
    margin: 0 0.18rem;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .progress-line::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: calc(var(--progress) * 100%);
    height: 5px;
    background-color: #D5E3F9;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    -webkit-transition: none;
    transition: none;
  }
  .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .max-size {
    font-size: 0.24rem;
    line-height: 0.39rem;
    color: #7B859B;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .product-page .page-box .page-body .page-content .top-product .wal {
    position: relative;
    padding-top: 1.58rem;
    padding-bottom: 0.91rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .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;
    max-width: 100%;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .info .img {
    position: static;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 4rem;
    z-index: -1;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .info .name {
    margin-top: 0.62rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .info .context {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info {
    margin-top: 0.36rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .title {
    max-width: 100%;
    font-size: 0.4rem;
    line-height: 0.56rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list {
    --dotWidth: 0.16rem;
    margin-top: 0.56rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .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;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li {
    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;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    padding: 0.6rem 0.2rem;
    min-height: 3.42rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li::after {
    right: 0;
    top: 0;
    left: 0.15rem;
    width: calc(100% - 0.3rem);
    height: 1px;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li::before {
    content: "";
    display: block;
    position: absolute;
    display: none;
    bottom: 0;
    left: 0.15rem;
    width: calc(100% - 0.3rem);
    height: 1px;
    background-color: #D5E3F9;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::after {
    left: 0;
    top: 0.15rem;
    width: 1px;
    height: calc(100% - 0.3rem);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::after {
    left: auto;
    right: 0;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot .dot-left::before {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot .dot-left::after {
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child::after, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child::before {
    display: block;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::after {
    left: 0;
    top: 0.15rem;
    width: 1px;
    height: calc(100% - 0.3rem);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::after {
    left: auto;
    right: 0;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot .dot-right {
    display: block;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot .dot-right::before {
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot .dot-right::after {
    -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before,
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right {
    display: none;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::before, .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::after {
    left: 0;
    top: 0.15rem;
    width: 1px;
    height: calc(100% - 0.3rem);
    border-radius: 0;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::after {
    top: 0.15rem;
    right: 0;
    left: auto;
    bottom: auto;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .name-box {
    font-size: 0.32rem;
    line-height: 0.52rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .name-box img {
    width: 0.6rem;
    height: 0.6rem;
    -webkit-margin-end: 0.18rem;
       -moz-margin-end: 0.18rem;
            margin-inline-end: 0.18rem;
  }
  .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .text {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .product-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal .info .params-list::before {
    background: url(../images/product/line-left.svg) center center no-repeat;
    background-size: contain;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .product-page .page-box .page-body .page-content .product-box .wal {
    padding-top: 0;
    padding-bottom: 1.16rem;
    min-height: auto;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info {
    max-width: 100%;
    width: 100%;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs {
    position: relative;
    width: 100%;
    height: auto;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .swiper-wrapper .swiper-slide {
    height: 4.25rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .dots {
    position: static;
    gap: 0.22rem;
    margin-top: 0.24rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs .dots span {
    width: 0.22rem;
    height: 0.22rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .title {
    font-size: 0.32rem;
    line-height: 0.52rem;
    margin-top: 0.62rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .context {
    margin-top: 0.26rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .btn-box {
    margin-top: 0.42rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .params-list {
    position: relative;
    padding-top: 0.58rem;
    margin-top: 0.64rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .params-list::before {
    width: 100%;
    height: 0.58rem;
    background: url(../images/product/line-right.svg) center center no-repeat;
    background-size: contain;
    z-index: -1;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .params-list ul {
    gap: 0.24rem 0.1rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .params-list ul li {
    width: calc((100% - 0.1rem) / 2);
    font-size: 0.28rem;
    line-height: 0.44rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .download-btn {
    margin-top: 0.32rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .download-btn a {
    font-size: 0.28rem;
    line-height: 0.6rem;
  }
  .product-page .page-box .page-body .page-content .product-box .wal .info .download-btn a img {
    width: 0.4rem;
    height: 0.4rem;
    -webkit-margin-start: 0.2rem;
       -moz-margin-start: 0.2rem;
            margin-inline-start: 0.2rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal {
    padding: 0.76rem 0 0.48rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-head {
    padding: 0 0.4rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.18rem;
    border-top: 0;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left {
    max-width: 100%;
    width: 100%;
    padding: 0 0.4rem 0.28rem;
    min-height: 100%;
    border: none;
    border-bottom: 1px solid #D5E3F9;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .title {
    font-size: 0.32rem;
    line-height: 0.6rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list {
    margin-top: 0.18rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner {
    position: static;
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li {
    position: relative;
    padding-left: 0;
    font-size: 0.26rem;
    line-height: 0.32rem;
    margin-top: 0.16rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li:first-child {
    margin-top: 0;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li::before {
    display: none;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.66rem 0.4rem 0;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box {
    max-width: 100%;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot {
    width: 0.64rem;
    height: 0.64rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot em {
    width: 0.13rem;
    height: 0.13rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips {
    margin: 0.64rem 0 0;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner {
    font-size: 0.28rem;
    line-height: 0.44rem;
    padding-left: 0.4rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner .dot {
    top: 0.2rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner .dot em {
    width: 0.12rem;
    height: 0.12rem;
  }
  .product-page .page-box .page-body .page-content .support-box {
    display: none;
  }
}

.technology-page .-service .wrapper {
  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;
  padding-top: 2.04rem;
}
.technology-page .-service .wrapper .img {
  width: 100%;
  height: 5rem;
  margin-top: 0.4rem;
}
.technology-page .-service .wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-page .-rd .wal {
  padding-top: 1.33rem;
}
.technology-page .-rd .wal .-body {
  margin-top: 0.5rem;
}
.technology-page .-rd .wal .-body .content-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.technology-page .-rd .wal .-body .content-list ul li {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 20%;
  padding: 0 0 0.1rem 0.28rem;
  min-height: 1.6rem;
}
.technology-page .-rd .wal .-body .content-list ul li .dot-line {
  --top: calc(0.32rem / 2 - .12rem / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: var(--top);
  left: 0;
  height: calc(100% - var(--top));
  width: 0.12rem;
}
.technology-page .-rd .wal .-body .content-list ul li .dot-line em {
  width: 0.12rem;
  height: 0.12rem;
  border: 1px solid var(--sk-global-color);
  border-radius: 50%;
}
.technology-page .-rd .wal .-body .content-list ul li .dot-line .line {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1px;
  background-color: #D5E3F9;
}
.technology-page .-rd .wal .-body .content-list ul li .dot-line .line::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 0.3rem;
  width: 100%;
  background-color: var(--sk-global-color);
}
.technology-page .-rd .wal .-body .content-list ul li .inner {
  max-width: 80%;
  height: 100%;
}
.technology-page .-rd .wal .-body .content-list ul li .inner .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #7B859B;
}
.technology-page .-rd .wal .-body .content-list ul li .inner .context {
  margin-top: 0.08rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #1C1C1C;
}
.technology-page .-rd .wal .-body .img-swiper {
  margin-top: 0.64rem;
  position: relative;
  z-index: 0;
}
.technology-page .-rd .wal .-body .img-swiper .swiper-container .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 6.13rem;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.technology-page .-rd .wal .-body .img-swiper .swiper-container .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 100%;
}
.technology-page .-rd .wal .-body .img-swiper .swiper-container .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.technology-page .-rd .wal .-body .img-swiper .img-list {
  width: 100%;
  height: 6.13rem;
}
.technology-page .-rd .wal .-body .img-swiper .img-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-page .-rd .wal .-body .img-swiper .arrow .prev, .technology-page .-rd .wal .-body .img-swiper .arrow .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0.32rem;
  width: 0.36rem;
  height: 0.6rem;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
}
.technology-page .-rd .wal .-body .img-swiper .arrow .prev img, .technology-page .-rd .wal .-body .img-swiper .arrow .next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.technology-page .-rd .wal .-body .img-swiper .arrow .next {
  right: 0.32rem;
  left: auto;
}
.technology-page .-equipment .wal {
  padding-top: 1.35rem;
  padding-bottom: 1.33rem;
}
.technology-page .-equipment .wal .-body {
  margin-top: 0.28rem;
}
@media screen and (min-width: 800px) {
  .technology-page .-equipment .wal .-body .list.firstFill ul li:first-child {
    width: 100%;
    gap: 0.14rem;
  }
  .technology-page .-equipment .wal .-body .list.firstFill ul li:first-child:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .technology-page .-equipment .wal .-body .list.firstFill ul li:first-child .info .content .context {
    min-height: auto;
  }
  .technology-page .-equipment .wal .-body .list.firstFill ul li:first-child .info, .technology-page .-equipment .wal .-body .list.firstFill ul li:first-child .img {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 calc((100% - 0.14rem) / 2);
        -ms-flex: 1 0 calc((100% - 0.14rem) / 2);
            flex: 1 0 calc((100% - 0.14rem) / 2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media screen and (min-width: 800px) and (min-width: 800px) {
  .technology-page .-equipment .wal .-body .list.firstFill ul li:first-child .info:hover, .technology-page .-equipment .wal .-body .list.firstFill ul li:first-child .img:hover {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.technology-page .-equipment .wal .-body .list 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.14rem;
}
.technology-page .-equipment .wal .-body .list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 0.14rem) / 2);
  min-height: 4.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .technology-page .-equipment .wal .-body .list ul li:hover {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.technology-page .-equipment .wal .-body .list ul li .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-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  height: 100%;
  background-color: #F6F7F3;
  padding: 0.4rem 0.1rem 0.4rem 0.4rem;
}
.technology-page .-equipment .wal .-body .list ul li .info .icon {
  width: 0.18rem;
  height: 0.18rem;
  color: var(--sk-global-color);
}
.technology-page .-equipment .wal .-body .list ul li .info .icon .svg-ctx {
  width: 100%;
  height: 100%;
}
.technology-page .-equipment .wal .-body .list ul li .info .icon .svg-ctx rect {
  fill: currentColor;
}
.technology-page .-equipment .wal .-body .list ul li .info .content .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.28rem;
  line-height: 0.4rem;
  color: #7B859B;
}
.technology-page .-equipment .wal .-body .list ul li .info .content .context {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #1C1C1C;
  min-height: 0.9rem;
}
.technology-page .-equipment .wal .-body .list ul li .img {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  height: 100%;
}
.technology-page .-equipment .wal .-body .list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-page .-quality {
  background-color: #FAFAFA;
  overflow: hidden;
}
.technology-page .-quality .wal {
  padding-top: 0.76rem;
  padding-bottom: 1.43rem;
  min-height: 9.6rem;
}
.technology-page .-quality .wal .-body {
  position: relative;
  margin-top: 0.5rem;
  padding-top: 0.78rem;
}
.technology-page .-quality .wal .-body .background-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  top: 0;
  left: 0;
  z-index: 0;
}
.technology-page .-quality .wal .-body .background-text .scroll-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.technology-page .-quality .wal .-body .background-text .scroll-text .text {
  font-family: var(--sk-font-Bold);
  padding: 0 0.1rem;
  font-size: 1.26rem;
  color: white;
  white-space: nowrap;
  text-transform: uppercase;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container {
  --activeWidth: 5.94rem;
  --defaultWidth: 5.14rem;
  --gap: 0.4rem;
  width: var(--activeWidth);
  height: 4.27rem;
  margin: 0 auto;
  overflow: visible;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner {
  width: 100%;
  height: 100%;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .active-text {
  opacity: 1;
  visibility: visible;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .active-text span {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .defalut-text {
  opacity: 0;
  visibility: hidden;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .defalut-text span {
  -webkit-transform: translate(0, -0.4rem);
      -ms-transform: translate(0, -0.4rem);
          transform: translate(0, -0.4rem);
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner {
  position: relative;
  width: var(--defaultWidth);
  height: 3.47rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .defalut-text,
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: white;
  padding: 0.04rem 0.1rem 0.18rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .defalut-text span,
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text span {
  display: block;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .defalut-text::before,
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(top, transparent 0%, #4A5263 100%);
  background: linear-gradient(to bottom, transparent 0%, #4A5263 100%);
  z-index: -1;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.2rem 0.1rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text span {
  -webkit-transform: translate(0, 0.8rem);
      -ms-transform: translate(0, 0.8rem);
          transform: translate(0, 0.8rem);
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control {
  position: relative;
  max-width: 5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.4rem;
  height: 0.36rem;
  margin-top: 0.64rem;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .prev,
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .next {
  cursor: pointer;
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  left: 0;
  top: 0;
  z-index: 1;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .prev img,
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .next {
  left: auto;
  right: 0;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress {
  --progress: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 0.16rem;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress .min-size {
  font-size: 0.2rem;
  line-height: 0.3rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress .progress-line {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #D5E3F9;
  margin: 0 0.18rem;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress .progress-line::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(var(--progress) * 100%);
  height: 4px;
  background-color: #D5E3F9;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: none;
  transition: none;
}
.technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress .max-size {
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #7B859B;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .technology-page .-service .wrapper {
    position: relative;
    padding-top: 0;
  }
  .technology-page .-service .wrapper .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 0;
  }
  .technology-page .-service .wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .technology-page .-service .wrapper .box {
    position: relative;
    z-index: 1;
  }
  .technology-page .-service .wrapper .box .wal {
    display: -webkit-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: 7.5rem;
    padding: 0.32rem 0.4rem;
  }
  .technology-page .-service .wrapper .box .wal .sk-section-title {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
  .technology-page .-rd .wal {
    padding-top: 0.9rem;
  }
  .technology-page .-rd .wal .-body {
    margin-top: 0.26rem;
  }
  .technology-page .-rd .wal .-body .content-list ul li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 100%;
    padding: 0 0 0.16rem 0.68rem;
    min-height: auto;
  }
  .technology-page .-rd .wal .-body .content-list ul li .dot-line {
    --top: calc(0.64rem / 2 - .24rem / 2);
    width: 0.24rem;
    top: 0;
    height: 100%;
  }
  .technology-page .-rd .wal .-body .content-list ul li .dot-line em {
    width: 0.24rem;
    height: 0.24rem;
  }
  .technology-page .-rd .wal .-body .content-list ul li .dot-line .line {
    width: 1px;
  }
  .technology-page .-rd .wal .-body .content-list ul li .dot-line .line::before {
    height: 0.6rem;
  }
  .technology-page .-rd .wal .-body .content-list ul li .inner {
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(0, -0.15rem);
        -ms-transform: translate(0, -0.15rem);
            transform: translate(0, -0.15rem);
  }
  .technology-page .-rd .wal .-body .content-list ul li .inner .title {
    font-size: 0.32rem;
    line-height: 0.64rem;
  }
  .technology-page .-rd .wal .-body .content-list ul li .inner .context {
    margin-top: 0.18rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .technology-page .-rd .wal .-body .img-swiper {
    margin-top: 0.64rem;
    position: relative;
    z-index: 0;
  }
  .technology-page .-rd .wal .-body .img-swiper .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 6.13rem;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
  }
  .technology-page .-rd .wal .-body .img-swiper .swiper-container .swiper-wrapper .swiper-slide .img {
    width: 100%;
    height: 100%;
  }
  .technology-page .-rd .wal .-body .img-swiper .swiper-container .swiper-wrapper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .technology-page .-rd .wal .-body .img-swiper .img-list {
    height: 4.24rem;
  }
  .technology-page .-rd .wal .-body .img-swiper .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;
    width: 100%;
    gap: 0.48rem;
    margin-top: 0.48rem;
  }
  .technology-page .-rd .wal .-body .img-swiper .arrow .prev,
  .technology-page .-rd .wal .-body .img-swiper .arrow .next {
    cursor: pointer;
    position: static;
    width: 0.72rem;
    height: 0.72rem;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .technology-page .-equipment .wal {
    padding-top: 0.9rem;
    padding-bottom: 0.64rem;
    overflow: hidden;
  }
  .technology-page .-equipment .wal .-body {
    margin-top: 0.4rem;
  }
  .technology-page .-equipment .wal .-body .list {
    width: 5.62rem;
  }
  .technology-page .-equipment .wal .-body .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 0;
  }
  .technology-page .-equipment .wal .-body .list ul li {
    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;
    width: 100%;
    height: auto;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    min-height: auto;
    -webkit-margin-end: 0.38rem;
       -moz-margin-end: 0.38rem;
            margin-inline-end: 0.38rem;
  }
  .technology-page .-equipment .wal .-body .list ul li .info {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    height: auto;
    padding: 0.4rem 0.28rem 0.72rem;
  }
  .technology-page .-equipment .wal .-body .list ul li .info .icon {
    width: 0.36rem;
    height: 0.36rem;
    color: var(--sk-global-color);
  }
  .technology-page .-equipment .wal .-body .list ul li .info .content {
    margin-top: 0.34rem;
  }
  .technology-page .-equipment .wal .-body .list ul li .info .content .title {
    font-size: 0.32rem;
    line-height: 0.52rem;
  }
  .technology-page .-equipment .wal .-body .list ul li .info .content .context {
    margin-top: 0.4rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    max-width: 90%;
    min-height: auto;
  }
  .technology-page .-equipment .wal .-body .list ul li .img {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
    height: 3.68rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .technology-page .-equipment .wal .-body .list ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .technology-page .-quality {
    background-color: #FBFCFE;
  }
  .technology-page .-quality .wal {
    padding-top: 0.62rem;
    padding-bottom: 0.82rem;
    min-height: auto;
  }
  .technology-page .-quality .wal .-body {
    position: relative;
    margin-top: 0.32rem;
    padding-top: 0.64rem;
  }
  .technology-page .-quality .wal .-body .background-text .scroll-text .text {
    padding: 0 0.1rem;
    font-size: 1.28rem;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container {
    --activeWidth: 6.01rem;
    --defaultWidth: 5.21rem;
    --gap: 0.4rem;
    width: var(--activeWidth);
    height: 4.32rem;
    margin: 0 auto;
    overflow: visible;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner {
    width: 100%;
    height: 100%;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .active-text {
    opacity: 1;
    visibility: visible;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .active-text span {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .defalut-text {
    opacity: 0;
    visibility: hidden;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .inner .content .defalut-text span {
    -webkit-transform: translate(0, -0.4rem);
        -ms-transform: translate(0, -0.4rem);
            transform: translate(0, -0.4rem);
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner {
    position: relative;
    width: var(--defaultWidth);
    height: 3.44rem;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .defalut-text,
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: white;
    padding: 0.28rem 0.2rem 0.24rem;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0.2rem 0.1rem;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-container .swiper-wrapper .swiper-slide .inner .content .active-text span {
    -webkit-transform: translate(0, 0.8rem);
        -ms-transform: translate(0, 0.8rem);
            transform: translate(0, 0.8rem);
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-control {
    max-width: 100%;
    height: 0.72rem;
    margin-top: 0.64rem;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-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;
    width: 100%;
    gap: 0.48rem;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .prev,
  .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .next {
    cursor: pointer;
    position: static;
    width: 0.72rem;
    height: 0.72rem;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .next {
    left: auto;
    right: 0;
  }
  .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress {
    display: none;
  }
}

.applicationField-page .-banner .wrapper {
  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;
  padding-top: 2.04rem;
}
.applicationField-page .-banner .wrapper .img {
  width: 100%;
  height: 5rem;
  margin-top: 0.4rem;
}
.applicationField-page .-banner .wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.applicationField-page .-application .wal {
  padding-top: 0.78rem;
  padding-bottom: 0.6rem;
}
.applicationField-page .-application .wal .content-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.applicationField-page .-application .wal .content-list ul li {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 20%;
  max-width: 50%;
  padding: 0 0 0.1rem 0.28rem;
  min-height: 1.6rem;
}
.applicationField-page .-application .wal .content-list ul li .dot-line {
  --top: calc(0.32rem / 2 - .12rem / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.12rem;
}
.applicationField-page .-application .wal .content-list ul li .dot-line em {
  width: 0.12rem;
  height: 0.12rem;
  border: 1px solid var(--sk-global-color);
  border-radius: 50%;
}
.applicationField-page .-application .wal .content-list ul li .dot-line .line {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1px;
  background-color: #D5E3F9;
}
.applicationField-page .-application .wal .content-list ul li .dot-line .line::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 0.3rem;
  width: 100%;
  background-color: var(--sk-global-color);
}
.applicationField-page .-application .wal .content-list ul li .inner {
  max-width: 80%;
  height: 100%;
}
.applicationField-page .-application .wal .content-list ul li .inner .context {
  font-size: 0.2rem;
  line-height: 0.3rem;
}
.applicationField-page .-application .wal .box {
  --sticky-top: 1.2rem;
  position: relative;
  margin-top: 0.74rem;
  padding-right: calc(100% - 7rem);
}
.applicationField-page .-application .wal .box .imgs-list {
  max-width: 100%;
  width: 100%;
}
.applicationField-page .-application .wal .box .imgs-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;
  gap: 0.4rem;
}
.applicationField-page .-application .wal .box .imgs-list ul li {
  position: -webkit-sticky;
  position: sticky;
  top: var(--sticky-top);
  width: 100%;
  height: 5.8rem;
}
.applicationField-page .-application .wal .box .imgs-list ul li .inner {
  width: 100%;
  height: 100%;
}
.applicationField-page .-application .wal .box .imgs-list ul li .inner .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.applicationField-page .-application .wal .box .imgs-list ul li .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: none;
  transition: none;
}
.applicationField-page .-application .wal .box .list {
  position: absolute;
  right: 0;
  top: 0;
  max-width: calc(100% - 7rem);
  height: 100%;
  width: 100%;
  z-index: 1;
}
.applicationField-page .-application .wal .box .list ul {
  position: -webkit-sticky;
  position: sticky;
  top: var(--sticky-top);
}
.applicationField-page .-application .wal .box .list ul li {
  display: none;
  width: 100%;
  height: 5.8rem;
}
.applicationField-page .-application .wal .box .list ul li.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.applicationField-page .-application .wal .box .list ul li .img {
  display: none;
}
.applicationField-page .-application .wal .box .list ul li .content {
  height: 100%;
  padding: 0.26rem 0.5rem 0.1rem 0.64rem;
  background-color: #FBFBF9;
}
.applicationField-page .-application .wal .box .list ul li .content .title {
  font-family: var(--sk-font-Bold);
  padding: 0.2rem 0.24rem;
  font-size: 0.36rem;
  line-height: 1;
  background-color: var(--sk-global-color);
  border-radius: 0.1rem 0.1rem 0 0;
  color: white;
}
.applicationField-page .-application .wal .box .list ul li .content .feature {
  margin-top: 0.24rem;
}
.applicationField-page .-application .wal .box .list ul li .content .feature .feature-item {
  position: relative;
  padding-left: 0.38rem;
  margin-top: 0.16rem;
}
.applicationField-page .-application .wal .box .list ul li .content .feature .feature-item:first-child {
  margin-top: 0;
}
.applicationField-page .-application .wal .box .list ul li .content .feature .feature-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.16rem;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../images/application-field/right.svg) center center no-repeat;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.applicationField-page .-application .wal .box .list ul li .content .feature .feature-item .name {
  font-family: var(--sk-font-Bold);
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #7B859B;
}
.applicationField-page .-application .wal .box .list ul li .content .feature .feature-item .text {
  margin-top: 0.08rem;
  color: #666666;
  font-size: 0.2rem;
  line-height: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.applicationField-page .-application .wal .box .list ul li .content .foot-box {
  margin-top: 0.2rem;
}
.applicationField-page .-application .wal .box .list ul li .content .foot-box .tips {
  color: #1C1C1C;
  font-size: 0.24rem;
  line-height: 0.28rem;
}
.applicationField-page .-application .wal .box .list ul li .content .foot-box .btn-box {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .applicationField-page .-banner .wrapper {
    position: relative;
    padding-top: 0;
  }
  .applicationField-page .-banner .wrapper .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 0;
  }
  .applicationField-page .-banner .wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .applicationField-page .-banner .wrapper .box {
    position: relative;
    z-index: 1;
  }
  .applicationField-page .-banner .wrapper .box .wal {
    display: -webkit-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: 7.5rem;
    padding: 0.32rem 0.4rem;
  }
  .applicationField-page .-banner .wrapper .box .wal .sk-section-title {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
  .applicationField-page .-application .wal {
    padding: 0.82rem 0 0;
  }
  .applicationField-page .-application .wal .content-list {
    padding: 0 0.4rem;
  }
  .applicationField-page .-application .wal .content-list ul li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 100%;
    padding: 0 0 0.36rem 0.68rem;
    min-height: auto;
  }
  .applicationField-page .-application .wal .content-list ul li .dot-line {
    --top: calc(0.64rem / 2 - .24rem / 2);
    width: 0.24rem;
    top: 0;
    height: 100%;
  }
  .applicationField-page .-application .wal .content-list ul li .dot-line em {
    width: 0.24rem;
    height: 0.24rem;
  }
  .applicationField-page .-application .wal .content-list ul li .dot-line .line {
    width: 1px;
  }
  .applicationField-page .-application .wal .content-list ul li .dot-line .line::before {
    height: 0.6rem;
  }
  .applicationField-page .-application .wal .content-list ul li .inner {
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .applicationField-page .-application .wal .content-list ul li .inner .title {
    font-size: 0.32rem;
    line-height: 0.64rem;
    margin-bottom: 0.18rem;
  }
  .applicationField-page .-application .wal .content-list ul li .inner .context {
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .applicationField-page .-application .wal .box {
    --sticky-top: 0;
    position: relative;
    margin-top: 0.88rem;
    padding-right: 0;
  }
  .applicationField-page .-application .wal .box .imgs-list {
    display: none;
  }
  .applicationField-page .-application .wal .box .list {
    position: static;
    max-width: 100%;
    width: 100%;
    height: auto;
    z-index: 1;
  }
  .applicationField-page .-application .wal .box .list ul {
    position: static;
  }
  .applicationField-page .-application .wal .box .list ul li {
    position: -webkit-sticky;
    position: sticky;
    top: var(--sticky-top);
    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: auto;
    min-height: 100vh;
  }
  .applicationField-page .-application .wal .box .list ul li .img {
    display: block;
    width: 100%;
    height: 4.6rem;
  }
  .applicationField-page .-application .wal .box .list ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .applicationField-page .-application .wal .box .list ul li .content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100%;
    padding: 0.36rem 0.4rem 0.74rem;
  }
  .applicationField-page .-application .wal .box .list ul li .content .title {
    padding: 0.18rem 0.28rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
    border-radius: 0.2rem 0.2rem 0 0;
  }
  .applicationField-page .-application .wal .box .list ul li .content .feature {
    margin-top: 0.4rem;
    padding: 0 0.34rem;
  }
  .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item {
    position: relative;
    padding-left: 0;
    margin-top: 0.32rem;
  }
  .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item:first-child {
    margin-top: 0;
  }
  .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item::before {
    top: 0.24rem;
    width: 0.48rem;
    height: 0.48rem;
  }
  .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item .name {
    font-family: var(--sk-font-Bold);
    padding-left: 0.68rem;
    font-size: 0.32rem;
    line-height: 0.52rem;
    color: #7B859B;
  }
  .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item .text {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
  }
  .applicationField-page .-application .wal .box .list ul li .content .foot-box {
    margin-top: 0.38rem;
    padding: 0 0.36rem;
  }
  .applicationField-page .-application .wal .box .list ul li .content .foot-box .tips {
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .applicationField-page .-application .wal .box .list ul li .content .foot-box .btn-box {
    margin-top: 0.2rem;
  }
}

.search-page .page-box .page-head {
  background-color: #F0F5FE;
}
.search-page .page-box .page-head .wal {
  padding-top: 1.98rem;
  padding-bottom: 0.81rem;
}
.search-page .page-box .page-head .wal .title {
  font-family: var(--sk-font-Bold);
  text-align: center;
  font-size: 0.54rem;
  line-height: 0.68rem;
  color: var(--sk-global-color);
}
.search-page .page-box .page-head .wal .search-box {
  margin-top: 0.16rem;
  max-width: 11.83rem;
  margin: 0 auto;
}
.search-page .page-box .page-head .wal .search-box .search-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;
  width: 100%;
  height: 0.64rem;
  padding: 0 0.27rem;
  border: 1px solid #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input input::-webkit-input-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input input::-moz-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input input:-moz-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input input:-ms-input-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input textarea::-webkit-input-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input textarea::-moz-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input textarea:-moz-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input textarea:-ms-input-placeholder {
  color: #E6E6E6;
}
.search-page .page-box .page-head .wal .search-box .search-input input {
  font-family: var(--sk-font-Medium);
  width: 100%;
  font-size: 0.2rem;
  line-height: 0.3rem;
}
.search-page .page-box .page-head .wal .search-box .search-input .search-icon {
  cursor: pointer;
  width: 0.32rem;
  height: 0.32rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: var(--sk-global-color);
}
.search-page .page-box .page-head .wal .search-box .search-input .search-icon .svg-ctx {
  width: 100%;
  height: 100%;
}
.search-page .page-box .page-body .wal {
  padding-top: 0.71rem;
  padding-bottom: 1.27rem;
}
.search-page .page-box .page-body .wal .content .row-box {
  margin-top: 0.84rem;
}
.search-page .page-box .page-body .wal .content .row-box:first-child {
  margin-top: 0;
}
.search-page .page-box .page-body .wal .content .row-box .row-title .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.36rem;
  line-height: 1.2;
  color: #7B859B;
}
.search-page .page-box .page-body .wal .content .row-box .row-title .title em {
  color: var(--sk-global-color);
}
.search-page .page-box .page-body .wal .content .row-box .row-content > .context {
  color: #999999;
  font-size: 0.2rem;
  line-height: 0.3rem;
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list {
  margin-top: 0.32rem;
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list 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.36rem 0.3rem;
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li {
  width: calc((100% - 0.6rem) / 3);
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li a .img {
  display: -webkit-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-color: #F5F5F5;
  width: 100%;
  height: 3.28rem;
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li a .img img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li a .name {
  text-align: center;
  margin-top: 0.26rem;
  font-size: 0.24rem;
  line-height: 0.4rem;
}
.search-page .page-box .page-body .wal .content .row-box .row-content .product-list .btn-box {
  margin-top: 1.49rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .search-page .page-box .page-head .wal {
    padding-top: 2.38rem;
    padding-bottom: 0.8rem;
  }
  .search-page .page-box .page-head .wal .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .search-page .page-box .page-head .wal .search-box {
    margin-top: 0.26rem;
    max-width: 100%;
  }
  .search-page .page-box .page-head .wal .search-box .search-input {
    width: 100%;
    height: 0.96rem;
    padding: 0 0.2rem;
  }
  .search-page .page-box .page-head .wal .search-box .search-input input {
    font-size: 0.26rem;
  }
  .search-page .page-box .page-head .wal .search-box .search-input .search-icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .search-page .page-box .page-body .wal {
    padding-top: 0.64rem;
  }
  .search-page .page-box .page-body .wal .content .row-box {
    margin-top: 0.64rem;
  }
  .search-page .page-box .page-body .wal .content .row-box:first-child {
    margin-top: 0;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-title .title {
    font-size: 0.32rem;
    line-height: 1.2;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content > .context {
    color: #999999;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list {
    margin-top: 0.32rem;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list 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.36rem 0.18rem;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li {
    width: calc((100% - 0.18rem) / 2);
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list 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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li a .img {
    display: -webkit-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-color: #F5F5F5;
    height: 2.07rem;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li a .img img {
    width: 90%;
    height: 90%;
    object-fit: contain;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list ul li a .name {
    text-align: center;
    margin-top: 0.14rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .search-page .page-box .page-body .wal .content .row-box .row-content .product-list .btn-box {
    margin-top: 0.84rem;
  }
}

.policy-page .page-box {
  background-color: #F0F5FE;
}
.policy-page .page-box .wal {
  max-width: 13.18rem;
  padding-top: 1.98rem;
  padding-bottom: 0.96rem;
}
.policy-page .page-box .wal .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.54rem;
  line-height: 0.68rem;
  text-align: center;
  color: #7B859B;
}
.policy-page .page-box .wal .content {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #666666;
}
.policy-page .page-box .wal .content p, .policy-page .page-box .wal .content span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.policy-page .page-box .wal .content a {
  text-decoration: underline;
}
.policy-page .page-box .wal .content h2,
.policy-page .page-box .wal .content h3,
.policy-page .page-box .wal .content h4,
.policy-page .page-box .wal .content h5 {
  font-weight: 600;
}
.policy-page .page-box .wal .content h2 {
  font-size: 0.54rem;
  line-height: 0.64rem;
}
.policy-page .page-box .wal .content h3 {
  font-size: 0.36rem;
  line-height: 0.48rem;
}
.policy-page .page-box .wal .content h4 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.policy-page .page-box .wal .content h5 {
  font-size: 0.28rem;
  line-height: 0.38rem;
}
.policy-page .page-box .wal .content ul li, .policy-page .page-box .wal .content ol li {
  list-style: inherit;
  list-style-position: inside;
}
.policy-page .page-box .wal .content p:has(video),
.policy-page .page-box .wal .content p:has(img) {
  text-align: center;
}
.policy-page .page-box .wal .content video,
.policy-page .page-box .wal .content img {
  max-width: 100%;
}
.policy-page .page-box .wal .btn-box {
  text-align: center;
  margin-top: 0.42rem;
}
.policy-page .page-box .wal .btn-box .sk0-btn {
  --min-width: 3.12rem;
  --height: .84rem;
  --font-size: 0.24rem;
}
@media screen and (max-width: 800px) {
  .policy-page .page-box {
    background-color: white;
  }
  .policy-page .page-box .wal {
    max-width: 100%;
    padding-top: 2.34rem;
    padding-bottom: 0.96rem;
  }
  .policy-page .page-box .wal .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .policy-page .page-box .wal .content {
    margin-top: 0.4rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .policy-page .page-box .wal .btn-box {
    text-align: center;
    margin-top: 0.42rem;
  }
  .policy-page .page-box .wal .btn-box .sk0-btn {
    --min-width: 100%;
    --height: .96rem;
    --font-size: 0.32rem;
  }
  .policy-page .page-box .wal .btn-box .sk0-btn a, .policy-page .page-box .wal .btn-box .sk0-btn .a {
    width: 100%;
  }
}

.error-page .page-box {
  background-color: #F0F5FE;
}
.error-page .page-box .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -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;
  min-height: 100vh;
}
.error-page .page-box .wal .title {
  font-family: var(--sk-font-Bold);
  font-size: 0.54rem;
  line-height: 0.68rem;
  text-align: center;
  color: #7B859B;
}
.error-page .page-box .wal .img {
  margin-top: 0.64rem;
}
.error-page .page-box .wal .img img {
  height: 3.2rem;
  object-fit: contain;
}
.error-page .page-box .wal .btn-box {
  text-align: center;
  margin-top: 0.42rem;
}
.error-page .page-box .wal .btn-box .sk0-btn {
  --min-width: 3.12rem;
  --height: .65rem;
}
@media screen and (max-width: 800px) {
  .error-page .page-box .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 20vh;
  }
  .error-page .page-box .wal .title {
    font-family: var(--sk-font-Bold);
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .error-page .page-box .wal .img {
    margin-top: 1.3rem;
  }
  .error-page .page-box .wal .img img {
    height: 3.66rem;
  }
  .error-page .page-box .wal .btn-box {
    margin-top: 1.3rem;
    width: 100%;
  }
  .error-page .page-box .wal .btn-box .sk0-btn {
    --min-width: 100%;
    --height: .96rem;
  }
  .error-page .page-box .wal .btn-box .sk0-btn a, .error-page .page-box .wal .btn-box .sk0-btn .a {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  :root {
    --fiexd-classify-top: 1.52rem;
  }
  .stickyHideContainer.MobileJS .stickyHideItem {
    position: -webkit-sticky;
    position: sticky;
  }
  .sk-section-title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .sk0-btn {
    --min-width: 1.95rem;
    --height: .64rem;
    --font-size: 0.24rem;
    --icon-size: .26rem;
  }
  .sk0-btn.noArrow {
    --height: .96rem;
    --font-size: 0.32rem;
  }
  .sk0-btn.noArrow a .text, .sk0-btn.noArrow .a .text {
    padding: 0 0.43rem;
  }
  .sk0-btn a, .sk0-btn .a {
    font-family: var(--sk-font-Regular);
  }
  .sk0-btn a .text, .sk0-btn .a .text {
    padding: 0 0.24rem;
  }
}
.g-header .g-head {
  height: var(--head-height, 1.56rem);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--head-background, transparent);
  backdrop-filter: var(--head-backdrop-filter, none);
}
.g-header .g-head .g-head-main {
  padding: 0 0.74rem 0 0.66rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 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;
}
.g-header .g-head .g-head-main .logo-box {
  position: relative;
}
.g-header .g-head .g-head-main .logo-box .logo {
  display: block;
  width: 2.48rem;
}
.g-header .g-head .g-head-main .logo-box .logo .svg {
  -webkit-transform: 0.3rem;
      -ms-transform: 0.3rem;
          transform: 0.3rem;
  position: absolute;
  height: 0.6rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .logo-box .logo .svg.color {
  opacity: var(--head--logo-opacity-1, 0);
}
.g-header .g-head .g-head-main .logo-box .logo .svg.white {
  opacity: var(--head--logo-opacity-0, 1);
}
.g-header .g-head .g-head-main .center-nav {
  display: block;
  height: 100%;
  -webkit-margin-start: 1.8rem;
     -moz-margin-start: 1.8rem;
          margin-inline-start: 1.8rem;
}
.g-header .g-head .g-head-main .center-nav .center-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-end: 0.56rem;
     -moz-margin-end: 0.56rem;
          margin-inline-end: 0.56rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item:last-child {
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .a {
  font-size: 0.2rem;
  line-height: 0.3rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--head-font-color);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .a::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 0.1rem);
  height: 0.03rem;
  width: 100%;
  background-color: var(--sk-global-color);
  pointer-events: none;
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item.on .a {
  font-family: var(--sk-font-Bold);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item.on .a::after {
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item:hover .a::after {
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.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 .search-btn {
  -webkit-margin-end: 0.2rem;
     -moz-margin-end: 0.2rem;
          margin-inline-end: 0.2rem;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .svg-box {
  height: 0.32rem;
  width: 0.32rem;
  cursor: pointer;
}
.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 path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: var(--head-font-color, #999999);
  stroke: var(--head-font-color, #999999);
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #F0F5FE;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .layer-close {
  position: absolute;
  top: 0.5rem;
  right: 1.7rem;
  width: 0.58rem;
  height: 0.58rem;
  cursor: pointer;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .layer-close .close-svg {
  height: 100%;
  width: 100%;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper {
  padding-bottom: 0.15rem;
  width: 10.8rem;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box {
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box .input {
  width: 100%;
  padding: 0.1rem 0;
  font-size: 0.32rem;
  line-height: 0.3rem;
  color: #333333;
  font-family: var(--sk-font-Medium);
  height: 0.68rem;
  border-bottom: 0.01rem solid #CCCCCC;
  padding-right: 0.6rem;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box .input::-webkit-input-placeholder {
  color: #999999;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box .input::-moz-placeholder {
  color: #999999;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box .input:-ms-input-placeholder {
  color: #999999;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box .input::placeholder {
  color: #999999;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box .svg-a {
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.g-header .g-head .g-head-main .g-head-right .search-btn .layer .input_wrapper .input-box .svg-a .search-svg {
  height: 100%;
  width: 100%;
}
.g-header .g-head .g-head-main .g-head-right .search-btn.show .layer {
  height: 6.44rem;
}
.g-header .g-head .g-head-main .g-head-right .language-btn {
  -webkit-margin-end: 0.56rem;
     -moz-margin-end: 0.56rem;
          margin-inline-end: 0.56rem;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg-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;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg-btn .svg-box {
  height: 0.32rem;
  width: 0.32rem;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg-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 .language-btn .svg-btn .svg-box .svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: var(--head-font-color, #999999);
}
.g-header .g-head .g-head-main .g-head-right .language-btn .svg-btn .language-text {
  -webkit-margin-start: 0.11rem;
     -moz-margin-start: 0.11rem;
          margin-inline-start: 0.11rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--head-font-color);
}
.g-header .g-head .g-head-main .g-head-right .language-btn .layer {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 0.27rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .layer .layer_wrapper {
  opacity: 0.8;
  background: #FFFFFF;
  padding: 0.1rem 0.35rem;
  font-size: 0.2rem;
  line-height: 0.38rem;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .language-btn .layer .layer_wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -0.08rem;
  width: 0;
  height: 0;
  opacity: 0.8;
  border-left: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
  border-bottom: 0.15rem solid #FFFFFF;
}
.g-header .g-head .g-head-main .g-head-right .language-btn:hover .layer {
  opacity: 1;
  visibility: visible;
}
.g-header .g-head .g-head-main .g-head-right .contact-btn {
  --height: 0.56rem;
  --min-width: 1.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  --font-size: 0.2rem;
}
.g-header .g-head .g-head-main .g-head-right .contact-btn a .text {
  padding: 0 0.27rem 0 0.16rem;
}
.g-header .g-head .g-head-main .g-head-right .contact-btn a .text .svg {
  width: 0.32rem;
  -webkit-margin-end: 0.06rem;
     -moz-margin-end: 0.06rem;
          margin-inline-end: 0.06rem;
  position: relative;
  z-index: 1;
}
.g-header .g-head-phone .g-head-main {
  padding: 0.4rem;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--head-background, transparent);
  backdrop-filter: var(--head-backdrop-filter, none);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g-header .g-head-phone .g-head-main::before {
  content: "";
  display: block;
  position: absolute;
  opacity: var(--before-opacity, 1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  top: 0;
  left: 0;
  height: 100%;
  width: 7.5rem;
  opacity: var(--head--logo-opacity-1, 0);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.g-header .g-head-phone .g-head-main .logo-box {
  height: 0.72rem;
}
.g-header .g-head-phone .g-head-main .logo-box .logo {
  height: 100%;
  display: block;
  position: relative;
}
.g-header .g-head-phone .g-head-main .logo-box .logo .svg {
  position: absolute;
  height: 100%;
  max-width: none;
  -webkit-transform: 0.3rem;
      -ms-transform: 0.3rem;
          transform: 0.3rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head-phone .g-head-main .logo-box .logo .svg.color {
  opacity: var(--head--logo-opacity-1, 0);
}
.g-header .g-head-phone .g-head-main .logo-box .logo .svg.white {
  opacity: var(--head--logo-opacity-0, 1);
}
.g-header .g-head-phone .g-head-main .logo-box .logo .svg.nav {
  opacity: var(--head--logo-nav-opacity, 0);
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree {
  height: 0.5rem;
  width: 0.5rem;
  position: relative;
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree .line {
  position: absolute;
  height: 0.05rem;
  width: 100%;
  background: var(--tree-line-background, var(--fcolor-black));
  border-radius: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  left: 0;
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree .line:nth-child(1) {
  top: 0;
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 66%;
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree .line:nth-child(3) {
  bottom: 0;
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree.active .line:nth-child(1) {
  width: 0.6rem;
  -webkit-transform: translateY(0.225rem) rotate(45deg);
      -ms-transform: translateY(0.225rem) rotate(45deg);
          transform: translateY(0.225rem) rotate(45deg);
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree.active .line:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0.1);
      -ms-transform: translateY(-50%) scale(0.1);
          transform: translateY(-50%) scale(0.1);
}
.g-header .g-head-phone .g-head-main .tree-box .icon-tree.active .line:nth-child(3) {
  width: 0.6rem;
  -webkit-transform: translateY(-0.225rem) rotate(-45deg);
      -ms-transform: translateY(-0.225rem) rotate(-45deg);
          transform: translateY(-0.225rem) rotate(-45deg);
}
.g-header .g-head-phone .head-phone-nav {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  padding: 2.02rem 0.4rem 0.74rem;
  background: rgba(28, 28, 28, 0.9);
  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;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.g-header .g-head-phone .head-phone-nav.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.g-header .g-head-phone .head-phone-nav .search-box {
  height: 0.84rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.g-header .g-head-phone .head-phone-nav .search-box .search-icon {
  position: absolute;
  left: 0.18rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.36rem;
  height: 0.36rem;
}
.g-header .g-head-phone .head-phone-nav .search-box .input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 0.18rem 0 0.66rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: #ffffff;
}
.g-header .g-head-phone .head-phone-nav .search-box .input::-webkit-input-placeholder {
  color: #E6E6E6;
}
.g-header .g-head-phone .head-phone-nav .search-box .input::-moz-placeholder {
  color: #E6E6E6;
}
.g-header .g-head-phone .head-phone-nav .search-box .input:-ms-input-placeholder {
  color: #E6E6E6;
}
.g-header .g-head-phone .head-phone-nav .search-box .input::placeholder {
  color: #E6E6E6;
}
.g-header .g-head-phone .head-phone-nav .search-box .search-btn {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0 0.54rem 0 0.56rem;
  background-color: var(--sk-global-color);
  font-size: 0.24rem;
  color: #FFFFFF;
  line-height: 0.28rem;
}
.g-header .g-head-phone .head-phone-nav .nav-list {
  margin-top: 0.2rem;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li {
  padding: 0.3rem 0;
  border-bottom: 0.02rem solid rgba(102, 102, 102, 0.4);
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li .cell-text {
  color: #FFFFFF;
  font-size: 0.4rem;
  line-height: 0.6rem;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li .cell-icon {
  width: 0.32rem;
  height: 0.32rem;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li .cell-icon .icon {
  height: 100%;
  width: 100%;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li .cell-icon .icon.add {
  display: block;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li .cell-icon .icon.del {
  display: none;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li.show .cell-icon .icon.add {
  display: none;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .cell-li.show .cell-icon .icon.del {
  display: block;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .nav-two-box {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .nav-two-box .link-list {
  padding-top: 0.12rem;
  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;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .nav-two-box .link-list .link {
  width: calc(50% - 0.05rem);
  font-size: 0.24rem;
  line-height: 0.6rem;
  color: #E6E6E6;
  margin-bottom: 0.24rem;
}
.g-header .g-head-phone .head-phone-nav .nav-list .nav-li .nav-two-box .link-list .link:last-child, .g-header .g-head-phone .head-phone-nav .nav-list .nav-li .nav-two-box .link-list .link:nth-last-child(2) {
  margin-bottom: 0;
}
.g-header .g-head-phone .head-phone-nav .lang-list {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 0.34rem;
  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;
}
.g-header .g-head-phone .head-phone-nav .lang-list .lang-link {
  margin-top: 0.22rem;
  width: calc(50% - 0.1rem);
  height: 1.48rem;
  border-radius: 0.08rem;
  font-size: 0.4rem;
  line-height: 0.76rem;
  display: -webkit-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: #F5F5F5;
}
.g-header .g-head-phone .head-phone-nav .lang-list .lang-link.on {
  background: var(--sk-global-color);
  color: #FFFFFF;
}
@media screen and (min-width: 800px) {
  .g-header.pcHeaderTransparent {
    --g-head-main-padding: 0 0.74rem 0 0.66rem;
    --header-none: none;
    --header-block: block;
    --head-font-color: #FFFFFF;
    --head--logo-opacity-0: 0;
    --head--logo-opacity-1: 1;
  }
}
.g-header.hide .g-head {
  opacity: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.g-header.hide .g-head-phone .g-head-main {
  opacity: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (max-width: 800px) {
  .g-header.phoneHeaderTransparent {
    --g-head-main-padding: 0 0.74rem 0 0.66rem;
    --header-none: none;
    --header-block: block;
    --head-font-color: #FFFFFF;
    --head--logo-opacity-0: 0;
    --head--logo-opacity-1: 1;
    --tree-line-background: #FFFFFF;
  }
}
.g-header.isScroll {
  --head-height: var(--headH);
  --head-background: rgba(28, 28, 28, 0.2);
  --head-backdrop-filter: blur(0.04rem);
  --g-head-main-padding: 0 0.74rem 0 0.66rem;
  --header-none: none;
  --header-block: block;
  --head-font-color: #FFFFFF;
  --head--logo-opacity-0: 0;
  --head--logo-opacity-1: 1;
}
@media screen and (max-width: 800px) {
  .g-header.isScroll {
    --tree-line-background: #FFFFFF;
  }
}
@media screen and (max-width: 800px) {
  .g-header.phoneHeaderRed {
    --tree-line-background: #FFFFFF;
    --head-background: var(--sk-global-color);
    --head--logo-opacity-0: 0;
    --head--logo-opacity-1: 0;
    --head--logo-nav-opacity: 1;
  }
}
.g-header.phone-nav {
  --tree-line-background: #FFFFFF;
  --head-background: var(--sk-global-color);
  --head--logo-opacity-0: 0;
  --head--logo-opacity-1: 0;
  --head--logo-nav-opacity: 1;
  --before-opacity: 0;
}

.privacy-checkbox .checkbox-box {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .privacy-checkbox .checkbox-box {
    width: 100%;
  }
}
.privacy-checkbox .checkbox-box .-checkbox {
  width: 0.2rem;
  height: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .privacy-checkbox .checkbox-box .-checkbox {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.privacy-checkbox .checkbox-box .-checkbox .svg {
  height: 100%;
  width: 100%;
}
.privacy-checkbox .checkbox-box .-checkbox .svg.false {
  display: block;
}
.privacy-checkbox .checkbox-box .-checkbox .svg.true {
  display: none;
}
.privacy-checkbox .checkbox-box .-checkbox.on .svg.false {
  display: none;
}
.privacy-checkbox .checkbox-box .-checkbox.on .svg.true {
  display: block;
}
.privacy-checkbox .checkbox-box .privacy-text {
  color: #7B859B;
  font-size: 0.14rem;
  line-height: 0.2rem;
  -webkit-margin-start: 0.06rem;
     -moz-margin-start: 0.06rem;
          margin-inline-start: 0.06rem;
}
@media screen and (max-width: 800px) {
  .privacy-checkbox .checkbox-box .privacy-text {
    -webkit-margin-start: 0.12rem;
       -moz-margin-start: 0.12rem;
            margin-inline-start: 0.12rem;
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
}

.g__footer {
  padding-top: 1.06rem;
  padding-bottom: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g__footer {
    padding-top: 0.74rem;
    padding-bottom: 0.58rem;
    overflow: hidden;
  }
}
.g__footer .backtop-box {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0.57rem;
  --height: 0.68rem;
  --min-width: 0.68rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g__footer .backtop-box .a .text {
  padding: 0;
}
.g__footer .backtop-box .a .text .backtop {
  width: 100%;
  position: absolute;
  top: 0;
  height: 0.5rem;
  width: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.g__footer .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.g__footer .subscribe-newsletter .subscribe-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g__footer .subscribe-newsletter .subscribe-title .icon {
  width: 0.46rem;
}
@media screen and (max-width: 800px) {
  .g__footer .subscribe-newsletter .subscribe-title .icon {
    width: 0.49rem;
  }
}
.g__footer .subscribe-newsletter .subscribe-title .title-text {
  -webkit-margin-start: 0.44rem;
     -moz-margin-start: 0.44rem;
          margin-inline-start: 0.44rem;
  font-size: 0.48rem;
  line-height: 0.68rem;
  color: #333333;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .g__footer .subscribe-newsletter .subscribe-title .title-text {
    -webkit-margin-start: 0.22rem;
       -moz-margin-start: 0.22rem;
            margin-inline-start: 0.22rem;
    font-size: 0.47rem;
    line-height: 0.72rem;
    white-space: nowrap;
    letter-spacing: -1px;
  }
}
.g__footer .subscribe-newsletter .subscribe_wrapper {
  margin-top: 0.13rem;
  height: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .g__footer .subscribe-newsletter .subscribe_wrapper {
    margin-top: 0.2rem;
    height: 0.6rem;
  }
}
.g__footer .subscribe-newsletter .subscribe_wrapper .input {
  height: 100%;
  width: 5.16rem;
  background: rgb(228, 233, 240);
  font-size: 0.2rem;
  padding: 0 0.2rem;
}
@media screen and (max-width: 800px) {
  .g__footer .subscribe-newsletter .subscribe_wrapper .input {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 0.26rem;
    padding: 0 0.1rem;
  }
}
.g__footer .subscribe-newsletter .subscribe_wrapper .input::-webkit-input-placeholder {
  color: #999999;
}
.g__footer .subscribe-newsletter .subscribe_wrapper .input::-moz-placeholder {
  color: #999999;
}
.g__footer .subscribe-newsletter .subscribe_wrapper .input:-ms-input-placeholder {
  color: #999999;
}
.g__footer .subscribe-newsletter .subscribe_wrapper .input::placeholder {
  color: #999999;
}
.g__footer .subscribe-newsletter .subscribe_wrapper .btn {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  --height: 100%;
  --font-size: 0.2rem;
}
@media screen and (max-width: 800px) {
  .g__footer .subscribe-newsletter .subscribe_wrapper .btn {
    --min-width: 1.87rem;
    --font-size: 0.26rem;
  }
}
.g__footer .subscribe-newsletter .privacy-checkbox {
  margin-top: 0.26rem;
}
@media screen and (max-width: 800px) {
  .g__footer .subscribe-newsletter .privacy-checkbox {
    margin-top: 0.24rem;
  }
}
.g__footer .subscribe-newsletter .privacy-checkbox .checkbox-box {
  width: 7.1rem;
}
@media screen and (max-width: 800px) {
  .g__footer .subscribe-newsletter .privacy-checkbox .checkbox-box {
    width: 100%;
  }
}
.g__footer .logo-nav-address {
  margin-top: 0.92rem;
  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;
}
.g__footer .logo-nav-address .logo {
  height: 0.6rem;
  -webkit-margin-end: 1.16rem;
     -moz-margin-end: 1.16rem;
          margin-inline-end: 1.16rem;
}
.g__footer .logo-nav-address .logo .logo-img {
  height: 100%;
}
.g__footer .logo-nav-address .nav_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.g__footer .logo-nav-address .nav_wrapper .cell-box .link {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #1C1C1C;
}
.g__footer .logo-nav-address .nav_wrapper .cell-box .link:first-child {
  margin-top: 0;
}
.g__footer .logo-nav-address .nav_wrapper .br {
  height: inherit;
  margin: 0 auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.g__footer .logo-nav-address .nav_wrapper .br::after {
  content: "";
  position: absolute;
  height: 92%;
  width: 0.01rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(144, 169, 205, 0.3);
}
.g__footer .logo-nav-address .nav_wrapper .product-box {
  width: 4.12rem;
  background-color: transparent;
}
.g__footer .logo-nav-address .nav_wrapper .product-box .product-text {
  width: 100%;
  color: #1C1C1C;
  font-size: 0.2rem;
  line-height: 0.3rem;
}
.g__footer .logo-nav-address .nav_wrapper .product-box .link-list {
  margin-top: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g__footer .logo-nav-address .nav_wrapper .product-box .link-list .link {
  width: calc(50% - 0.1rem);
  color: #4A4B4D;
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin-bottom: 0.12rem;
}
.g__footer .logo-nav-address .nav_wrapper .product-box .link-list .link:last-child, .g__footer .logo-nav-address .nav_wrapper .product-box .link-list .link:nth-last-child(2) {
  margin-bottom: 0;
}
.g__footer .logo-nav-address .address-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g__footer .logo-nav-address .address-box .key {
  width: 0.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 0.05rem;
}
.g__footer .logo-nav-address .address-box .key .svg {
  width: 100%;
}
.g__footer .logo-nav-address .address-box .value {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 2.04rem;
  -webkit-margin-start: 0.19rem;
     -moz-margin-start: 0.19rem;
          margin-inline-start: 0.19rem;
  color: #1C1C1C;
  font-size: 0.2rem;
  line-height: 0.36rem;
}
@media screen and (max-width: 800px) {
  .g__footer .footer-nav-list {
    margin-top: 0.59rem;
  }
  .g__footer .footer-nav-list .nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .g__footer .footer-nav-list .nav-list dl {
    margin-bottom: 0.42rem;
  }
  .g__footer .footer-nav-list .nav-list dl:last-child {
    margin-bottom: 0;
  }
  .g__footer .footer-nav-list .nav-list dl dt {
    font-size: 0.32rem;
    line-height: 0.58rem;
    color: #1C1C1C;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .g__footer .footer-nav-list .nav-list dl dt .arrows {
    width: 0.32rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .g__footer .footer-nav-list .nav-list dl dt .arrows .sub {
    display: none;
  }
  .g__footer .footer-nav-list .nav-list dl dt.active .arrows .add {
    display: none;
  }
  .g__footer .footer-nav-list .nav-list dl dt.active .arrows .sub {
    display: block;
  }
  .g__footer .footer-nav-list .nav-list dl dd {
    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: 0;
    overflow: hidden;
  }
  .g__footer .footer-nav-list .nav-list dl dd .link-list {
    padding-top: 0.1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 0.1rem;
  }
  .g__footer .footer-nav-list .nav-list dl dd .link-list .link {
    width: calc(50% - 0.05rem);
    font-size: 0.24rem;
    line-height: 0.6rem;
    color: #1C1C1C;
    margin-bottom: 0.24rem;
  }
  .g__footer .footer-nav-list .nav-list dl dd .link-list .link:last-child, .g__footer .footer-nav-list .nav-list dl dd .link-list .link:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.g__footer .external-links-copyright {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g__footer .external-links-copyright {
    margin-top: 0.56rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.g__footer .external-links-copyright .external-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .g__footer .external-links-copyright .external-links {
    gap: 0.16rem 0.32rem;
  }
}
.g__footer .external-links-copyright .external-links .link {
  height: 0.39rem;
  width: 0.39rem;
  -webkit-margin-end: 0.32rem;
     -moz-margin-end: 0.32rem;
          margin-inline-end: 0.32rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .g__footer .external-links-copyright .external-links .link {
    height: 0.82rem;
    width: auto;
    -webkit-margin-end: 0;
       -moz-margin-end: 0;
            margin-inline-end: 0;
  }
}
.g__footer .external-links-copyright .external-links .link .link-icon {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .g__footer .external-links-copyright .address-box {
    margin-top: 0.54rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .g__footer .external-links-copyright .address-box .key {
    width: 0.4rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-top: 0.02rem;
  }
  .g__footer .external-links-copyright .address-box .key .svg {
    width: 100%;
  }
  .g__footer .external-links-copyright .address-box .value {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-margin-start: 0.08rem;
       -moz-margin-start: 0.08rem;
            margin-inline-start: 0.08rem;
    color: #1C1C1C;
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
}
.g__footer .external-links-copyright .copyright-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;
  margin-top: 0.05rem;
}
@media screen and (max-width: 800px) {
  .g__footer .external-links-copyright .copyright-link {
    margin-top: 0.3rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.g__footer .external-links-copyright .copyright-link .copyright {
  color: #7B859B;
  font-size: 0.16rem;
  line-height: 0.2rem;
}
@media screen and (max-width: 800px) {
  .g__footer .external-links-copyright .copyright-link .copyright {
    width: 5.8rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
}
.g__footer .external-links-copyright .copyright-link .link {
  -webkit-margin-start: 0.16rem;
     -moz-margin-start: 0.16rem;
          margin-inline-start: 0.16rem;
  color: #7B859B;
  font-size: 0.16rem;
  line-height: 0.2rem;
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .g__footer .external-links-copyright .copyright-link .link {
    margin-top: 0.16rem;
    -webkit-margin-start: 0;
       -moz-margin-start: 0;
            margin-inline-start: 0;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
}

.customize-page .main .-service .wrapper {
  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;
  padding-top: 2.04rem;
}
.customize-page .main .-service .wrapper .img {
  width: 100%;
  height: 5rem;
  margin-top: 0.4rem;
}
.customize-page .main .-service .wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .customize-page .main .-service .wrapper {
    position: relative;
    padding-top: 0;
  }
  .customize-page .main .-service .wrapper .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 0;
  }
  .customize-page .main .-service .wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .customize-page .main .-service .wrapper .box {
    position: relative;
    z-index: 1;
  }
  .customize-page .main .-service .wrapper .box .wal {
    display: -webkit-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: 7.5rem;
    padding: 0.32rem 0.4rem;
  }
  .customize-page .main .-service .wrapper .box .wal .sk-section-title {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
}
.customize-page .main .customized-products .h2-class {
  display: -webkit-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-top: 0.62rem;
  padding-bottom: 0.68rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class {
    -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;
    padding-top: 0.9rem;
    padding-bottom: 0.7rem;
    overflow: hidden;
  }
}
.customize-page .main .customized-products .h2-class .h2 {
  font-size: 0.54rem;
  line-height: 0.68rem;
  color: #333333;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class .h2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.customize-page .main .customized-products .h2-class .h2 span {
  color: var(--sk-global-color);
}
.customize-page .main .customized-products .h2-class .class_wrapper {
  overflow-x: auto;
  padding: 0.14rem;
  max-width: 50%;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class .class_wrapper {
    max-width: none;
    padding-bottom: 0.16rem;
    padding: 0.16rem 0.4rem 0.16rem 0.4rem;
    max-width: 100vw;
    margin: 0 -0.4rem;
  }
}
.customize-page .main .customized-products .h2-class .class-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class .class-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 0.32rem;
  }
}
.customize-page .main .customized-products .h2-class .class-list .icon {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class .class-list .icon {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.customize-page .main .customized-products .h2-class .class-list .icon:nth-child(2) {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.customize-page .main .customized-products .h2-class .class-list .icon::before {
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  border: 0.01rem solid #C30D23;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class .class-list .icon::before {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.customize-page .main .customized-products .h2-class .class-list .class-li {
  height: 1.45rem;
  width: 1.45rem;
  border: 0.01rem solid #D5E3F9;
  border-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class .class-list .class-li {
    width: 1.6rem;
    height: 1.64rem;
  }
}
.customize-page .main .customized-products .h2-class .class-list .class-li .icon {
  left: auto;
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.customize-page .main .customized-products .h2-class .class-list .class-li .icon:last-child {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
.customize-page .main .customized-products .h2-class .class-list .class-li:last-child {
  border-right: 0.01rem solid #D5E3F9;
}
.customize-page .main .customized-products .h2-class .class-list .class-li .svg {
  max-width: 1.12rem;
  max-height: 1.12rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .h2-class .class-list .class-li .svg {
    max-width: 1.27rem;
    max-height: 1rem;
  }
}
.customize-page .main .customized-products .product-list .product-box {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  min-height: 8rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  --background: RGBA(252, 251, 250, 1);
  background: var(--background);
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box {
    min-height: 0;
    padding-top: 0.3rem;
    position: relative;
  }
}
.customize-page .main .customized-products .product-list .product-box:nth-child(2n) .flex-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box:nth-child(2n) .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box {
  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;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .left-img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-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.7rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .left-img {
    padding: 0;
    width: 100%;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .left-img .img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .left-img .img {
    max-width: 100%;
    max-height: 4.8rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 7.56rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .title {
  color: #333333;
  font-size: 0.36rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .title {
    font-size: 0.48rem;
    line-height: 0.52rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list {
  margin-top: 0.35rem;
  padding-left: 0.3rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list {
    margin-top: 0.3rem;
    padding-left: 0.5rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box {
  padding-bottom: 0.36rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box {
    padding-bottom: 0.48rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .before {
  position: absolute;
  height: 100%;
  width: 0.01rem;
  top: 0.12rem;
  left: -0.2rem;
  background-color: #D5E3F9;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .before {
    top: 0.32rem;
    left: -0.28rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .before::after {
  content: "";
  position: absolute;
  left: 0;
  top: var(--before-top, -0.3rem);
  width: 100%;
  height: 0.3rem;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .before::after {
    height: 0.6rem;
    top: var(--before-top, -0.6rem);
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box:last-child .before {
  display: none;
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title::before {
  content: "";
  position: absolute;
  top: 0.08rem;
  left: -0.27rem;
  height: 0.12rem;
  width: 0.12rem;
  border-radius: 50%;
  background-color: var(--background);
  border: 0.01rem solid #C30D23;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title::before {
    height: 0.24rem;
    width: 0.24rem;
    top: 0.16rem;
    left: -0.42rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title .name {
  font-size: 0.24rem;
  color: #7B859B;
  line-height: 0.32rem;
  -webkit-margin-end: 0.14rem;
     -moz-margin-end: 0.14rem;
          margin-inline-end: 0.14rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title .name {
    font-size: 0.32rem;
    -webkit-margin-end: 0.22rem;
       -moz-margin-end: 0.22rem;
            margin-inline-end: 0.22rem;
    line-height: 0.64rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title .arrows {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title .arrows {
    margin-top: 0.16rem;
    width: 0.32rem;
    height: 0.32rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title .arrows .img {
  height: 100%;
  width: 100%;
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title .arrows .img.add {
  display: var(--arrows-none, block);
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title .arrows .img.sub {
  display: var(--arrows-block, none);
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .text-box {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .text-box .text {
  padding-top: 0.1rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #1C1C1C;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .text-box .text {
    padding-top: 0.12rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .text-box .text p {
  margin-bottom: 0.16rem;
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .text-box .text p:last-child {
  margin-bottom: 0;
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box.active {
  --before-top: 100%;
  --arrows-block: block;
  --arrows-none: none;
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box.active .before::after {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .nodes {
  margin-top: 0.3rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: #1C1C1C;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .nodes {
    margin-top: 0;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.customize-page .main .customized-products .product-list .product-box .flex-box .right-box .sk0-btn {
  margin-top: 0.35rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .sk0-btn {
    margin-top: 0.24rem;
    --min-width: 2.3rem;
  }
}
.customize-page .main .customization-advantages {
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customization-advantages {
    padding-bottom: 0.8rem;
  }
}
.customize-page .main .customization-advantages .h2 {
  font-size: 0.54rem;
  line-height: 0.68rem;
  color: #333333;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .customize-page .main .customization-advantages .h2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.customize-page .main .customization-advantages .h2 span {
  color: var(--sk-global-color);
}
.customize-page .main .customization-advantages .card-container {
  margin-top: 0.36rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customization-advantages .card-container {
    margin-top: 1.16rem;
  }
}
.customize-page .main .customization-advantages .card-container .bg-box {
  width: 100%;
}
.customize-page .main .customization-advantages .card-container .bg-box .bg-img {
  width: 100%;
}
.customize-page .main .customization-advantages .card-container .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customization-advantages .card-container .card-list {
    position: relative;
    display: block;
    margin-top: 0.64rem;
  }
}
.customize-page .main .customization-advantages .card-container .card-list .card-li {
  width: calc((100% - 0.6rem) / 4);
  -webkit-margin-end: 0.2rem;
     -moz-margin-end: 0.2rem;
          margin-inline-end: 0.2rem;
  padding: 0.46rem 0.23rem;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customization-advantages .card-container .card-list .card-li {
    width: 100%;
    padding: 0.26rem 0 0.42rem;
    width: calc(100% - 0.4rem);
    margin: 0 0.2rem;
    border-top: 0.01rem solid #D5E3F9;
    position: relative;
    text-align: left;
  }
  .customize-page .main .customization-advantages .card-container .card-list .card-li::before {
    content: "";
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -0.17rem;
    height: 0.11rem;
    width: 0.11rem;
    border-radius: 50%;
    border: 0.01rem solid #C30D23;
  }
  .customize-page .main .customization-advantages .card-container .card-list .card-li::after {
    content: "";
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -0.17rem;
    height: 0.11rem;
    width: 0.11rem;
    border-radius: 50%;
    border: 0.01rem solid #C30D23;
  }
}
.customize-page .main .customization-advantages .card-container .card-list .card-li:last-child {
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
}
.customize-page .main .customization-advantages .card-container .card-list .card-li .name {
  font-family: var(--sk-font-Bold);
  font-size: 0.28rem;
  line-height: 0.4rem;
  min-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;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customization-advantages .card-container .card-list .card-li .name {
    color: #333333;
    font-size: 0.32rem;
    line-height: 0.52rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.customize-page .main .customization-advantages .card-container .card-list .card-li .text {
  margin-top: 0.21rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .customization-advantages .card-container .card-list .card-li .text {
    margin-top: 0.2rem;
    color: #666666;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.customize-page .main .frequently-asked-questions {
  padding-top: 1.14rem;
  padding-bottom: 1.02rem;
  background-color: #FBFCFE;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions {
    padding-top: 0.76rem;
    padding-bottom: 0.56rem;
  }
}
.customize-page .main .frequently-asked-questions .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) {
  .customize-page .main .frequently-asked-questions .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .left-box {
  padding-right: 1.44rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .left-box {
    padding-right: 0;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .left-box .h2 {
  font-size: 0.54rem;
  line-height: 0.68rem;
  color: #333333;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .left-box .h2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    width: 4rem;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .left-box .h2 span {
  color: var(--sk-global-color);
}
.customize-page .main .frequently-asked-questions .flex-box .left-box .img-box {
  margin-top: 0.58rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .left-box .img-box {
    margin-top: 0;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .left-box .img-box .img {
  width: 4.58rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .left-box .img-box .img {
    width: 100%;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .right-box {
  width: 8.18rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .right-box {
    width: 100%;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list {
  margin-top: 0.1rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list {
    margin-top: 0.32rem;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box {
  padding-top: 0.36rem;
  padding-bottom: 0.36rem;
  position: relative;
  border-bottom: 0.01rem solid #D5E3F9;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box {
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box:first-child {
  padding-top: 0;
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title .name {
  font-size: 0.24rem;
  line-height: 0.32rem;
  -webkit-margin-end: 0.24rem;
     -moz-margin-end: 0.24rem;
          margin-inline-end: 0.24rem;
  font-family: var(--sk-font-Bold);
  color: var(--name-color, #7B859B);
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title .name {
    font-size: 0.32rem;
    line-height: 0.52rem;
    -webkit-margin-end: 0.1rem;
       -moz-margin-end: 0.1rem;
            margin-inline-end: 0.1rem;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title .arrows {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title .arrows {
    width: 0.32rem;
    height: 0.32rem;
    margin-top: 0.1rem;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title .arrows .img {
  height: 100%;
  width: 100%;
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title .arrows .img.add {
  display: var(--arrows-none, block);
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .av-title .arrows .img.sub {
  display: var(--arrows-block, none);
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .text-box {
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  height: 0;
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .text-box .text {
  padding-top: 0.14rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #1C1C1C;
}
@media screen and (max-width: 800px) {
  .customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .text-box .text {
    padding-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .text-box .text p {
  margin-bottom: 0.16rem;
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box .text-box .text p:last-child {
  margin-bottom: 0;
}
.customize-page .main .frequently-asked-questions .flex-box .right-box .cell-list .cell-box.active {
  --arrows-block: block;
  --arrows-none: none;
  --name-color: #333333;
}
.customize-page .fiexd-classify-box {
  position: fixed;
  top: var(--fiexd-classify-top);
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0.04rem);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.customize-page .fiexd-classify-box.show {
  opacity: 1;
  visibility: visible;
}
.customize-page .fiexd-classify-box.align-center .wal .swiper-container {
  overflow-y: auto;
  scrollbar-color: transparent transparent;
}
.customize-page .fiexd-classify-box.align-center .wal .swiper-container .swiper-wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.customize-page .fiexd-classify-box .wal {
  max-width: 100%;
  padding: 0 0.64rem;
  overflow: hidden;
}
.customize-page .fiexd-classify-box .wal .swiper-container {
  overflow: visible;
}
.customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide {
  width: auto;
  -webkit-margin-end: 0.73rem;
     -moz-margin-end: 0.73rem;
          margin-inline-end: 0.73rem;
}
.customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide:last-child {
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
}
.customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide 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;
  min-height: 0.76rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: white;
}
.customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide a::before {
  content: "";
  position: absolute;
  background-color: var(--sk-global-color);
  height: 0.03rem;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide a::before {
    height: 0.06rem;
  }
}
.customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide.on a {
  color: var(--sk-global-color);
  position: relative;
}
.customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide.on a::before {
  opacity: 1;
}
@media screen and (min-width: 800px) {
  .customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide:hover a {
    color: var(--sk-global-color);
  }
}
@media screen and (max-width: 800px) {
  .customize-page .fiexd-classify-box {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .customize-page .fiexd-classify-box .wal {
    max-width: 100%;
    padding: 0;
  }
  .customize-page .fiexd-classify-box .wal .swiper-container {
    overflow: visible;
    overflow-x: auto;
  }
  .customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide {
    padding-left: 0.64rem;
  }
  .customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide:last-child {
    -webkit-margin-end: 0.64rem;
       -moz-margin-end: 0.64rem;
            margin-inline-end: 0.64rem;
  }
  .customize-page .fiexd-classify-box .wal .swiper-container .swiper-wrapper .swiper-slide 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;
    min-height: 1.2rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: white;
  }
  .customize-page .page-box .page-head .wal {
    padding-top: 1.88rem;
  }
  .customize-page .page-box .page-head .wal .sk-section-title {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
  .customize-page .page-box .page-head .wal .classify-box {
    margin-top: 0.86rem;
    overflow: hidden;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide {
    width: auto;
    -webkit-margin-end: 0.9rem;
       -moz-margin-end: 0.9rem;
            margin-inline-end: 0.9rem;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide:last-child {
    -webkit-margin-end: 0;
       -moz-margin-end: 0;
            margin-inline-end: 0;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a .img {
    max-width: 80%;
    height: 0.9rem;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a .img img {
    min-height: 0.8rem;
    max-height: 0.9rem;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-wrapper .swiper-slide a span {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-top: 0.24rem;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control {
    position: relative;
    padding: 0 0.5rem;
    height: 0.47rem;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .prev,
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .next {
    position: absolute;
    width: 0.47rem;
    height: 0.47rem;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .prev img,
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-arrow .next {
    left: auto;
    right: 0;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress {
    --progress: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin-top: 0.52rem;
    padding: 0 0.2rem;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .min-size {
    font-size: 0.24rem;
    line-height: 0.39rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .progress-line {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
    background-color: #D5E3F9;
    margin: 0 0.18rem;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .progress-line::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: calc(var(--progress) * 100%);
    height: 5px;
    background-color: #D5E3F9;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    -webkit-transition: none;
    transition: none;
  }
  .customize-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .max-size {
    font-size: 0.24rem;
    line-height: 0.39rem;
    color: #7B859B;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal {
    position: relative;
    padding-top: 1.58rem;
    padding-bottom: 0.91rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .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;
    max-width: 100%;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .info .img {
    position: static;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 4rem;
    z-index: -1;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .info .name {
    margin-top: 0.62rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .info .context {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info {
    margin-top: 0.36rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .title {
    max-width: 100%;
    font-size: 0.4rem;
    line-height: 0.56rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list {
    --dotWidth: 0.16rem;
    margin-top: 0.56rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .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;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li {
    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;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    padding: 0.6rem 0.2rem;
    min-height: 3.42rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li::after {
    right: 0;
    top: 0;
    left: 0.15rem;
    width: calc(100% - 0.3rem);
    height: 1px;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li::before {
    content: "";
    display: block;
    position: absolute;
    display: none;
    bottom: 0;
    left: 0.15rem;
    width: calc(100% - 0.3rem);
    height: 1px;
    background-color: #D5E3F9;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::before, .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::after {
    left: 0;
    top: 0.15rem;
    width: 1px;
    height: calc(100% - 0.3rem);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::after {
    left: auto;
    right: 0;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot .dot-left::before {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot .dot-left::after {
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child::after, .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child::before {
    display: block;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::before, .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::after {
    left: 0;
    top: 0.15rem;
    width: 1px;
    height: calc(100% - 0.3rem);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::after {
    left: auto;
    right: 0;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot .dot-right {
    display: block;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot .dot-right::before {
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot .dot-right::after {
    -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::before, .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before,
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right {
    display: none;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::before, .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::after {
    left: 0;
    top: 0.15rem;
    width: 1px;
    height: calc(100% - 0.3rem);
    border-radius: 0;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::after {
    top: 0.15rem;
    right: 0;
    left: auto;
    bottom: auto;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .name-box {
    font-size: 0.32rem;
    line-height: 0.52rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .name-box img {
    width: 0.6rem;
    height: 0.6rem;
    -webkit-margin-end: 0.18rem;
       -moz-margin-end: 0.18rem;
            margin-inline-end: 0.18rem;
  }
  .customize-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .text {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .customize-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .customize-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal .info .params-list::before {
    background: url(../images/product/line-left.svg) center center no-repeat;
    background-size: contain;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .customize-page .page-box .page-body .page-content .product-box .wal {
    padding-top: 0;
    padding-bottom: 1.16rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info {
    max-width: 100%;
    width: 100%;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .img {
    position: static;
    width: 100%;
    height: 4.25rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .title {
    font-size: 0.32rem;
    line-height: 0.52rem;
    margin-top: 0.62rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .context {
    margin-top: 0.26rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .btn-box {
    margin-top: 0.42rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .params-list {
    position: relative;
    padding-top: 0.58rem;
    margin-top: 0.92rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .params-list::before {
    width: 100%;
    height: 0.58rem;
    background: url(../images/product/line-right.svg) center center no-repeat;
    background-size: contain;
    z-index: -1;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .params-list ul {
    gap: 0.24rem 0.1rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .params-list ul li {
    width: calc((100% - 0.1rem) / 2);
    font-size: 0.28rem;
    line-height: 0.44rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .download-btn {
    margin-top: 0.96rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .download-btn a {
    font-size: 0.28rem;
    line-height: 0.6rem;
  }
  .customize-page .page-box .page-body .page-content .product-box .wal .info .download-btn a img {
    width: 0.4rem;
    height: 0.4rem;
    -webkit-margin-start: 0.2rem;
       -moz-margin-start: 0.2rem;
            margin-inline-start: 0.2rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal {
    padding: 0.76rem 0 0.48rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-head {
    padding: 0 0.4rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.18rem;
    border-top: 0;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-left {
    max-width: 100%;
    width: 100%;
    padding: 0 0.4rem 0.28rem;
    border: none;
    border-bottom: 1px solid #D5E3F9;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-left .title {
    font-size: 0.32rem;
    line-height: 0.6rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list {
    margin-top: 0.18rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li {
    position: relative;
    padding-left: 0;
    font-size: 0.26rem;
    line-height: 0.32rem;
    margin-top: 0.16rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li:first-child {
    margin-top: 0;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li::before {
    display: none;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.66rem 0.4rem 0;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box {
    max-width: 100%;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot {
    width: 0.64rem;
    height: 0.64rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right .img-box .dots .animate-dot em {
    width: 0.13rem;
    height: 0.13rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips {
    margin: 0.64rem 0 0;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner {
    font-size: 0.28rem;
    line-height: 0.44rem;
    padding-left: 0.4rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner .dot {
    top: 0.2rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .customize-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner .dot em {
    width: 0.12rem;
    height: 0.12rem;
  }
  .customize-page .page-box .page-body .page-content .support-box {
    display: none;
  }
}

.aboutUs-page .main .-service .wrapper {
  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;
  padding-top: 2.04rem;
}
.aboutUs-page .main .-service .wrapper .img {
  width: 100%;
  height: 5rem;
  margin-top: 0.4rem;
}
.aboutUs-page .main .-service .wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .-service .wrapper {
    position: relative;
    padding-top: 0;
  }
  .aboutUs-page .main .-service .wrapper .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 0;
  }
  .aboutUs-page .main .-service .wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .aboutUs-page .main .-service .wrapper .box {
    position: relative;
    z-index: 1;
  }
  .aboutUs-page .main .-service .wrapper .box .wal {
    display: -webkit-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: 7.5rem;
    padding: 0.32rem 0.4rem;
  }
  .aboutUs-page .main .-service .wrapper .box .wal .sk-section-title {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
}
.aboutUs-page .main .introduction-our {
  overflow: hidden;
  padding-bottom: 1.03rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our {
    padding-bottom: 0.62rem;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry {
  padding-top: 0.8rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry {
    padding-top: 0.9rem;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .bg-img-box {
  padding-bottom: 1.03rem;
  position: absolute;
  right: 0;
  top: 0.68rem;
  width: 10.63rem;
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .bg-img-box {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .bg-img-box .img {
  width: 100%;
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .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) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .left-box {
  width: 7.78rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .left-box {
    width: 100%;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .left-box .h2 {
  font-size: 0.54rem;
  line-height: 0.68rem;
  color: #333333;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .left-box .h2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .left-box .h2 span {
  color: var(--sk-global-color);
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .left-box .text {
  margin-top: 0.34rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #333333;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .left-box .text {
    margin-top: 0.18rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 1.06rem;
  padding-left: 1.8rem;
  padding-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box {
    padding: 0;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box .num_wrapper {
  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;
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box .num_wrapper .num-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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 2.64rem;
  margin-bottom: 0.87rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box .num_wrapper .num-li {
    max-width: 3.1rem;
    margin-top: 0.58rem;
    margin-bottom: 0;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box .num_wrapper .num-li .num {
  font-size: 0.96rem;
  line-height: 1.28rem;
  font-family: var(--sk-font-Num);
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box .num_wrapper .num-li .num {
    font-size: 0.72rem;
    line-height: 0.96rem;
  }
}
.aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box .num_wrapper .num-li .label {
  color: #333333;
  font-size: 0.2rem;
  line-height: 0.3rem;
  max-width: 2.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box .num_wrapper .num-li .label {
    margin-top: 0.12rem;
    max-width: 3.1rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .our-carousel {
    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;
  }
}
.aboutUs-page .main .introduction-our .our-carousel .our-wrapper {
  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) {
  .aboutUs-page .main .introduction-our .our-carousel .our-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box {
  margin-top: 0.9rem;
  width: calc((100% - 0.93rem) / 2);
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box {
    width: 100%;
    margin-top: 0.7rem;
  }
  .aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box:first-child {
    margin-top: 0.3rem;
  }
}
.aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box .tit {
  color: #7B859B;
  font-size: 0.36rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box .tit {
    font-size: 0.4rem;
    line-height: 0.8rem;
  }
}
.aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box .tit span {
  color: var(--sk-global-color);
}
.aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box .our-text {
  margin-top: 0.18rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .our-carousel .our-wrapper .our-box .our-text {
    margin-top: 0;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.aboutUs-page .main .introduction-our .our-carousel .our-swiper {
  margin-top: 0.94rem;
  -webkit-margin-start: auto;
     -moz-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
     -moz-margin-end: auto;
          margin-inline-end: auto;
  width: 9.17rem;
  height: 6.68rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .introduction-our .our-carousel .our-swiper {
    width: 6.42rem;
    max-width: 96%;
    height: 4.7rem;
  }
}
.aboutUs-page .main .honors-qualifications {
  background-color: #FBFCFE;
  padding-top: 0.76rem;
  padding-bottom: 0.92rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications {
    padding-top: 0.66rem;
    padding-bottom: 1.11rem;
  }
}
.aboutUs-page .main .honors-qualifications .wal .h2 {
  font-size: 0.54rem;
  line-height: 0.68rem;
  color: #333333;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .h2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.aboutUs-page .main .honors-qualifications .wal .h2 span {
  color: var(--sk-global-color);
}
.aboutUs-page .main .honors-qualifications .wal .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;
  margin-top: 0.38rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box {
    margin-top: 0.54rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .left-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .left-box .honors-list {
  margin-top: 0.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(-0.3rem);
      -ms-transform: translateX(-0.3rem);
          transform: translateX(-0.3rem);
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .left-box .honors-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .left-box .honors-list .honors-li {
  height: 1.2rem;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .left-box .honors-list .honors-li {
    height: 0.85rem;
    margin-bottom: 0;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .left-box .honors-list .honors-li:last-child {
  margin-bottom: 0;
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .left-box .honors-list .honors-li .img {
  height: 100%;
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-margin-end: 1rem;
     -moz-margin-end: 1rem;
          margin-inline-end: 1rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper {
    -webkit-margin-end: 0;
       -moz-margin-end: 0;
            margin-inline-end: 0;
    margin-top: 0.98rem;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-prev {
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  top: 50%;
  left: -0.84rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-prev {
    left: -0.04rem;
    width: 0.72rem;
    height: 0.72rem;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-next {
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0.84rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-next {
    right: -0.04rem;
    width: 0.72rem;
    height: 0.72rem;
  }
}
@media screen and (min-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .svg:hover path,
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .svg:hover line,
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .svg:hover circle {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    stroke: var(--sk-global-color);
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box {
  padding: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper {
  width: 8.1rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper {
    width: 4.96rem;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper {
  -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;
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide {
  width: 3.75rem;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide {
    width: 4.96rem;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box {
  border: 0.01rem solid #D5E3F9;
  padding: 0.18rem 0.16rem 0.17rem 0.17rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box {
    border: 0.02rem solid #D5E3F9;
    padding: 0.24rem 0.22rem 0.22rem 0.22rem;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .bg-img {
  width: 100%;
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner::before {
  content: "";
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  border: 0.02rem solid #C30D23;
  background: #FBFCFE;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner::before {
    border: 0.04rem solid #C30D23;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner::after {
  content: "";
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  border: 0.02rem solid #C30D23;
  background: #FBFCFE;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner::after {
    border: 0.04rem solid #C30D23;
  }
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner.top::before {
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner.top::after {
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner.bottom::before {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .img-box .corner.bottom::after {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.contactUs-page .main .-service .wrapper {
  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;
  padding-top: 2.04rem;
}
.contactUs-page .main .-service .wrapper .img {
  width: 100%;
  height: 5rem;
  margin-top: 0.4rem;
}
.contactUs-page .main .-service .wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .-service .wrapper {
    position: relative;
    padding-top: 0;
  }
  .contactUs-page .main .-service .wrapper .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 0;
  }
  .contactUs-page .main .-service .wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contactUs-page .main .-service .wrapper .box {
    position: relative;
    z-index: 1;
  }
  .contactUs-page .main .-service .wrapper .box .wal {
    display: -webkit-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: 7.5rem;
    padding: 0.32rem 0.4rem;
  }
  .contactUs-page .main .-service .wrapper .box .wal .sk-section-title {
    font-size: 0.72rem;
    line-height: 0.84rem;
  }
}
.contactUs-page .main .form-map-section {
  padding-top: 1.09rem;
  padding-bottom: 0.89rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section {
    padding-top: 0.58rem;
    padding-bottom: 0.18rem;
  }
}
.contactUs-page .main .form-map-section .form-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contactUs-page .main .form-map-section .form-box .form-title {
  color: #7B859B;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
  width: 100%;
  text-align: center;
  margin-bottom: 0.44rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-title {
    font-size: 0.36rem;
    line-height: 0.64rem;
    margin-bottom: 0.42rem;
  }
}
.contactUs-page .main .form-map-section .form-box .form-item {
  margin-bottom: 0.18rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-item {
    margin-bottom: 0.36rem;
  }
}
.contactUs-page .main .form-map-section .form-box .form-item.row1 {
  width: 100%;
}
.contactUs-page .main .form-map-section .form-box .form-item.row2 {
  width: calc(50% - 0.24rem);
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-item.row2 {
    width: 100%;
  }
}
.contactUs-page .main .form-map-section .form-box .form-item .input {
  height: 0.54rem;
  width: 100%;
  border: 0.01rem solid #D5E3F9;
  padding: 0 0.27rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-item .input {
    height: 1.08rem;
    border: 0.02rem solid #D5E3F9;
    padding: 0 0.22rem;
    font-size: 0.26rem;
  }
}
.contactUs-page .main .form-map-section .form-box .form-item .input::-webkit-input-placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .input::-moz-placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .input:-ms-input-placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .input::placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .textarea {
  width: 100%;
  height: 1.62rem;
  padding: 0.17rem 0.27rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  border: 0.01rem solid #D5E3F9;
  resize: none;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-item .textarea {
    height: 2.14rem;
    font-size: 0.26rem;
    padding: 0.22rem;
    line-height: 0.32rem;
  }
}
.contactUs-page .main .form-map-section .form-box .form-item .textarea::-webkit-input-placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .textarea::-moz-placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .textarea:-ms-input-placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .textarea::placeholder {
  color: #7B859B;
}
.contactUs-page .main .form-map-section .form-box .form-item .code-img {
  position: absolute;
  top: 0.01rem;
  right: 0.01rem;
  height: calc(100% - 0.02rem);
  width: 1.89rem;
  object-fit: fill;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-item .code-img {
    height: 0.7rem;
    width: 2.46rem;
    right: 0.2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.contactUs-page .main .form-map-section .form-box .form-item .sk0-btn {
  text-align: right;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-item .sk0-btn {
    margin-top: 0.36rem;
    text-align: center;
    height: 0.92rem;
    --height: 0.92rem;
    --min-width: 2.97rem;
    --font-size: 0.32rem;
    --icon-size: .5rem;
  }
}
.contactUs-page .main .form-map-section .form-box .form-item .privacy-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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .form-box .form-item .privacy-btn {
    display: block;
  }
}
.contactUs-page .main .form-map-section .form-box .form-item .privacy-btn .privacy-checkbox {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contactUs-page .main .form-map-section .map-box {
  margin-top: 0.7rem;
  height: 6.79rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box {
    margin-top: 0.22rem;
    height: auto;
  }
}
.contactUs-page .main .form-map-section .map-box .map {
  height: 100%;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map {
    height: 5.4rem;
    width: calc(100% + 0.8rem);
    -webkit-margin-start: -0.4rem;
       -moz-margin-start: -0.4rem;
            margin-inline-start: -0.4rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map .map-img {
  height: 100%;
}
.contactUs-page .main .form-map-section .map-box .map-card {
  width: 3.61rem;
  height: calc(100% - 0.54rem);
  position: absolute;
  top: 0.31rem;
  left: 0.16rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.2rem);
  padding: 0.49rem 0.21rem 0.2rem 0.27rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.66rem 0 0.46rem 0.36rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .address-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .address-title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .address-img {
  margin-top: 0.27rem;
  width: 100%;
  height: 1.62rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .address-img {
    margin-top: 0.42rem;
    height: 3.24rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .address-img .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left top;
}
.contactUs-page .main .form-map-section .map-box .map-card .obj {
  margin-top: 0.54rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .obj {
    margin-top: 0.34rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .obj .key-value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.38rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .obj .key-value {
    margin-bottom: 0.48rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .obj .key-value:last-child {
  margin-bottom: 0;
}
.contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .key {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-top: 0.05rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .key {
    margin-top: 0.02rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .key .icon {
  max-width: 0.22rem;
  max-height: 0.22rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .key .icon {
    max-width: 0.3rem;
    max-height: 0.3rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #1C1C1C;
  font-size: 0.2rem;
  line-height: 0.3rem;
  padding-left: 0.16rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .value {
    padding-left: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .value.link {
  color: #333333;
  font-family: var(--sk-font-Medium);
  font-size: 0.18rem;
  line-height: 0.27rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .value.link {
    font-family: var(--sk-font-Regular);
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
}
.contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .value.phone {
  -webkit-margin-start: -0.15rem;
     -moz-margin-start: -0.15rem;
          margin-inline-start: -0.15rem;
}
@media screen and (max-width: 800px) {
  .contactUs-page .main .form-map-section .map-box .map-card .obj .key-value .value.phone {
    -webkit-margin-start: -0.14rem;
       -moz-margin-start: -0.14rem;
            margin-inline-start: -0.14rem;
  }
}

html:lang(ar) {
  direction: rtl;
  text-align: right;
}
html:lang(ar) .g-header .g-head .g-head-main .center-nav .center-list .a::after {
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}
html:lang(ar) .g-header .g-head .g-head-main .center-nav .center-list .nav-item.on .a::after,
html:lang(ar) .g-header .g-head .g-head-main .center-nav .center-list .nav-item:hover .a::after {
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
html:lang(ar) .g-header .g-head .g-head-main .g-head-right .contact-btn a .text {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
html:lang(ar) .g-header .g-head .g-head-main .g-head-right .contact-btn a .text .svg {
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0.06rem;
     -moz-margin-start: 0.06rem;
          margin-inline-start: 0.06rem;
}
html:lang(ar) .sk0-btn a .text,
html:lang(ar) .sk0-btn .a .text {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html:lang(ar) .sk0-btn a .text span,
html:lang(ar) .sk0-btn .a .text span {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html:lang(ar) .sk0-btn a .text .svg,
html:lang(ar) .sk0-btn .a .text .svg {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html:lang(ar) .sk0-btn a .icon,
html:lang(ar) .sk0-btn .a .icon {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html:lang(ar) .g__footer .backtop-box {
  right: auto;
  left: 0.57rem;
}
html:lang(ar) .text-hover span {
  background-position: right bottom;
}
html:lang(ar) .technology-page .-quality .wal .-body .background-text {
  left: auto;
  right: 0;
}
html:lang(ar) .customize-page .main .customized-products .h2-class .class-list .class-li {
  border-right: 0.01rem solid #D5E3F9;
  border-left: none;
}
html:lang(ar) .customize-page .main .customized-products .h2-class .class-list .class-li:last-child {
  border-left: 0.01rem solid #D5E3F9;
}
@media screen and (min-width: 800px) {
  html:lang(ar) .index-page .future-section .content-box .wal .bg-video {
    right: auto;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .info .img {
    right: auto;
    left: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li::after {
    right: auto;
    left: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot {
    left: auto;
    right: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::before, html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before,
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    left: auto;
    right: 0;
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-left::after,
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::before {
    left: 0;
    right: auto;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot .dot-right::after {
    left: 0;
    right: auto;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::before, html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li .dot::after {
    left: auto;
    right: 0.15rem;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::before, html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:first-child .dot::after {
    left: auto;
    right: 0.15rem;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::before, html:lang(ar) .product-page .page-box .page-body .page-content .top-product .wal .other-info .list ul li:last-child .dot::after {
    left: auto;
    right: calc(0.15rem - var(--dotWidth) / 2);
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .product-box .wal .info .swiper-imgs {
    right: auto;
    left: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .product-box:nth-child(2n) .wal .info .swiper-imgs {
    left: auto;
    right: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left {
    border-right: none;
    border-left: 1px solid #D5E3F9;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list .inner {
    left: auto;
    right: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li {
    padding-left: initial;
    padding-right: 0.24rem;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .main-applications .wal .-body .-left .text-list ul li::before {
    left: auto;
    right: 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right {
    padding: 0.57rem 1.12rem 0.38rem 0;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner {
    padding-left: initial;
    padding-right: 0.3rem;
  }
  html:lang(ar) .product-page .page-box .page-body .page-content .main-applications .wal .-body .-right .tips .inner .dot {
    left: auto;
    right: 0;
  }
  html:lang(ar) .technology-page .-rd .wal .-body .content-list ul li {
    padding: 0 0.28rem 0.1rem 0;
  }
  html:lang(ar) .technology-page .-rd .wal .-body .content-list ul li .dot-line {
    left: auto;
    right: 0;
  }
  html:lang(ar) .technology-page .-rd .wal .-body .img-swiper .arrow .prev {
    left: auto;
    right: 0.32rem;
    -webkit-transform: translate(0, -50%) rotate(180deg);
        -ms-transform: translate(0, -50%) rotate(180deg);
            transform: translate(0, -50%) rotate(180deg);
  }
  html:lang(ar) .technology-page .-rd .wal .-body .img-swiper .arrow .next {
    right: auto;
    left: 0.32rem;
    -webkit-transform: translate(0, -50%) rotate(180deg);
        -ms-transform: translate(0, -50%) rotate(180deg);
            transform: translate(0, -50%) rotate(180deg);
  }
  html:lang(ar) .technology-page .-quality .wal .-body .cart-swiper .swiper-control {
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  html:lang(ar) .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress .min-size {
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  html:lang(ar) .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-progress .max-size {
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  html:lang(ar) .applicationField-page .-application .wal .content-list ul li {
    padding: 0 0.28rem 0.1rem 0;
  }
  html:lang(ar) .applicationField-page .-application .wal .content-list ul li .dot-line {
    left: auto;
    right: 0;
  }
  html:lang(ar) .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item {
    padding-left: initial;
    padding-right: 0.38rem;
  }
  html:lang(ar) .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item::before {
    left: auto;
    right: 0;
  }
  html:lang(ar) .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list {
    padding-left: initial;
    padding-right: 0.3rem;
  }
  html:lang(ar) .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .before {
    left: auto;
    right: -0.2rem;
  }
  html:lang(ar) .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title::before {
    left: auto;
    right: -0.27rem;
  }
  html:lang(ar) .customize-page .main .frequently-asked-questions .flex-box .left-box {
    padding-right: auto;
    padding-left: 1.44rem;
  }
  html:lang(ar) .aboutUs-page .main .introduction-our .hanfeng-aluminium-industry .wal .flex-box .right-box {
    padding-right: 1.8rem;
    padding-left: 0.2rem;
  }
  html:lang(ar) .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-prev {
    left: auto;
    right: -0.84rem;
    -webkit-transform: translateY(-50%) scaleX(-1);
        -ms-transform: translateY(-50%) scaleX(-1);
            transform: translateY(-50%) scaleX(-1);
  }
  html:lang(ar) .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-next {
    right: auto;
    left: -0.84rem;
    -webkit-transform: translateY(-50%) scaleX(-1);
        -ms-transform: translateY(-50%) scaleX(-1);
            transform: translateY(-50%) scaleX(-1);
  }
  html:lang(ar) .contactUs-page .main .form-map-section .form-box .form-item .code-img {
    right: auto;
    left: 0.01rem;
  }
  html:lang(ar) .contactUs-page .main .form-map-section .map-box .map-card {
    left: auto;
    right: 0.16rem;
  }
  html:lang(ar) .cookie-dialog {
    left: auto;
    right: 0.25rem;
  }
}
@media screen and (max-width: 800px) {
  html:lang(ar) .g-header .g-head-phone .g-head-main .logo-box .logo {
    width: 3rem;
  }
  html:lang(ar) .g-header .g-head-phone .head-phone-nav {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  html:lang(ar) .g-header .g-head-phone .head-phone-nav.show {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  html:lang(ar) .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control {
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  html:lang(ar) .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .min-size {
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  html:lang(ar) .product-page .page-box .page-head .wal .classify-box .swiper-container .swiper-control .swiper-progress .max-size {
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  html:lang(ar) .technology-page .-rd .wal .-body .content-list ul li {
    padding: 0 0.68rem 0.16rem 0;
  }
  html:lang(ar) .technology-page .-rd .wal .-body .content-list ul li .dot-line {
    left: auto;
    right: 0;
  }
  html:lang(ar) .technology-page .-rd .wal .-body .img-swiper .arrow .prev {
    -webkit-transform: translate(0, 0) rotate(180deg);
        -ms-transform: translate(0, 0) rotate(180deg);
            transform: translate(0, 0) rotate(180deg);
  }
  html:lang(ar) .technology-page .-rd .wal .-body .img-swiper .arrow .next {
    -webkit-transform: translate(0, 0) rotate(180deg);
        -ms-transform: translate(0, 0) rotate(180deg);
            transform: translate(0, 0) rotate(180deg);
  }
  html:lang(ar) .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .prev,
  html:lang(ar) .technology-page .-quality .wal .-body .cart-swiper .swiper-control .swiper-arrow .next {
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  html:lang(ar) .applicationField-page .-application .wal .content-list ul li {
    padding: 0 0.68rem 0.16rem 0;
  }
  html:lang(ar) .applicationField-page .-application .wal .content-list ul li .dot-line {
    left: auto;
    right: 0;
  }
  html:lang(ar) .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item::before {
    left: auto;
    right: 0;
  }
  html:lang(ar) .applicationField-page .-application .wal .box .list ul li .content .feature .feature-item .name {
    padding-left: initial;
    padding-right: 0.68rem;
  }
  html:lang(ar) .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list {
    padding-left: initial;
    padding-right: 0.5rem;
  }
  html:lang(ar) .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .before {
    left: auto;
    right: -0.28rem;
  }
  html:lang(ar) .customize-page .main .customized-products .product-list .product-box .flex-box .right-box .cell-list .cell-box .av-title::before {
    left: auto;
    right: -0.42rem;
  }
  html:lang(ar) .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-prev {
    left: auto;
    right: -0.04rem;
    -webkit-transform: translateY(-50%) scaleX(-1);
        -ms-transform: translateY(-50%) scaleX(-1);
            transform: translateY(-50%) scaleX(-1);
  }
  html:lang(ar) .aboutUs-page .main .honors-qualifications .wal .flex-box .right-box-wrapper .swiper-btn .swiper-btn-next {
    right: auto;
    left: -0.04rem;
    -webkit-transform: translateY(-50%) scaleX(-1);
        -ms-transform: translateY(-50%) scaleX(-1);
            transform: translateY(-50%) scaleX(-1);
  }
  html:lang(ar) .contactUs-page .main .form-map-section .form-box .form-item .code-img {
    right: auto;
    left: 0.2rem;
  }
}

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

@media screen and (max-width: 1700px) {
  body {
    font-size: 16px;
  }
  html {
    font-size: 94px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }
  html {
    font-size: 82px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 68px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 70px;
  }
}
@media screen and (min-width: 800px) {
  .pc-show {
    display: block;
  }
  .phone-show {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 72px;
  }
  .wal {
    width: 100%;
    padding: 0 0.4rem;
  }
  .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;
  }
}
