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

/*
 * 富文本初始化
 */
/* 全局样式变量 */
:root {
  --sk-font-Light: "";
  --sk-font-Regular: "MiSans";
  --sk-font-Medium: "MiSans Medium";
  --sk-font-Bold: "";
  --sk-font-SemiBold: "";
  --sk-font-Num: "";
  --headH: 0;
  /* 以下颜色根据设计稿的不同来设置 */
  --sk-global-color: #1F1F1F;
  /* -------------- 主题色 ---------------*/
  --fcolor-default: #1F1F1F;
  /* -------------- 字体默认色 ---------------*/
  --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;
}

.-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/target/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: #E4E4E6;
}
.-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #E4E4E6;
}
.-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.8rem;
  }
}

.sk_select {
  --h: .4rem;
  position: relative;
  width: 1.75rem;
}
.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 input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.sk_select .-select-front input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.sk_select .-select-front input:-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.sk_select .-select-front input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.sk_select .-select-front textarea::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.sk_select .-select-front textarea::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.sk_select .-select-front textarea:-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.sk_select .-select-front textarea:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.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.1rem;
  height: var(--h);
  background: white;
  border: 0.02rem solid #1F1F1F;
  border-radius: 0.03rem;
}
.sk_select .-select-front input {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  pointer-events: none;
  width: 100%;
  font-size: 0.14rem;
}
.sk_select .-select-front::after {
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  background: url(../images/target/base/hry/selectDown.svg) center center no-repeat;
  background-size: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.1rem;
  left: 0;
  box-shadow: 0px 0px 0.2rem 0px rgba(218, 218, 218, 0.25);
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
}
.sk_select .-select-layer .-inner {
  background-color: white;
  border-radius: 0.03rem;
  padding: 0.1rem 0;
}
.sk_select .-select-layer .-inner dl dd {
  --dd-font-size: 0.14rem;
  --dd-padding: 0.06rem 0.1rem;
  cursor: pointer;
  font-size: var(--dd-font-size, 0.18rem);
  line-height: 1.333333;
  color: var(--sk-global-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: var(--dd-padding, 0.08rem 0.2rem);
}
.sk_select .-select-layer .-inner dl dd:hover {
  background: #F8F8F8;
}
@media screen and (max-width: 800px) {
  .sk_select {
    --h: .8rem;
    width: 100%;
  }
  .sk_select .-select-front {
    padding: 0.23rem 0.2rem;
    height: var(--h);
    border: 0.04rem solid #1F1F1F;
    border-radius: 0.1rem;
  }
  .sk_select .-select-front input {
    font-size: 0.26rem;
  }
  .sk_select .-select-front::after {
    width: 0.2rem;
    height: 0.2rem;
  }
  .sk_select .-select-layer .-inner {
    border-radius: 0.08rem;
  }
  .sk_select .-select-layer .-inner dl dd {
    --dd-font-size: 0.24rem;
    --dd-padding: 0.2rem 0.16rem;
    margin-top: 0;
  }
}

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

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

em {
  font-style: normal;
}

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

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

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

.wal1840 {
  max-width: 18.4rem;
}

@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,
  .wal1840 {
    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;
  }
}
.parallax-img {
  -webkit-transition: -webkit-transform 0s !important;
  transition: -webkit-transform 0s !important;
  transition: transform 0s !important;
  transition: transform 0s, -webkit-transform 0s !important;
}

html.has-modal-open body {
  overflow: hidden;
}

.hry__btn {
  height: 0.4rem;
  min-width: 2.8rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.02rem solid #fff;
  border-radius: 0.03rem;
  cursor: pointer;
  color: #fff;
  position: relative;
  font-size: 0.14rem;
  -webkit-transition: all 0.3s ease, min-width 0s, height 0s, font-size 0s;
  transition: all 0.3s ease, min-width 0s, height 0s, font-size 0s;
  font-family: var(--sk-font-Medium);
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .hry__btn {
    min-width: 4.8rem;
    height: 0.8rem;
    font-size: 0.26rem;
    border-radius: 0.1rem;
    color: var(--sk-global-color);
  }
}
.hry__btn .hry__btn__content {
  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;
  -webkit-transform: translateX(0.1rem);
      -ms-transform: translateX(0.1rem);
          transform: translateX(0.1rem);
  -webkit-transition: all 0.3s ease, min-width 0s, height 0s, font-size 0s;
  transition: all 0.3s ease, min-width 0s, height 0s, font-size 0s;
}
@media screen and (max-width: 800px) {
  .hry__btn .hry__btn__content {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.hry__btn .hry__btn__content .hry__btn__svg {
  color: var(--sk-global-color);
  margin-left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 0.12rem;
  opacity: 0;
  margin-left: 0.08rem;
}
@media screen and (max-width: 800px) {
  .hry__btn .hry__btn__content .hry__btn__svg {
    opacity: 1;
    width: 0.18rem;
    margin-left: 0.1rem;
  }
}
.hry__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.005rem;
  width: 0;
  height: calc(100% + 0.01rem);
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .hry__btn::before {
    top: 0;
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .hry__btn:hover {
    color: var(--sk-global-color);
  }
  .hry__btn:hover::before {
    width: 100%;
  }
  .hry__btn:hover .hry__btn__content {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .hry__btn:hover .hry__btn__content .hry__btn__svg {
    opacity: 1;
  }
}
.hry__btn[data-color=dark] {
  color: var(--sk-global-color);
  border: 0.02rem solid var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .hry__btn[data-color=dark] {
    color: #fff;
  }
}
.hry__btn[data-color=dark]::before {
  background-color: var(--sk-global-color);
}
.hry__btn[data-color=dark] .hry__btn__svg {
  color: #fff;
}
@media screen and (min-width: 800px) {
  .hry__btn[data-color=dark]:hover {
    color: #fff;
  }
}

.hry__more-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  -webkit-transition: all 0.3s ease, font-size 0s;
  transition: all 0.3s ease, font-size 0s;
}
.hry__more-btn .hry__more-content {
  -webkit-transition: all 0.5s ease, font-size 0s;
  transition: all 0.5s ease, font-size 0s;
}
.hry__more-btn .hry__more-content .hry__text {
  -webkit-transition: all 0.6s ease, font-size 0s;
  transition: all 0.6s ease, font-size 0s;
}
.hry__more-btn .hry__more-content .hry__text.hry_bottom {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (min-width: 800px) {
  .hry__more-btn:hover .hry__more-content {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.g-header {
  position: fixed;
  z-index: 100;
  padding: 0.2rem 0.2rem 0;
  width: 100%;
  ---000000-ffffff: #ffffff;
  ---1f1f1f-ffffff: #ffffff;
  ---ffffff-1f1f1f: var(--sk-global-color);
  -webkit-transition: all 0.3s, -webkit-transform 0.4s;
  transition: all 0.3s, -webkit-transform 0.4s;
  transition: all 0.3s, transform 0.4s;
  transition: all 0.3s, transform 0.4s, -webkit-transform 0.4s;
}
.g-header .g-head {
  border-radius: 0.08rem;
  height: 0.6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.g-header .g-head::before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  content: "";
  border-radius: 0.08rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.g-header .g-head .g-head-main {
  padding: 0 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.g-header .g-head .g-head-main .tree-logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .tree-logo-box .header__tree-box {
  margin-right: 0.27rem;
  color: var(---000000-ffffff);
}
.g-header .g-head .g-head-main .tree-logo-box .logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0.22rem;
  position: relative;
}
.g-header .g-head .g-head-main .tree-logo-box .logo-box .img {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  height: 100%;
  color: var(---000000-ffffff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .tree-logo-box .logo-box .img.s {
  opacity: 0;
  visibility: hidden;
}
.g-header .g-head .g-head-main .tree-logo-box .logo-box.hover .img.s {
  opacity: 1;
  visibility: visible;
}
.g-header .g-head .g-head-main .center-nav {
  margin-left: 2.44rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  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;
}
.g-header .g-head .g-head-main .center-nav .center-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item {
  margin-right: 0.64rem;
  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;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .a {
  color: var(---000000-ffffff);
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer {
  max-height: 80vh;
  overflow: hidden;
  position: fixed;
  width: calc(100% - 0.4rem);
  top: 0.8rem;
  left: 0.2rem;
  height: 0;
  z-index: 10;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #F2F2F2;
  backdrop-filter: blur(0.3rem);
  border-radius: 0 0 0.08rem 0.08rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box {
  padding: 0.01rem 0.4rem 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card {
  width: calc((100% - 0.2rem) / 3);
  height: 3rem;
  margin-right: 0.1rem;
  background: #D8D8D8;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  display: block;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card:last-child {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card .tit-code {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  color: rgba(31, 31, 31, 0.6);
  font-size: 0.32rem;
  line-height: 0.42rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-Medium);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card .pro-content {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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 .layer .product-box .pro-card .pro-content .tit-banner {
  position: absolute;
  left: 0;
  font-size: 1.6rem;
  line-height: 2.12rem;
  background: -webkit-linear-gradient(left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-family: var(--sk-font-Medium);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card .pro-content .img-banner {
  position: absolute;
  right: 0;
  -webkit-transform: translateX(0.8rem);
      -ms-transform: translateX(0.8rem);
          transform: translateX(0.8rem);
  height: 2.12rem;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card .link-btn {
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
@media screen and (min-width: 800px) {
  .g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card:hover .tit-code {
    opacity: 0;
  }
  .g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card:hover .pro-content .tit-banner {
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 1.26rem));
        -ms-transform: translateX(calc(-50% - 1.26rem));
            transform: translateX(calc(-50% - 1.26rem));
  }
  .g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card:hover .pro-content .img-banner {
    right: 50%;
    -webkit-transform: translateX(calc(50% + 0.8rem));
        -ms-transform: translateX(calc(50% + 0.8rem));
            transform: translateX(calc(50% + 0.8rem));
  }
  .g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .pro-card:hover .link-btn {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us {
  padding: 0.01rem 0.4rem 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .left-txt {
  width: 33.5556%;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .left-txt .txt {
  margin-top: 0.4rem;
  width: 3.5rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list {
  width: 66.4444%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list .about-card {
  display: block;
  width: calc(50% - 0.05rem);
  height: 3rem;
  margin-right: 0.1rem;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list .about-card:last-child {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list .about-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list .about-card .tit {
  position: relative;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list .about-card .link-btn {
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list .about-card:hover .bg-img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .about-us .right-card-list .about-card:hover .link-btn {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .link-list-box {
  padding: 0.08rem 0 0.35rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .link-list-box .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .link-list-box .link-list .link {
  margin-bottom: 0.18rem;
  color: var(--sk-global-color);
  font-size: 0.14rem;
  line-height: 0.21rem;
  min-width: 0.6rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .link-list-box .link-list .link:last-child {
  margin-bottom: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .link-list-box .link-list .link:hover {
  opacity: 0.5;
}
.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 .store-inquiry-box {
  margin-right: 0.45rem;
}
.g-header .g-head .g-head-main .g-head-right .store-inquiry-box .store-inquiry {
  font-size: 0.14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0.36rem;
  padding: 0 0.26rem;
  font-family: var(--sk-font-Medium);
  color: var(---1f1f1f-ffffff);
  border: 0.02rem solid var(---1f1f1f-ffffff);
  border-radius: 0.03rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .store-inquiry-box .store-inquiry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(---1f1f1f-ffffff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.g-header .g-head .g-head-main .g-head-right .store-inquiry-box .store-inquiry:hover {
  color: var(---ffffff-1f1f1f);
}
.g-header .g-head .g-head-main .g-head-right .store-inquiry-box .store-inquiry:hover::before {
  width: 100%;
}
.g-header .g-head .g-head-main .g-head-right .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.34rem;
}
.g-header .g-head .g-head-main .g-head-right .search-box .icon {
  cursor: pointer;
  width: 0.22rem;
  color: var(---1f1f1f-ffffff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .shopping-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .g-head-right .shopping-box .icon {
  cursor: pointer;
  width: 0.22rem;
  color: var(---1f1f1f-ffffff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .nav-dropdown-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.5rem);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0;
}
.g-header .nav-dropdown-menu-wrapper.show {
  height: 100vh;
  opacity: 1;
  visibility: visible;
}
.g-header .nav-dropdown-menu-wrapper.show .nav-dropdown-menu .left-nav .bottom-box .store-card {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.g-header .nav-dropdown-menu-wrapper.show .nav-dropdown-menu .left-nav .bottom-box .store-card .bg-img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  height: calc(100vh - 0.4rem);
  width: calc(100% - 0.4rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .img-s {
  position: absolute;
  color: #000000;
  top: 0.38rem;
  left: 0.2rem;
  height: 0.31rem;
  width: auto;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .header__tree-box {
  position: absolute;
  top: 0.16rem;
  left: 0.4rem;
  color: #000000;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .header__tree-box {
    top: 0.28rem;
    left: auto;
    right: 0.2rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav {
  width: calc((100% - 0.1rem) / 2);
  height: 100%;
  background: #F2F2F2;
  border-radius: 0.08rem;
  padding: 0.64rem 0.1rem 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav {
    width: 100%;
    border-radius: 0.1rem;
    padding: 1.08rem 0.2rem 0.2rem 0.2rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell {
  cursor: pointer;
  margin-bottom: 0.04rem;
  padding: 0.08rem 0.2rem;
  border-radius: 0.08rem;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell {
    padding: 0.13rem 0.2rem;
    border-radius: 0.1rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell .nav-txt {
  font-size: 0.36rem;
  line-height: 0.48rem;
  color: #000000;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell .nav-txt {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell .svg {
  position: absolute;
  top: 50%;
  right: 0.28rem;
  height: 0.26rem;
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell .svg {
    height: 0.39rem;
    right: 0.2rem;
  }
}
@media screen and (min-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell:hover .nav-txt .hry__more-content {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell.on {
  background: #E4E4E6;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell.on .svg {
  opacity: 1;
  visibility: visible;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .nav-list .nav-cell:hover {
  background: #E4E4E6;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor {
  padding: 0.23rem 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor {
    padding: 0.4rem 0;
    -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-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .phone-address .phone {
  font-size: 0.2rem;
  line-height: 0.27rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .phone-address .phone {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .phone-address .address {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list {
    margin-top: 0.23rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box {
  cursor: pointer;
  margin-right: 0.24rem;
  height: 0.24rem;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box {
    height: 0.4rem;
    margin-right: 0.4rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box .icon {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: auto;
  height: 100%;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box .qr-card {
  position: absolute;
  padding-bottom: 0.16rem;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box .qr-card {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box .qr-card .qr-img-box {
  padding: 0.16rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.25);
  border-radius: 0.08rem;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box .qr-card .qr-img-box {
    padding: 0.2rem;
    border-radius: 0.16rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box .qr-card .qr-img {
  height: 1rem;
  width: 1rem;
  max-width: none;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box .qr-card .qr-img {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box:hover .qr-card {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .link-infor .link-list .icon-box:hover .icon {
    opacity: 0.5;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card {
  display: block;
  height: 3.33rem;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: 0.3s ease 0.1s;
  transition: 0.3s ease 0.1s;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card {
    height: 4.72rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s ease 0.1s;
  transition: 0.3s ease 0.1s;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card .content-box {
  padding: 0.2rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card .content-box .tit {
  position: relative;
  font-size: 0.36rem;
  line-height: 0.48rem;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card .content-box .tit {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card .content-box .link-btn {
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
@media screen and (min-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card:hover .bg-img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .left-nav .bottom-box .store-card:hover .content-box .link-btn {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content {
  width: calc((100% - 0.1rem) / 2);
  height: 100%;
  background: #F2F2F2;
  border-radius: 0.08rem;
  padding: 0.1rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content {
    width: 100%;
    position: absolute;
    left: 120%;
    border-radius: 0.1rem;
    padding: 0.2rem;
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content.show {
    left: 0;
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .head-box {
    height: 0.88rem;
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .head-box .return-icon {
    margin-top: 0.17rem;
    width: 0.4rem;
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .head-box .return-icon .iocn {
    width: 100%;
    -webkit-transform: rotate(270deg) scaleX(-1);
        -ms-transform: rotate(270deg) scaleX(-1);
            transform: rotate(270deg) scaleX(-1);
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .content-card {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .content-card {
    top: 1.08rem;
    left: 0.2rem;
    width: calc(100% - 0.4rem);
    height: calc(100% - 0.4rem - 0.88rem);
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .content-card.show {
  opacity: 1;
  z-index: 10;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box.show .pro-card {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card {
  height: calc((100% - 0.2rem) / 3);
  margin-bottom: 0.1rem;
  background: #E4E4E6;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  display: block;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.3s ease 0.2s;
  transition: 0.3s ease 0.2s;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card {
    height: calc((100% - 0.4rem) / 3);
    margin-bottom: 0.2rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card:last-child {
  margin-bottom: 0;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card .tit-code {
  position: absolute;
  top: 0.1rem;
  left: 0.2rem;
  color: rgba(31, 31, 31, 0.6);
  font-size: 0.36rem;
  line-height: 0.48rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card .tit-code {
    color: var(--sk-global-color);
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card .pro-content {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card .pro-content .tit-banner {
  position: absolute;
  left: 0;
  font-size: 2.4rem;
  line-height: 3.18rem;
  background: -webkit-linear-gradient(left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-family: var(--sk-font-Medium);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card .pro-content .img-banner {
  position: absolute;
  right: 0;
  height: 87%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card .pro-content .img-banner {
    height: 61.44%;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card .link-btn {
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
@media screen and (min-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card:hover .tit-code {
    opacity: 0;
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card:hover .pro-content .tit-banner {
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 1.8rem));
        -ms-transform: translateX(calc(-50% - 1.8rem));
            transform: translateX(calc(-50% - 1.8rem));
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card:hover .pro-content .img-banner {
    right: 50%;
    -webkit-transform: translateX(calc(50% + 1.32rem));
        -ms-transform: translateX(calc(50% + 1.32rem));
            transform: translateX(calc(50% + 1.32rem));
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro-card:hover .link-btn {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box.show .about-card {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box.show .about-card .bg-img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card {
  display: block;
  height: calc(50% - 0.05rem);
  margin-bottom: 0.1rem;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.3s ease 0.2s;
  transition: 0.3s ease 0.2s;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card {
    height: calc(50% - 0.1rem);
    margin-bottom: 0.2rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card:last-child {
  margin-bottom: 0;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  -webkit-transition: 0.3s ease 0.2s;
  transition: 0.3s ease 0.2s;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card .tit {
  position: relative;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  font-size: 0.36rem;
  line-height: 0.48rem;
  color: #FFFFFF;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card .link-btn {
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card:hover .bg-img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .about-box .about-card:hover .link-btn {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system.show .about-card {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system.show .about-card .bg-img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card {
  display: block;
  height: calc(50% - 0.05rem);
  width: calc(50% - 0.05rem);
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.3s ease 0.2s;
  transition: 0.3s ease 0.2s;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card {
    height: calc((100% - 0.6rem) / 4);
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:last-child {
    margin-bottom: 0;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:nth-child(2n) {
  margin-left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:nth-child(2n) {
    margin-left: 0;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:nth-child(3n), .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:nth-child(4n) {
  margin-top: 0.1rem;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:nth-child(3n), .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:nth-child(4n) {
    margin-top: 0;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  -webkit-transition: 0.3s ease 0.2s;
  transition: 0.3s ease 0.2s;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card .tit {
  position: relative;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  font-size: 0.36rem;
  line-height: 0.48rem;
  color: #FFFFFF;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card .link-btn {
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:hover .bg-img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .service-system .about-card:hover .link-btn {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class.show .about-card {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class.show .about-card .bg-img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card {
  display: block;
  height: calc((100% - 0.2rem) / 3);
  border-radius: 0.08rem;
  margin-bottom: 0.1rem;
  overflow: hidden;
  position: relative;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.3s ease 0.2s;
  transition: 0.3s ease 0.2s;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card {
    height: calc((100% - 0.4rem) / 3);
    margin-bottom: 0.2rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card:last-child {
  margin-bottom: 0;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  -webkit-transition: 0.3s ease 0.2s;
  transition: 0.3s ease 0.2s;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card .tit {
  position: relative;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  font-size: 0.36rem;
  line-height: 0.48rem;
  color: #FFFFFF;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card .link-btn {
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card:hover .bg-img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .category-class .about-card:hover .link-btn {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.g-header .search-dropdown-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.5rem);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper {
    z-index: 100;
  }
}
.g-header .search-dropdown-wrapper.show {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}
.g-header .search-dropdown-wrapper .search-dropdown {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: calc(50% - 0.25rem);
  height: calc(100vh - 0.4rem);
  background: #F2F2F2;
  border-radius: 0.08rem;
  padding: 0.64rem 0.1rem 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown {
    padding: 1.08rem 0.2rem 0.2rem;
    border-radius: 0.1rem;
    width: calc(100% - 0.4rem);
    height: calc(100vh - 0.4rem);
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .clone-icon {
  width: 0.2rem;
  cursor: pointer;
  position: absolute;
  top: 0.2rem;
  right: 0.3rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .clone-icon {
    width: 0.28rem;
    top: 0.4rem;
    right: 0.32rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box {
  height: 0.72rem;
  border-radius: 0.08rem;
  background: #E4E4E6;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box {
    height: 1.08rem;
    border-radius: 0.1rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box input {
  height: 100%;
  width: calc(100% - 0.5rem);
  font-size: 0.24rem;
  line-height: 0.32rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box input {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box input::placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box .search-icon-box {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.28rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box .search-icon-box {
    width: 0.41rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box .search-icon-box .search-icon {
  color: rgba(31, 31, 31, 0.4);
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .input-box .search-icon-box .search-icon:hover {
  color: var(--sk-global-color);
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links {
  margin-top: 0.38rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links {
    margin-top: 0.6rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .label {
  margin-left: 0.18rem;
  color: rgba(31, 31, 31, 0.4);
  font-size: 0.14rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .label {
    font-size: 0.28rem;
    line-height: 0.37rem;
    margin-right: 0.2rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list {
  margin-top: 0.13rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list {
    margin-top: 0.21rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0.32rem;
  border-radius: 0.04rem;
  margin-bottom: 0.06rem;
  padding-left: 0.18rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link {
    height: auto;
    margin-bottom: 0.24rem;
    padding-left: 0.2rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link .txt {
  color: rgba(31, 31, 31, 0.7);
  font-size: 0.14rem;
  line-height: 0.2rem;
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link .txt {
    font-size: 0.32rem;
    line-height: 0.42rem;
    margin-right: 0.1rem;
    color: var(--sk-global-color);
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link .icon {
  height: 0.1rem;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link .icon {
    opacity: 1;
    height: 0.26rem;
  }
}
@media screen and (min-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link:hover {
    background: #E4E4E6;
  }
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link:hover .txt {
    color: var(--sk-global-color);
  }
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-top .quick-links .link-list .link:hover .icon {
    opacity: 1;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper {
  overflow: hidden;
  height: 3.33rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper {
    height: 4.72rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-animation-name: scrollLeft;
          animation-name: scrollLeft;
  -webkit-animation-duration: 26s;
          animation-duration: 26s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box .swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: block;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
  width: 4.43rem;
  margin-right: 0.1rem;
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box .swiper-slide {
    width: 3.4rem;
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box .swiper-slide:last-child {
  margin-right: 0;
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box .swiper-slide .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box .swiper-slide .tit {
  position: relative;
  margin-top: 0.1rem;
  margin-left: 0.2rem;
  color: #FFFFFF;
  font-size: 0.36rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box .swiper-slide .tit {
    margin-top: 0.2rem;
  }
}
@media screen and (min-width: 800px) {
  .g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper .swiper-box .swiper-slide:hover .bg-img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.g-header .search-dropdown-wrapper .search-dropdown .dropdown-bottom .pro-swiper:hover .swiper-box {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.g-header .g-head-phone {
  border-radius: 0.08rem;
  height: 1.08rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.g-header .g-head-phone::before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  content: "";
  border-radius: 0.08rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  backdrop-filter: var(---filter-03);
  background-color: var(---242-242-242-08-transparent);
}
.g-header .g-head-phone .g-head-main {
  padding: 0 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.g-header .g-head-phone .g-head-main .logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0.31rem;
  position: relative;
}
.g-header .g-head-phone .g-head-main .logo-box .img {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  height: 100%;
  color: var(---000000-ffffff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head-phone .g-head-main .left-tree-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head-phone .g-head-main .left-tree-right .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.46rem;
}
.g-header .g-head-phone .g-head-main .left-tree-right .search-box .icon {
  width: 0.38rem;
  color: var(---1f1f1f-ffffff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head-phone .g-head-main .left-tree-right .shopping-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.46rem;
}
.g-header .g-head-phone .g-head-main .left-tree-right .shopping-box .icon {
  width: 0.38rem;
  color: var(---1f1f1f-ffffff);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head-phone .g-head-main .left-tree-right .header__tree-box {
  color: var(---000000-ffffff);
}
.g-header.dark {
  ---000000-ffffff: #000000;
  ---1f1f1f-ffffff: var(--sk-global-color);
  ---ffffff-1f1f1f: #ffffff;
}
.g-header.hide, .g-header.hide00 {
  opacity: 0;
  -webkit-transform: translateY(-110%);
      -ms-transform: translateY(-110%);
          transform: translateY(-110%);
}
.g-header.dropdown {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media screen and (min-width: 800px) {
  .g-header:hover {
    ---000000-ffffff: #000000;
    ---1f1f1f-ffffff: var(--sk-global-color);
    ---ffffff-1f1f1f: #ffffff;
  }
  .g-header:hover .g-head::before {
    backdrop-filter: blur(0.3rem);
    background-color: rgba(242, 242, 242, 0.8);
  }
}
.g-header.dropdown, .g-header.hover, .g-header.isScroll {
  ---000000-ffffff: #000000;
  ---1f1f1f-ffffff: var(--sk-global-color);
  ---ffffff-1f1f1f: #ffffff;
}
.g-header.dropdown .g-head::before, .g-header.hover .g-head::before, .g-header.isScroll .g-head::before {
  backdrop-filter: blur(0.3rem);
  background-color: rgba(242, 242, 242, 0.8);
}
@media screen and (max-width: 800px) {
  .g-header.dropdown .g-head-phone::before, .g-header.hover .g-head-phone::before, .g-header.isScroll .g-head-phone::before {
    backdrop-filter: blur(0.3rem);
    background-color: rgba(242, 242, 242, 0.8);
  }
}
.g-header.dialog__wrapper .g-head::before {
  background: #F2F2F2;
  border-radius: 0.08rem 0.08rem 0 0;
}

.header__tree-box {
  width: 0.28rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .header__tree-box {
    width: 0.52rem;
  }
}
.header__tree-box .c-header_menu {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.28rem;
  height: 0.28rem;
  position: relative;
  --ease-smooth: cubic-bezier(.38, 0, .215, 1);
  --transition-duration-medium: .45s;
  --ease: var(--ease-smooth);
}
@media screen and (max-width: 800px) {
  .header__tree-box .c-header_menu {
    width: 0.52rem;
    height: 0.52rem;
    z-index: 20;
  }
}
.header__tree-box .c-header_menu .c-header_menu_icon {
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}
.header__tree-box .c-header_menu .c-header_menu_icon .c-header_menu_line {
  display: block;
  height: 0.02rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header__tree-box .c-header_menu .c-header_menu_icon .c-header_menu_line {
    height: 0.03rem;
  }
}
.header__tree-box .c-header_menu .c-header_menu_icon .c-header_menu_line::before {
  background-color: currentColor;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: -webkit-transform var(--transition-duration-medium) var(--ease);
  transition: -webkit-transform var(--transition-duration-medium) var(--ease);
  transition: transform var(--transition-duration-medium) var(--ease);
  transition: transform var(--transition-duration-medium) var(--ease), -webkit-transform var(--transition-duration-medium) var(--ease);
  -webkit-transition-delay: calc(var(--item-delay, 0s) + var(--extra-delay, 0s));
          transition-delay: calc(var(--item-delay, 0s) + var(--extra-delay, 0s));
}
.header__tree-box .c-header_menu .c-header_menu_icon.-open {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 800px) {
  .header__tree-box .c-header_menu .c-header_menu_icon.-open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.header__tree-box .c-header_menu .c-header_menu_icon.-open .c-header_menu_line {
  --extra-delay: .25s;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__tree-box .c-header_menu .c-header_menu_icon.-open .c-header_menu_line:first-child {
  --item-delay: .1s;
  margin-bottom: 0.08rem;
}
@media screen and (max-width: 800px) {
  .header__tree-box .c-header_menu .c-header_menu_icon.-open .c-header_menu_line:first-child {
    margin-bottom: 0.16rem;
  }
}
.header__tree-box .c-header_menu .c-header_menu_icon.-open .c-header_menu_line:last-child {
  width: 57%;
}
.header__tree-box .c-header_menu .c-header_menu_icon.-close {
  height: 0.2rem;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  width: 0.2rem;
}
@media screen and (max-width: 800px) {
  .header__tree-box .c-header_menu .c-header_menu_icon.-close {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.header__tree-box .c-header_menu .c-header_menu_icon.-close .c-header_menu_line {
  --extra-delay: .25s;
  position: absolute;
  top: 50%;
}
.header__tree-box .c-header_menu .c-header_menu_icon.-close .c-header_menu_line:first-child {
  --item-delay: .1s;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
}
@media screen and (min-width: 800px) {
  .header__tree-box:hover .c-header_menu .c-header_menu_icon.-open .c-header_menu_line:last-child {
    width: 100%;
  }
}
.header__tree-box.show .c-header_menu .c-header_menu_icon.-open .c-header_menu_line::before {
  --extra-delay: 0s;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.header__tree-box:not(.show) .c-header_menu .c-header_menu_icon.-close .c-header_menu_line::before {
  --extra-delay: 0s;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.hry__icone-content-wrapper {
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  height: 0.64rem;
  width: 0.64rem;
  border-radius: 0.08rem;
  background: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .hry__icone-content-wrapper {
    border-radius: 0.1rem;
  }
}
.hry__icone-content-wrapper .hry__icone-content-btn {
  overflow: hidden;
}
.hry__icone-content-wrapper .hry__icone-content-btn .hry__icone-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.hry__icone-content-wrapper .hry__icone-content-btn .hry__icone-content .icon {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  margin: 0.02rem 0;
  height: var(--icon-height, 0.26rem);
  width: auto;
}
.hry__icone-content-wrapper .hry__icone-content-btn .hry__icone-content .icon.icon_bottom {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (min-width: 800px) {
  .hry__icone-content-wrapper:hover .hry__icone-content-btn .hry__icone-content {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

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

@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.g__footer {
  overflow: hidden;
}
.g__footer .g__footer-content {
  position: relative;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-transform: translateY(-90%);
      -ms-transform: translateY(-90%);
          transform: translateY(-90%);
  will-change: transform;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.g__footer .g__footer-content .footer-logo-box {
  position: relative;
  margin-top: 0.1rem;
  left: 0.1rem;
  width: calc(100% - 0.2rem);
  height: 1.58rem;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .footer-logo-box {
    height: 0.8rem;
  }
}
.g__footer .g__footer-content .footer-logo-box .footer-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* 完整显示 */
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.g__footer .g__footer-content .footer-logo-box .footer-mask .footer-gradient {
  top: calc(var(--mouse-y) * 1px);
  left: calc(var(--mouse-x) * 1px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: -webkit-radial-gradient(center, circle, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: radial-gradient(circle at center, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-filter: blur(1rem);
          filter: blur(1rem);
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .footer-logo-box .footer-mask .footer-gradient {
    position: absolute;
    top: 50%;
    width: 10rem;
    height: 1.6rem;
    left: calc(var(--mouse-x));
    opacity: 0.9;
  }
}
.g__footer .g__footer-content .nav-subscribe-link {
  padding: 0.75rem 0.4rem 0.76rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.2rem 0.4rem 1.38rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .nav-list dl {
  margin-right: 1.2rem;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .nav-list dl {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .g__footer .g__footer-content .nav-subscribe-link .nav-list dl:last-child {
    margin-bottom: 0;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .nav-list dl dt {
  color: var(--sk-global-color);
  font-size: 0.16rem;
  line-height: 0.21rem;
  text-align: left;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .nav-list dl dt {
    font-size: 0.36rem;
    line-height: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .g__footer .g__footer-content .nav-subscribe-link .nav-list dl dt .arrows {
    width: 0.24rem;
  }
  .g__footer .g__footer-content .nav-subscribe-link .nav-list dl dt .arrows .sub {
    display: none;
  }
  .g__footer .g__footer-content .nav-subscribe-link .nav-list dl dt.active .arrows .add {
    display: none;
  }
  .g__footer .g__footer-content .nav-subscribe-link .nav-list dl dt.active .arrows .sub {
    display: block;
  }
}
.g__footer .g__footer-content .nav-subscribe-link dd {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link dd {
    overflow: hidden;
    margin-top: 0;
    height: 0;
  }
}
.g__footer .g__footer-content .nav-subscribe-link dd .a {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link dd .a {
    font-size: 0.32rem;
    line-height: 0.4rem;
    margin-bottom: 0.24rem;
    padding-left: 0.24rem;
  }
  .g__footer .g__footer-content .nav-subscribe-link dd .a:first-child {
    margin-top: 0.3rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link dd .a:hover {
  opacity: 0.5;
}
.g__footer .g__footer-content .nav-subscribe-link dd .a:last-child {
  margin-bottom: 0;
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box {
  width: 4.8rem;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box {
    width: 100%;
    margin-top: 0.77rem;
  }
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .phone-box {
    margin-bottom: 0.67rem;
  }
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .phone-box .phone-label {
    font-size: 0.28rem;
    line-height: 0.37rem;
    color: var(--sk-global-color);
  }
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .phone-box .phone-value {
    margin-top: 0.1rem;
    font-size: 0.56rem;
    line-height: 0.74rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .label {
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .label {
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box {
  margin-top: 0.25rem;
  position: relative;
  border: 0.02rem solid var(--sk-global-color);
  border-radius: 0.03rem;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box {
    margin-top: 0.24rem;
    border: 0.03rem solid #1F1F1F;
    border-radius: 0.08rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box input {
  width: calc(100% - 0.5rem);
  height: 0.48rem;
  padding: 0 0 0 0.14rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box input {
    padding-left: 0.2rem;
    height: 0.9rem;
    font-size: 0.26rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box input::placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box .icon-btn {
  position: absolute;
  right: 0.14rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box .icon-btn {
    right: 0.28rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box .icon-btn .icone-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box .icon-btn .icone-content .icon {
  width: 0.17rem;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  margin: 0.02rem 0;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box .icon-btn .icone-content .icon {
    width: 0.3rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box .icon-btn .icone-content .icon.icon_bottom {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (min-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .input-box .icon-btn:hover .icone-content {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list {
  margin-top: 0.28rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list {
    margin-top: 0.5rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box {
  cursor: pointer;
  margin-right: 0.3rem;
  height: 0.28rem;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box {
    margin-right: 0.4rem;
    height: 0.4rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box .icon {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: auto;
  height: 100%;
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box .qr-card {
  position: absolute;
  padding-bottom: 0.16rem;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box .qr-card {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box .qr-card .qr-img-box {
  padding: 0.16rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.25);
  border-radius: 0.08rem;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box .qr-card .qr-img-box {
    padding: 0.2rem;
    border-radius: 0.16rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box .qr-card .qr-img {
  height: 1rem;
  width: 1rem;
  max-width: none;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box .qr-card .qr-img {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box:hover .qr-card {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 800px) {
  .g__footer .g__footer-content .nav-subscribe-link .subscribe-box .link-list .icon-box:hover .icon {
    opacity: 0.5;
  }
}
.g__footer .g__footer-content .footer-footer {
  padding: 0 0.4rem 0.22rem;
  margin-top: 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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .footer-footer {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 0.52rem;
  }
}
.g__footer .g__footer-content .footer-footer .left-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .footer-footer .left-box {
    margin-top: 0.21rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-column-gap: 0.36rem;
       -moz-column-gap: 0.36rem;
            column-gap: 0.36rem;
    row-gap: 0.2rem;
  }
}
.g__footer .g__footer-content .footer-footer .left-box .link {
  color: var(--sk-global-color);
  font-size: 0.14rem;
  line-height: 0.19rem;
  margin-right: 0.36rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .footer-footer .left-box .link {
    font-size: 0.24rem;
    line-height: 0.32rem;
    margin-right: 0;
  }
}
.g__footer .g__footer-content .footer-footer .left-box a.link {
  position: relative;
  font-family: var(--sk-font-Regular);
}
@media screen and (min-width: 800px) {
  .g__footer .g__footer-content .footer-footer .left-box a.link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.01rem;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    -webkit-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 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__footer .g__footer-content .footer-footer .left-box a.link:hover::before {
  -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__footer .g__footer-content .footer-footer .right-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.g__footer .g__footer-content .footer-footer .right-box .link {
  color: var(--sk-global-color);
  margin-left: 0.36rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g__footer .g__footer-content .footer-footer .right-box .link {
    margin-left: 0;
    margin-right: 0.6rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
@media screen and (min-width: 800px) {
  .g__footer .g__footer-content .footer-footer .right-box .link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.01rem;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    -webkit-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 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__footer .g__footer-content .footer-footer .right-box .link:hover::before {
  -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);
}

.cookie-policy-popup {
  position: fixed;
  z-index: 50;
  left: 0.1rem;
  bottom: 0.1rem;
  width: 4.8rem;
  padding: 0.18rem 0.2rem 0.2rem;
  border-radius: 0.1rem;
  background: #ffffff;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s, width none;
  transition: all 0.3s, width none;
}
@media screen and (max-width: 800px) {
  .cookie-policy-popup {
    width: calc(100vw - 0.2rem);
    padding: 0.33rem 0.3rem 0.3rem;
  }
}
.cookie-policy-popup.show {
  opacity: 1;
  visibility: visible;
}
.cookie-policy-popup .title {
  -webkit-transition: none;
  transition: none;
  font-size: 0.16rem;
  line-height: 0.21rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .cookie-policy-popup .title {
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
}
.cookie-policy-popup .content-txt {
  -webkit-transition: 0s;
  transition: 0s;
  margin-top: 0.12rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: rgba(31, 31, 31, 0.7);
}
@media screen and (max-width: 800px) {
  .cookie-policy-popup .content-txt {
    margin-top: 0.19rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.cookie-policy-popup .content-txt a {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: var(--sk-global-color);
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .cookie-policy-popup .content-txt a {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.cookie-policy-popup .btns {
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .cookie-policy-popup .btns {
    margin-top: 0.53rem;
  }
}
.cookie-policy-popup .btns .btn {
  border-radius: 0.03rem;
  width: calc(50% - 0.05rem);
  height: 0.4rem;
  border: 0.02rem solid var(--sk-global-color);
  font-size: 0.14rem;
  line-height: 0.19rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .cookie-policy-popup .btns .btn {
    width: calc(50% - 0.1rem);
    height: 0.8rem;
    border: 0.03rem solid var(--sk-global-color);
    font-size: 0.26rem;
    line-height: 0.34rem;
    border-radius: 0.1rem;
  }
}
.cookie-policy-popup .btns .btn.dark {
  color: #FFFFFF;
  background-color: var(--sk-global-color);
}

.index-page .banner-section {
  overflow: hidden;
  height: 100vh;
}
.index-page .banner-section .banner-swiper {
  height: 100%;
  position: relative;
}
.index-page .banner-section .banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.index-page .banner-section .banner-swiper .swiper-slide .bg-box {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.index-page .banner-section .banner-swiper .swiper-slide .bg-box img,
.index-page .banner-section .banner-swiper .swiper-slide .bg-box video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index-page .banner-section .banner-swiper .swiper-slide .content-tox {
  position: relative;
  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;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-slide .content-tox {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 3.03rem;
  }
}
.index-page .banner-section .banner-swiper .swiper-slide .content-tox .title-box {
  color: #FFFFFF;
  font-size: 0.56rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-slide .content-tox .title-box {
    font-size: 0.84rem;
    line-height: 1rem;
  }
}
.index-page .banner-section .banner-swiper .swiper-slide .content-tox .infor-box {
  color: #FFFFFF;
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.36rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-slide .content-tox .infor-box {
    margin-top: 0.36rem;
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.index-page .banner-section .banner-swiper .swiper-slide .content-tox .btn {
  margin-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-slide .content-tox .btn {
    margin-top: 0.64rem;
  }
}
.index-page .banner-section .banner-swiper .swiper-pagination {
  position: absolute;
  z-index: 1;
  bottom: 0.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(187, 187, 187, 0.2);
  border-radius: 0.12rem;
  backdrop-filter: blur(0.2rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.08rem 0.1rem;
  display: flex;
  width: auto;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-pagination {
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
  }
}
.index-page .banner-section .banner-swiper .swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
  }
}
.index-page .banner-section .banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.33rem;
  background: #FFFFFF;
  border-radius: 0.04rem;
  cursor: auto;
}
@media screen and (max-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.52rem;
    border-radius: 0.06rem;
  }
}
.index-page .banner-section .banner-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.index-page .card-section {
  height: 200vh;
}
@media screen and (max-width: 800px) {
  .index-page .card-section {
    overflow: hidden;
    height: auto;
  }
}
.index-page .card-section .wal {
  height: 100%;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal {
    height: auto;
    padding-top: 2.4rem;
    padding-bottom: 2.43rem;
  }
}
.index-page .card-section .wal .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.index-page .card-section .wal .flex-box .left-box {
  width: 7.57rem;
  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;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box .left-box {
    height: auto;
  }
}
.index-page .card-section .wal .flex-box .left-box .text-content {
  width: 4rem;
  font-size: 0.42rem;
  line-height: 0.63rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box .left-box .text-content {
    width: 6rem;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.index-page .card-section .wal .flex-box .left-box .text-content .color {
  opacity: 0.4;
}
.index-page .card-section .wal .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box .right-box {
    height: auto;
    margin-top: 0.8rem;
  }
}
.index-page .card-section .wal .flex-box .right-box .card-list {
  position: relative;
  width: 4.8rem;
  height: 6.4rem;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box .right-box .card-list {
    width: calc(100% + 0.8rem);
    margin-left: -0.4rem;
    margin-right: -0.4rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
  }
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box .right-box .card-list .card-box {
    position: relative;
    width: 4.8rem;
    border-radius: 0.16rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-right: 0.2rem;
  }
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box:nth-child(1) {
  z-index: 3;
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box:nth-child(2) {
  z-index: 2;
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box:nth-child(3) {
  z-index: 1;
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box:nth-child(n+4) {
  display: none;
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box .card-bg {
  position: absolute;
  height: 100%;
  width: 100%;
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box .card-content {
  position: relative;
  padding: 0.2rem;
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box .card-content .tag {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.14rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box .right-box .card-list .card-box .card-content .tag {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.index-page .card-section .wal .flex-box .right-box .card-list .card-box .card-content .text {
  margin-top: 0.08rem;
  color: #FFFFFF;
  font-size: 0.24rem;
  line-height: 0.36rem;
}
@media screen and (max-width: 800px) {
  .index-page .card-section .wal .flex-box .right-box .card-list .card-box .card-content .text {
    margin-top: 0.16rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
    padding-right: 0.2rem;
  }
}
.index-page .comparison-section {
  padding: 0.1rem;
}
.index-page .comparison-section .comparison-box {
  position: relative;
  height: calc(100vh - 0.2rem);
  overflow: hidden;
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box {
    border-radius: 0.16rem;
  }
}
.index-page .comparison-section .comparison-box .image-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
  --flex-direction: row;
}
.index-page .comparison-section .comparison-box .image-layer:nth-child(2n) {
  --flex-direction: row-reverse;
}
.index-page .comparison-section .comparison-box .image-layer .layer-content {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none;
  transition: none;
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box {
  position: relative;
  height: 100%;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box {
    height: calc(100vh - 0.2rem);
  }
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box[data-color=dark] {
  color: var(--sk-global-color);
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal {
  height: 100%;
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal {
    padding: 0.3rem;
  }
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: var(--flex-direction);
      -ms-flex-direction: var(--flex-direction);
          flex-direction: var(--flex-direction);
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .infor-box {
    width: 100%;
  }
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .infor-box .h2 {
  font-size: 0.56rem;
  line-height: 0.56rem;
  max-width: 7rem;
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .infor-box .h2 {
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .infor-box .txt {
  margin-top: 16px;
  font-size: 0.24rem;
  line-height: 0.36rem;
  opacity: 0.7;
  max-width: 8rem;
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .infor-box .txt {
    margin-top: 0.16rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .infor-box .btn {
  margin-top: 0.44rem;
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .infor-box .btn {
    margin-top: 0.6rem;
    width: 100%;
  }
}
.index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .tit {
  font-size: 2.4rem;
  line-height: 3.28rem;
  font-weight: bold;
  font-family: var(--sk-font-Medium);
  color: #fff;
}
@media screen and (max-width: 800px) {
  .index-page .comparison-section .comparison-box .image-layer .layer-content .content-box .wal .flex-box .tit {
    font-size: 2.4rem;
    line-height: 3.18rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0.35rem;
    padding-top: 6vh;
  }
}
.index-page .text-move-section {
  padding: 2.53rem 0 2.14rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .text-move-section {
    padding: 3rem 0 1.5rem;
  }
}
.index-page .text-move-section .text-container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
.index-page .text-move-section .text-container .top-text {
  font-size: 1.8rem;
  line-height: 2.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(-50vw);
      -ms-transform: translateX(-50vw);
          transform: translateX(-50vw);
}
@media screen and (max-width: 800px) {
  .index-page .text-move-section .text-container .top-text {
    font-size: 1.2rem;
    line-height: 1.59rem;
  }
}
.index-page .text-move-section .text-container .top-text span {
  opacity: 0.4;
}
.index-page .text-move-section .text-container .bottom-text {
  margin-top: -0.53rem;
  font-size: 1.8rem;
  line-height: 2.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(50vw);
      -ms-transform: translateX(50vw);
          transform: translateX(50vw);
}
@media screen and (max-width: 800px) {
  .index-page .text-move-section .text-container .bottom-text {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.59rem;
  }
}
.index-page .text-move-section .text-container .bottom-text span {
  opacity: 0.4;
}
.index-page .feature-focus-section {
  height: 13.75rem;
}
@media screen and (max-width: 800px) {
  .index-page .feature-focus-section {
    overflow: hidden;
  }
}
.index-page .feature-focus-section .type-area {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.index-page .feature-focus-section .type-area .flex-box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.index-page .feature-focus-section .type-area .flex-box .card-box {
  width: calc((100% - 0.2rem) / 3);
  height: 7.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .index-page .feature-focus-section .type-area .flex-box .card-box {
    width: 5rem;
  }
}
.index-page .feature-focus-section .type-area .flex-box .card-box:first-child {
  position: absolute;
  left: 0;
  top: 1.5rem;
  margin-right: 0.1rem;
}
@media screen and (max-width: 800px) {
  .index-page .feature-focus-section .type-area .flex-box .card-box:first-child {
    left: -4.4rem;
  }
}
.index-page .feature-focus-section .type-area .flex-box .card-box:last-child {
  position: absolute;
  right: 0;
  top: 1.5rem;
  margin-left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .index-page .feature-focus-section .type-area .flex-box .card-box:last-child {
    right: -4.4rem;
  }
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) {
  position: absolute;
  top: 1.5rem;
  left: auto;
  right: auto;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .bg-img {
  position: relative;
  height: auto;
  min-height: 100%;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal {
  height: 100%;
  position: relative;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 {
  font-size: 0.42rem;
  line-height: 0.63rem;
  padding-top: 1.6rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 {
    padding-top: 2.4rem;
    font-size: 0.64rem;
    line-height: 0.85rem;
    width: 6.1rem;
  }
  .index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 br {
    display: none;
  }
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 .color {
  opacity: 0.4;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .btn-s {
  opacity: 0;
  margin-top: 0.37rem;
}
@media screen and (max-width: 800px) {
  .index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .btn-s {
    margin-top: 0.64rem;
  }
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .btn-s .btn {
  margin-right: 0.2rem;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .video-thumbnail {
  position: absolute;
  bottom: 1.06rem;
  right: 0;
  width: 3.6rem;
  height: 2.4rem;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-transform: translateY(4rem);
      -ms-transform: translateY(4rem);
          transform: translateY(4rem);
}
@media screen and (max-width: 800px) {
  .index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .video-thumbnail {
    bottom: 0.4rem;
    right: 0.4rem;
    border-radius: 0.16rem;
  }
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .video-thumbnail .video-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .video-thumbnail .play-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.64rem;
  height: 0.64rem;
  background: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.index-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .video-thumbnail .play-box .svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.25rem;
  left: 0.24rem;
}
.index-page .feature-focus-section .type-area .flex-box .card-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.index-page .window-wrap-section {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.index-page .window-wrap-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.index-page .window-wrap-section .flex-wrap .card-li {
  height: 6.4rem;
  width: calc((100% - 0.1rem) * 0.6315789474);
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .index-page .window-wrap-section .flex-wrap .card-li {
    height: 6.7rem;
    width: 100%;
    border-radius: 0.16rem;
    margin-bottom: 0.3rem;
  }
  .index-page .window-wrap-section .flex-wrap .card-li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 800px) {
  .index-page .window-wrap-section .flex-wrap .card-li:nth-child(4n+2), .index-page .window-wrap-section .flex-wrap .card-li:nth-child(4n+3) {
    width: calc((100% - 0.1rem) * 0.3618421053);
  }
  .index-page .window-wrap-section .flex-wrap .card-li:nth-child(2n) {
    margin-left: 0.1rem;
  }
  .index-page .window-wrap-section .flex-wrap .card-li:nth-child(n+3) {
    margin-top: 0.1rem;
  }
}
.index-page .window-wrap-section .flex-wrap .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .window-wrap-section .flex-wrap .card-li .bg-img-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.index-page .window-wrap-section .flex-wrap .card-li .content-box {
  position: relative;
  height: 100%;
  color: #fff;
  padding: 0.4rem;
}
@media screen and (max-width: 800px) {
  .index-page .window-wrap-section .flex-wrap .card-li .content-box {
    padding: 0.3rem;
  }
}
.index-page .window-wrap-section .flex-wrap .card-li .content-box .title {
  font-size: 0.32rem;
  line-height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .index-page .window-wrap-section .flex-wrap .card-li .content-box .title {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.index-page .window-wrap-section .flex-wrap .card-li .content-box .infor-txt {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.7);
  width: 3.06rem;
}
@media screen and (max-width: 800px) {
  .index-page .window-wrap-section .flex-wrap .card-li .content-box .infor-txt {
    margin-top: 0.16rem;
    width: 100%;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.index-page .window-wrap-section .flex-wrap .card-li .content-box .link-btn {
  -webkit-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
}
@media screen and (max-width: 800px) {
  .index-page .window-wrap-section .flex-wrap .card-li .content-box .link-btn {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    width: 0.72rem;
    height: 0.72rem;
  }
}
@media screen and (min-width: 800px) {
  .index-page .window-wrap-section .flex-wrap .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .index-page .window-wrap-section .flex-wrap .card-li:hover .content-box .link-btn {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.index-page .more-story-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.index-page .more-story-section .bg-video-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-60%);
      -ms-transform: translateY(-60%);
          transform: translateY(-60%);
}
.index-page .more-story-section .bg-video-box .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index-page .more-story-section .content-box {
  color: #fff;
  position: relative;
  text-align: center;
  padding-top: 3.18rem;
}
@media screen and (max-width: 800px) {
  .index-page .more-story-section .content-box {
    padding-top: 35vh;
  }
}
.index-page .more-story-section .content-box .h2 {
  font-size: 0.42rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .index-page .more-story-section .content-box .h2 {
    font-size: 0.64rem;
    line-height: 0.85rem;
    text-align: center;
    width: 4.5rem;
    margin: 0 auto;
  }
}
.index-page .more-story-section .content-box .btn {
  margin-top: 0.29rem;
}
@media screen and (max-width: 800px) {
  .index-page .more-story-section .content-box .btn {
    margin-top: 0.64rem;
  }
}

.error-page {
  height: 100vh;
  width: 100vw;
  background: #000000;
  position: relative;
}
.error-page .error-img {
  position: absolute;
  top: 13.88%;
  height: 36.111vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .error-page .error-img {
    height: auto;
    width: 85vw;
    top: 19.6%;
  }
}
.error-page .error-bg {
  position: absolute;
  object-fit: contain;
  bottom: 0;
  width: 100%;
  height: 82.7%;
  left: 0;
}
.error-page .error-content {
  position: absolute;
  width: 100%;
  top: calc(50% + 10vh);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .error-page .error-content {
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.error-page .error-content .h1 {
  color: #fff;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .error-page .error-content .h1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    width: 3.9rem;
    margin: 0 auto;
  }
}
.error-page .error-content .btn-s {
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .error-page .error-content .btn-s {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 36.6vh;
    padding: 0 0.4rem 0.4rem;
  }
}
.error-page .error-content .btn-s .btn {
  margin-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .error-page .error-content .btn-s .btn {
    margin-bottom: 0.2rem;
    margin-right: 0;
  }
  .error-page .error-content .btn-s .btn .hry__btn__content {
    -webkit-transform: translateX(0.15rem);
        -ms-transform: translateX(0.15rem);
            transform: translateX(0.15rem);
  }
  .error-page .error-content .btn-s .btn .hry__btn__content .hry__btn__svg {
    opacity: 0;
  }
}
.error-page .error-content .btn-s .btn:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .error-page .error-content .btn-s .btn:last-child {
    margin-bottom: 0;
    color: #fff;
  }
  .error-page .error-content .btn-s .btn:last-child::before {
    width: 0;
  }
}

.privacy-policy-page .main {
  min-height: 100vh;
  padding: 2.2rem 0 2.5rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main {
    padding: 2.88rem 0 2.74rem;
  }
}
.privacy-policy-page .main h1 {
  text-align: center;
  font-size: 0.56rem;
  line-height: 0.74rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main h1 {
    text-align: left;
    padding: 0 0.4rem;
  }
}
.privacy-policy-page .main .content-box {
  margin-left: auto;
  margin-right: auto;
  width: 9.6rem;
  margin-top: 0.58rem;
  font-size: 0.18rem;
  color: var(--sk-global-color);
  line-height: 1.333333;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main .content-box {
    width: 100%;
    padding: 0 0.4rem;
    margin-top: 0.48rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.privacy-policy-page .main .content-box ul,
.privacy-policy-page .main .content-box li {
  list-style-type: revert;
  margin: revert;
  padding: revert;
}

.filter-box__hry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.filter-box__hry .class-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.16rem;
  border-radius: 0.2rem;
  margin-right: 0.1rem;
  background: #EBEBEB;
  cursor: pointer;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  height: 0.4rem;
}
.filter-box__hry .class-box .hry__more-content {
  height: 100%;
}
.filter-box__hry .class-box .hry__text {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.filter-box__hry .class-box .txt {
  font-size: 0.14rem;
  line-height: 0.21rem;
  color: var(--sk-global-color);
  margin-right: 0.28rem;
}
.filter-box__hry .class-box .add-icon {
  width: 0.12rem;
  color: var(--sk-global-color);
}
.filter-box__hry .class-box.on {
  background-color: var(--sk-global-color);
}
.filter-box__hry .class-box.on .txt {
  color: #fff;
}
.filter-box__hry .class-box.on .add-icon {
  color: #fff;
}

.hry__pager-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .hry__pager-box {
    padding-bottom: 1.63rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
}
.hry__pager-box .navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .hry__pager-box .navigation {
    position: absolute;
    bottom: 0;
    z-index: 10;
  }
  .hry__pager-box .navigation.next-box {
    left: 0;
  }
}
.hry__pager-box .navigation .icon {
  width: 0.36rem;
  margin-top: 0.12rem;
}
.hry__pager-box .navigation .icon-btn {
  color: rgba(31, 31, 31, 0.3);
  width: 0.44rem;
  margin-top: 0.12rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .hry__pager-box .navigation .icon-btn {
    width: 0.5rem;
  }
}
.hry__pager-box .navigation .icon-btn .icone-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hry__pager-box .navigation .icon-btn .icone-content .icon {
  width: 100%;
  margin: 0 0.04rem;
}
.hry__pager-box .navigation .icon-btn .icone-content .icon.icon_bottom {
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 800px) {
  .hry__pager-box .navigation.prev-box {
    right: 0;
  }
}
.hry__pager-box .navigation.prev-box .icon-btn .icone-content .icon.icon_top {
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.hry__pager-box .navigation.prev-box .icon-btn .icone-content .icon.icon_bottom {
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.hry__pager-box .navigation .txt {
  font-size: 0.48rem;
  line-height: 0.64rem;
  margin: 0 0.28rem;
  font-family: var(--sk-font-Medium);
  color: rgba(31, 31, 31, 0.3);
}
@media screen and (max-width: 800px) {
  .hry__pager-box .navigation .txt {
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.hry__pager-box .navigation.on {
  pointer-events: all;
  cursor: pointer;
}
.hry__pager-box .navigation.on .icon-btn {
  color: var(--sk-global-color);
}
.hry__pager-box .navigation.on .txt {
  color: var(--sk-global-color);
}
@media screen and (min-width: 800px) {
  .hry__pager-box .navigation.on:hover .icon-btn .icone-content {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .hry__pager-box .navigation.on.prev-box:hover .icon-btn .icone-content {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.hry__pager-box .pagination-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.2rem;
  line-height: 0.27rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .hry__pager-box .pagination-box {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.hry__pager-box .pagination-box .ent {
  margin: 0 0.15rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .hry__pager-box .pagination-box .ent {
    margin: 0 0.19rem;
  }
}
.hry__pager-box .pagination-box .ent.on {
  color: rgba(31, 31, 31, 0.3);
}
.hry__pager-box .pagination-box .ent:not(.on) {
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .hry__pager-box .pagination-box .ent:not(.on)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.01rem;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    -webkit-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 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);
  }
}
@media screen and (min-width: 800px) {
  .hry__pager-box .pagination-box .ent:hover::before {
    -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);
  }
}

.search-result-page .banner-section {
  height: 6rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section {
    height: 9.6rem;
  }
}
.search-result-page .banner-section .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.search-result-page .banner-section .banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0.4rem 0.2rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content {
    padding-bottom: 0.4rem;
  }
}
.search-result-page .banner-section .banner-content .h1 {
  color: #fff;
  font-size: 0.56rem;
  line-height: 0.74rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content .h1 {
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
}
.search-result-page .banner-section .banner-content .input-box {
  margin-top: 0.17rem;
  height: 0.72rem;
  border-radius: 0.08rem;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content .input-box {
    margin-top: 0.4rem;
    border-radius: 0.1rem;
    height: 1rem;
  }
}
.search-result-page .banner-section .banner-content .input-box input {
  height: 100%;
  width: calc(100% - 1rem);
  padding-left: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content .input-box input {
    font-size: 0.32rem;
    line-height: 0.42rem;
    padding-left: 0.3rem;
  }
}
.search-result-page .banner-section .banner-content .input-box input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.search-result-page .banner-section .banner-content .input-box input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.search-result-page .banner-section .banner-content .input-box input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.search-result-page .banner-section .banner-content .input-box input::placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.search-result-page .banner-section .banner-content .input-box .clone-search-btn {
  position: absolute;
  top: 50%;
  right: 0.12rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-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;
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content .input-box .clone-search-btn {
    right: 0.2rem;
  }
}
.search-result-page .banner-section .banner-content .input-box .clone-search-btn .clone-icon-box {
  width: 0.16rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content .input-box .clone-search-btn .clone-icon-box {
    width: 0.22rem;
  }
}
.search-result-page .banner-section .banner-content .input-box .clone-search-btn .clone-icon-box.show {
  opacity: 1;
  visibility: visible;
}
.search-result-page .banner-section .banner-content .input-box .clone-search-btn .clone-icon-box .clone-icon {
  width: 100%;
}
.search-result-page .banner-section .banner-content .input-box .clone-search-btn .search-btn {
  margin-left: 0.2rem;
  height: 0.48rem;
  width: 0.48rem;
  border-radius: 0.08rem;
  background: #E4E4E6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content .input-box .clone-search-btn .search-btn {
    width: 0.41rem;
    height: 0.41rem;
    background: transparent;
  }
}
.search-result-page .banner-section .banner-content .input-box .clone-search-btn .search-btn .search-icon {
  width: 0.2rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .banner-section .banner-content .input-box .clone-search-btn .search-btn .search-icon {
    width: 100%;
  }
}
.search-result-page .content-section {
  padding: 0.8rem 0.4rem 2.4rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section {
    padding: 1.6rem 0.4rem 2.4rem;
  }
}
.search-result-page .content-section .filter-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .filter-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0.22rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.search-result-page .content-section .filter-section .total-txt {
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: rgba(31, 31, 31, 0.4);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .filter-section .total-txt {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .filter-section .total-txt {
    margin-top: 0.78rem;
  }
}
.search-result-page .content-section .filter-section .total-txt .num {
  display: inline-block;
  margin: 0 0.04rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .filter-section .total-txt .num {
    margin: 0 0.08rem;
  }
}
.search-result-page .content-section .content-list {
  display: none;
}
.search-result-page .content-section .content-list.show {
  display: block;
}
.search-result-page .content-section .content-list.product-box .product-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.search-result-page .content-section .content-list.product-box .product-list .product-card {
  padding-top: 0.64rem;
  width: calc((100% - 0.22rem) / 3);
  margin-right: 0.11rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.product-box .product-list .product-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.8rem;
    padding-top: 0;
  }
  .search-result-page .content-section .content-list.product-box .product-list .product-card:last-child {
    margin-bottom: 0;
  }
}
.search-result-page .content-section .content-list.product-box .product-list .product-card:nth-child(3n) {
  margin-right: 0;
}
.search-result-page .content-section .content-list.product-box .product-list .product-card:nth-child(-n+3) {
  padding-top: 0;
}
.search-result-page .content-section .content-list.product-box .product-list .product-card .img-box {
  height: 4.28rem;
  background: #F1F1F1;
  border-radius: 0.1rem;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.product-box .product-list .product-card .img-box {
    height: 4.73rem;
    border-radius: 0.16rem;
  }
}
.search-result-page .content-section .content-list.product-box .product-list .product-card .img-box .img {
  width: 78.2%;
  height: 63.55%;
  object-fit: contain;
}
.search-result-page .content-section .content-list.product-box .product-list .product-card .img-box .btn {
  -webkit-transform: translateY(calc(100% + 0.2rem));
      -ms-transform: translateY(calc(100% + 0.2rem));
          transform: translateY(calc(100% + 0.2rem));
}
.search-result-page .content-section .content-list.product-box .product-list .product-card .name {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
  margin-top: 0.18rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.product-box .product-list .product-card .name {
    margin-top: 0.22rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
}
@media screen and (min-width: 800px) {
  .search-result-page .content-section .content-list.product-box .product-list .product-card:hover .img-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .search-result-page .content-section .content-list.product-box .product-list .product-card:hover .img-box .btn {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.search-result-page .content-section .content-list.news-infor .news-infor-list .news-card {
  padding-top: 0.32rem;
  padding-bottom: 0.34rem;
  border-top: 0.01rem solid #D8D8D8;
  color: #1F1F1F;
  display: block;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.news-infor .news-infor-list .news-card {
    padding-top: 0.4rem;
    padding-bottom: 0.48rem;
    border-top: 0.02rem solid #D8D8D8;
  }
}
.search-result-page .content-section .content-list.news-infor .news-infor-list .news-card:last-child {
  border-bottom: 0.01rem solid #D8D8D8;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.news-infor .news-infor-list .news-card:last-child {
    border-bottom: 0.02rem solid #D8D8D8;
  }
}
.search-result-page .content-section .content-list.news-infor .news-infor-list .news-card .tit {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.news-infor .news-infor-list .news-card .tit {
    font-size: 0.36rem;
    line-height: 0.48rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.search-result-page .content-section .content-list.news-infor .news-infor-list .news-card .infor {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.news-infor .news-infor-list .news-card .infor {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.search-result-page .content-section .content-list.news-infor .news-infor-list .news-card .link {
  margin-top: 0.19rem;
  color: #007BFF;
  font-size: 0.14rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.news-infor .news-infor-list .news-card .link {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    text-decoration: underline;
  }
}
.search-result-page .content-section .content-list.service-system .service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card {
  width: calc((100% - 1rem) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1rem;
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.service-system .service-list .service-card {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0.8rem;
  }
  .search-result-page .content-section .content-list.service-system .service-list .service-card:last-child {
    margin-bottom: 0;
  }
}
.search-result-page .content-section .content-list.service-system .service-list .service-card:nth-child(2n) {
  margin-right: 0;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card:nth-child(-n+2) {
  margin-top: 0;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .img-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 2.36rem;
  width: 4.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.service-system .service-list .service-card .img-box {
    width: 100%;
    height: 3.76rem;
  }
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .img-box .img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box {
  margin-left: 0.4rem;
  margin-top: 0.37rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box {
    margin-left: 0;
    margin-top: 0.4rem;
  }
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .tit {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .tit {
    font-size: 0.36rem;
    line-height: 0.48rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .date {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: rgba(31, 31, 31, 0.5);
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .date {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .link-box {
  margin-top: 0.2rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .link-box .link-text {
  font-size: 0.14rem;
  line-height: 0.19rem;
  color: var(--sk-global-color);
  margin-right: 0.06rem;
  font-family: var(--sk-font-Medium);
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .link-box .link-icon {
  overflow: hidden;
  height: 0.16rem;
  position: relative;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .link-box .link-icon .icone-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .link-box .link-icon .icone-content .icon {
  height: 0.12rem;
  margin: 0.02rem 0;
}
.search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .link-box .link-icon .icone-content .icon.icon_bottom {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (min-width: 800px) {
  .search-result-page .content-section .content-list.service-system .service-list .service-card .txt-box .link-box:hover .link-icon .icone-content {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media screen and (min-width: 800px) {
  .search-result-page .content-section .content-list.service-system .service-list .service-card:hover .img-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.search-result-page .content-section .hry__pager-box {
  margin-top: 1rem;
}
@media screen and (max-width: 800px) {
  .search-result-page .content-section .hry__pager-box {
    margin-top: 1.2rem;
  }
}

@media screen and (min-width: 800px) {
  .hry-underline .underline-box {
    position: relative;
  }
  .hry-underline .underline-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.05em;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    -webkit-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 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);
  }
  .hry-underline:hover .underline-box::before {
    -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);
  }
}
.derivatives-details-page .derivatives-main {
  padding-top: 1rem;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main {
    padding-top: 0;
  }
}
.derivatives-details-page .derivatives-main .breadcrumb {
  padding: 0 0.4rem;
}
.derivatives-details-page .derivatives-main .breadcrumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.derivatives-details-page .derivatives-main .breadcrumb ul li {
  position: relative;
  padding-right: 0.1rem;
  margin-right: 0.04rem;
  color: rgba(31, 31, 31, 0.6);
  font-size: 0.14rem;
  line-height: 0.21rem;
}
.derivatives-details-page .derivatives-main .breadcrumb ul li::after {
  content: "/";
  color: currentColor;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.derivatives-details-page .derivatives-main .breadcrumb ul li:last-child::after {
  content: none;
}
.derivatives-details-page .derivatives-main .breadcrumb ul li:last-child a {
  color: var(--sk-global-color);
  pointer-events: none;
}
.derivatives-details-page .derivatives-main .breadcrumb ul li a {
  font-size: inherit;
  line-height: inherit;
  color: currentColor;
}
.derivatives-details-page .derivatives-main .breadcrumb ul li a:hover {
  color: var(--sk-global-color);
}
.derivatives-details-page .derivatives-main .details-section {
  padding: 0.09rem 0.4rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.1rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper {
  width: 70%;
  height: 8rem;
  background: #F8F8F8;
  border-radius: 0.1rem;
  margin-right: 0.4rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper {
    width: 100%;
    height: 8.8rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-btn.return-icon {
  position: absolute;
  top: 1.38rem;
  left: 0.3rem;
  width: 0.72rem;
  height: 0.72rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.1rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.01);
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-btn.return-icon .icon {
  width: 0.29rem;
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper {
  height: 5.49rem;
  width: 76%;
  position: absolute;
  left: 50%;
  top: calc(50% - 0.27rem);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper {
    top: calc(50% + 0.38rem);
    width: 58.5%;
    height: 4.58rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper .swiper-wrapper .swiper-slide .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-pagination {
  position: absolute;
  bottom: 0.31rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.08rem 0.1rem 0.07rem;
  background: #E4E4E6;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-pagination {
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
    bottom: 0.4rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  background: rgba(31, 31, 31, 0.15);
  border-radius: 0.04rem;
  height: 0.08rem;
  width: 0.08rem;
  margin-right: 0.08rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
    margin-right: 0.1rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.33rem;
  background: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.52rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation {
    position: static;
  }
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .prev {
    position: absolute;
    top: 1.38rem;
    left: 0.3rem;
  }
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .next {
    position: absolute;
    top: 1.38rem;
    right: 0.3rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .swiper-btn {
  width: 0.48rem;
  height: 0.48rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.1rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .swiper-btn {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .swiper-btn .icon {
  width: 0.18rem;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .swiper-btn .icon {
    width: 0.29rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .swiper-btn:hover {
  background: #E4E4E6;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .preview-swiper .navigation .swiper-btn:hover {
    display: none;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor {
    padding: 0.6rem 0.3rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .h1 {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor .h1 {
    font-size: 0.42rem;
    line-height: 0.56rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .color-scheme {
  margin-top: 0.39rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor .color-scheme {
    margin-top: 0.43rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .color-scheme .color-box {
  margin-right: 0.14rem;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor .color-scheme .color-box {
    margin-right: 0.24rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .color-scheme .color-box .icon {
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .color-scheme .color-box.on::after {
  position: absolute;
  content: "";
  height: 0.32rem;
  width: 0.32rem;
  border-radius: 50%;
  border: 0.01rem solid #000000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .introduction {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor .introduction {
    margin-top: 0.5rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .btn {
  margin-top: 0.47rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor .btn {
    margin-top: 0.47rem;
    color: var(--sk-global-color);
  }
  .derivatives-details-page .derivatives-main .details-section .bro-infor .btn::before {
    width: 0;
  }
  .derivatives-details-page .derivatives-main .details-section .bro-infor .btn .hry__btn__content {
    -webkit-transform: translateX(0.15rem);
        -ms-transform: translateX(0.15rem);
            transform: translateX(0.15rem);
  }
  .derivatives-details-page .derivatives-main .details-section .bro-infor .btn .hry__btn__content .hry__btn__svg {
    opacity: 0;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .pro-infor {
  margin-top: 0.66rem;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor .pro-infor {
    margin-top: 1.2rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .pro-infor .pro-item {
  margin-bottom: 0.21rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .details-section .bro-infor .pro-infor .pro-item {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-bottom: 0.34rem;
  }
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .pro-infor .pro-item:last-child {
  margin-bottom: 0;
}
.derivatives-details-page .derivatives-main .details-section .bro-infor .pro-infor .pro-item .vlaue {
  opacity: 0.7;
}
.derivatives-details-page .derivatives-main .related-section {
  padding: 1.61rem 0.4rem 0 0.4rem;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .related-section {
    padding: 1.8rem 0.1rem 0;
  }
}
.derivatives-details-page .derivatives-main .related-section .label {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .related-section .label {
    font-size: 0.64rem;
    line-height: 0.85rem;
    padding-left: 0.31rem;
  }
}
.derivatives-details-page .derivatives-main .related-section .related-list {
  margin-top: 0.55rem;
  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) {
  .derivatives-details-page .derivatives-main .related-section .related-list {
    margin-top: 0.6rem;
  }
}
.derivatives-details-page .derivatives-main .related-section .related-list .related-card {
  margin-right: 0.1rem;
  width: calc((100% - 0.3rem) / 4);
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .related-section .related-list .related-card {
    width: calc((100% - 0.1rem) / 2);
    margin-top: 0.8rem;
    margin-right: 0.1rem;
  }
  .derivatives-details-page .derivatives-main .related-section .related-list .related-card:nth-child(2n) {
    margin-right: 0;
  }
  .derivatives-details-page .derivatives-main .related-section .related-list .related-card:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .derivatives-details-page .derivatives-main .related-section .related-list .related-card:nth-child(4n) {
    margin-right: 0;
  }
  .derivatives-details-page .derivatives-main .related-section .related-list .related-card:nth-child(-n+4) {
    margin-top: 0;
  }
}
.derivatives-details-page .derivatives-main .related-section .related-list .related-card .img-box {
  height: 0;
  padding-top: 100%;
  border-radius: 0.1rem;
  background: #F8F8F8;
  position: relative;
}
.derivatives-details-page .derivatives-main .related-section .related-list .related-card .img-box .img {
  position: absolute;
  width: 82.5%;
  height: 82.5%;
  top: 50%;
  left: 50%;
  object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.derivatives-details-page .derivatives-main .related-section .related-list .related-card .name {
  font-family: var(--sk-font-Medium);
  margin-top: 0.14rem;
  font-size: 0.2rem;
  line-height: 0.27rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .derivatives-details-page .derivatives-main .related-section .related-list .related-card .name {
    margin-top: 0.28rem;
    margin-left: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
}
@media screen and (min-width: 800px) {
  .derivatives-details-page .derivatives-main .related-section .related-list .related-card:hover .img-box .img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
        -ms-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}

.derivatives-class-page .por-card.hry {
  width: calc((100% - 0.22rem) / 3);
  display: block;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .por-card.hry {
    width: calc((100% - 0.3rem) / 2);
  }
}
.derivatives-class-page .por-card.hry .img-box {
  display: block;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 0.1rem;
  background: #F8F8F8;
  overflow: hidden;
}
.derivatives-class-page .por-card.hry .img-box .img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.derivatives-class-page .por-card.hry .img-box .img.front {
  width: 82.5%;
  height: 82.5%;
  object-fit: contain;
  visibility: visible;
}
.derivatives-class-page .por-card.hry .img-box .img.back {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: visible;
}
@media screen and (min-width: 800px) {
  .derivatives-class-page .por-card.hry .img-box:hover .front {
    opacity: 0;
    visibility: hidden;
  }
  .derivatives-class-page .por-card.hry .img-box:hover .back {
    opacity: 1;
    visibility: visible;
  }
}
.derivatives-class-page .por-card.hry .name-filter {
  margin-top: 0.19rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .por-card.hry .name-filter {
    -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-left: 0.2rem;
    margin-top: 0.28rem;
  }
}
.derivatives-class-page .por-card.hry .name-filter .name {
  padding-left: 0.1rem;
  font-size: 0.2rem;
  line-height: 0.27rem;
  font-family: var(--sk-font-Medium);
  color: var(--sk-global-color);
  padding-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .por-card.hry .name-filter .name {
    padding-left: 0;
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
}
.derivatives-class-page .por-card.hry .name-filter .swatches {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .por-card.hry .name-filter .swatches {
    margin-top: 0.26rem;
  }
}
.derivatives-class-page .por-card.hry .name-filter .swatches .colors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 0.1rem;
}
.derivatives-class-page .por-card.hry .name-filter .swatches .colors .color {
  cursor: pointer;
  margin-left: 0.1rem;
  height: 0.22rem;
  width: 0.22rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .por-card.hry .name-filter .swatches .colors .color {
    margin-left: 0;
    margin-right: 0.1rem;
  }
}
.derivatives-class-page .por-card.hry .name-filter .swatches .colors .color .icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.derivatives-class-page .por-card.hry .name-filter .swatches .colors .color.on::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0.26rem;
  width: 0.26rem;
  border-radius: 50%;
  border: 0.01rem solid #000000;
}
.derivatives-class-page .derivatives-main {
  padding: 2.2rem 0.4rem 2.43rem;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main {
    padding-top: 2.88rem;
    padding-bottom: 2.4rem;
  }
}
.derivatives-class-page .derivatives-main .h1 {
  font-size: 0.56rem;
  line-height: 0.74rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main .h1 {
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
}
.derivatives-class-page .derivatives-main .filter-section {
  margin-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main .filter-section {
    margin-top: 0.6rem;
  }
}
.derivatives-class-page .derivatives-main .class-section {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main .class-section {
    margin-top: 1.2rem;
    width: calc(100% + 0.8rem);
    margin-left: -0.4rem;
  }
}
.derivatives-class-page .derivatives-main .class-section .class-box {
  margin-bottom: 2.34rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main .class-section .class-box {
    margin-bottom: 2.42rem;
  }
}
.derivatives-class-page .derivatives-main .class-section .class-box.show {
  display: block;
}
.derivatives-class-page .derivatives-main .class-section .class-box:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  .derivatives-class-page .derivatives-main .class-section .class-box:nth-child(2n) .class-banner .por-card:nth-child(2) {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    margin-right: 0.11rem;
    margin-left: 0;
  }
}
.derivatives-class-page .derivatives-main .class-section .class-box .class-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.derivatives-class-page .derivatives-main .class-section .class-box .class-banner .banner-box {
  width: calc((100% - 0.055rem) / 3 * 2);
  height: 8.6rem;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.06rem;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main .class-section .class-box .class-banner .banner-box {
    height: 9.6rem;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0.18rem;
  }
}
.derivatives-class-page .derivatives-main .class-section .class-box .class-banner .banner-box .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.derivatives-class-page .derivatives-main .class-section .class-box .class-banner .banner-box .tit {
  position: relative;
  font-size: 0.32rem;
  line-height: 0.42rem;
  color: var(--sk-global-color);
  margin-top: 0.3rem;
  margin-left: 0.4rem;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main .class-section .class-box .class-banner .banner-box .tit {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.derivatives-class-page .derivatives-main .class-section .class-box .class-banner .por-card {
  margin-left: 0.11rem;
  margin-top: 0.54rem;
}
@media screen and (max-width: 800px) {
  .derivatives-class-page .derivatives-main .class-section .class-box .class-banner .por-card {
    margin-top: 0.82rem;
  }
  .derivatives-class-page .derivatives-main .class-section .class-box .class-banner .por-card:nth-child(2n) {
    margin-left: 0.1rem;
  }
}
@media screen and (min-width: 800px) {
  .derivatives-class-page .derivatives-main .class-section .class-box .class-banner .por-card:nth-child(3n-3) {
    margin-left: 0;
  }
  .derivatives-class-page .derivatives-main .class-section .class-box .class-banner .por-card:nth-child(2) {
    margin-top: 0;
  }
}

.app-page .app-main {
  height: 100vh;
  width: 100vw;
  position: relative;
}
.app-page .app-main .bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: bottom;
}
.app-page .app-main .car-img {
  z-index: 4;
  height: 68vh;
  position: absolute;
  right: 39vw;
  bottom: 0;
}
.app-page .app-main .phone-img {
  z-index: 4;
  height: 90vh;
  position: absolute;
  left: 48vw;
  bottom: 0;
}
.app-page .app-main .content-wrapper {
  color: #ffffff;
  height: 100%;
  position: relative;
  z-index: 6;
}
.app-page .app-main .content-wrapper .wal .content-box {
  position: absolute;
  top: calc(50% - 4.1vh);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .app-page .app-main .content-wrapper .wal .content-box {
    position: relative;
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    text-align: center;
    padding-top: 2.51rem;
  }
}
.app-page .app-main .content-wrapper .wal .content-box .h1 {
  font-size: 0.56rem;
  line-height: 0.74rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .app-page .app-main .content-wrapper .wal .content-box .h1 {
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
}
.app-page .app-main .content-wrapper .wal .content-box .txt {
  margin-top: 0.34rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .app-page .app-main .content-wrapper .wal .content-box .txt {
    margin: 0.24rem auto 0;
    width: 5.1rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
}
.app-page .app-main .content-wrapper .wal .content-box .qr-box {
  margin-top: 0.68rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.app-page .app-main .content-wrapper .wal .content-box .qr-box .qr-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 1.24rem;
  height: 1.24rem;
}
.app-page .app-main .content-wrapper .wal .content-box .qr-box .infor {
  margin-top: 0.1rem;
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.app-page .app-main .content-wrapper .wal .content-box .btn {
  margin-top: 0.64rem;
}

.retail-store-page .retail-store-main {
  height: 100vh;
  width: 100vw;
}
.retail-store-page .retail-store-main #container {
  height: 100%;
  width: 100%;
}
.retail-store-page .retail-store-main .filter-wrapper {
  position: fixed;
  height: calc(100vh - 1.1rem);
  top: 1rem;
  left: 0.2rem;
  width: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper {
    top: auto;
    bottom: 0.1rem;
    width: calc(100% - 0.2rem);
    left: 0.1rem;
    height: auto;
    border-radius: 0.16rem;
  }
  .retail-store-page .retail-store-main .filter-wrapper::before {
    background-color: var(--sk-global-color);
    content: "";
    position: absolute;
    left: 50%;
    top: 0.1rem;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 0.06rem;
    width: 0.6rem;
    border-radius: 0.03rem;
    z-index: 5;
  }
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper.show {
    box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(109, 109, 109, 0.3);
  }
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper.show .filter-box {
    box-shadow: none;
    border-radius: 0.16rem 0.16rem 0 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper.show .filter-box .sk_select .-select-layer {
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
    bottom: -0.1rem;
    top: auto;
  }
}
.retail-store-page .retail-store-main .filter-wrapper.show .filter-content {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper.show .filter-content {
    height: auto;
  }
  .retail-store-page .retail-store-main .filter-wrapper.show .filter-content .filter-content-list {
    height: 57vh;
    border-radius: 0 0 0.16rem 0.16rem;
    overflow: hidden;
    padding-bottom: 0.32rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background: #F8F8F8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.1rem 0.2rem;
  border-radius: 0.08rem;
  box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(109, 109, 109, 0.3);
  position: relative;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box {
    padding: 0.56rem 0.3rem 0.44rem;
    border-radius: 0.16rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select {
  width: calc(50% - 0.05rem);
  border-radius: 0.03rem;
  --h: .4rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select {
    --h: .8rem;
    border-radius: 0.1rem;
    width: calc(50% - 0.1rem);
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select:first-child {
  margin-right: 0.1rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select:first-child {
    margin-right: 0.2rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front {
  padding: 0.1rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front {
    font-size: 0.26rem;
    padding: 0.2rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front input {
  font-family: var(--sk-font-Regular);
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front input {
    font-size: 0.26rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-front input::placeholder {
  color: rgba(31, 31, 31, 0.4);
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-layer {
    -webkit-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
            transform: translate(0, -100%);
    top: -0.1rem;
    bottom: auto;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-layer .-inner dl dd {
  --dd-font-size: 0.14rem;
  --dd-padding: 0.06rem 0.1rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-layer .-inner dl dd {
    --dd-font-size: 0.26rem;
    --dd-padding: 0.12rem 0.2rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-layer .-inner .-scroll {
  max-height: 4rem;
  overflow-y: auto;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-box .sk_select .-select-layer .-inner .-scroll {
    max-height: 6rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content {
  box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(109, 109, 109, 0.3);
  margin-top: 0.1rem;
  background: #F8F8F8;
  height: calc(100% - 0.8rem);
  border-radius: 0.08rem;
  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;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content {
    margin-top: 0;
    height: 0;
    border-radius: 0.16rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list {
  height: 100%;
  display: none;
  padding: 0.2rem 0.2rem 0;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list {
    margin-top: -0.22rem;
    padding: 0 0.3rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list.show {
  display: block;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box {
  height: 0.4rem;
  border-radius: 0.03rem;
  border: 0.02rem solid #1F1F1F;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box {
    height: 0.8rem;
    border-radius: 0.1rem;
    border: 0.04rem solid #1F1F1F;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box input {
  height: 100%;
  width: calc(100% - 0.3rem);
  padding-left: 0.1rem;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box input {
    padding-left: 0.2rem;
    font-size: 0.26rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box input::placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box .search {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.09rem;
  width: 0.17rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box .search {
    width: 0.36rem;
    right: 0.2rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .input-box .search .search-icon {
  width: 100%;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: calc(100% - 0.4rem);
  overflow-y: auto;
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  width: calc(100% + 0.18rem);
  padding-right: 0.09rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list {
    height: calc(100% - 0.8rem);
    padding-top: 0;
    margin-top: 0.3rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list::-webkit-scrollbar {
  display: block;
  width: 0.08rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list::-webkit-scrollbar {
    width: 0.14rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list::-webkit-scrollbar-thumb {
  background: var(--sk-global-color);
  border-radius: 10px;
  border: 2px solid #f5f5f5;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card {
  padding: 0.16rem;
  margin-bottom: 0.02rem;
  border-radius: 0.1rem;
  display: block;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card {
    background: #E4E4E6;
    margin-bottom: 0.2rem;
    padding: 0.3rem 0.2rem 0.32rem;
    border-radius: 0.16rem;
  }
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card:last-child {
    margin-bottom: 0;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card .tit {
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card .tit {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card .address {
  margin-top: 0.09rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
  color: rgba(31, 31, 31, 0.7);
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card .address {
    margin-top: 0.2rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card .data-list {
  font-size: 0.14rem;
  line-height: 0.19rem;
  color: rgba(31, 31, 31, 0.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.05rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card .data-list {
    font-size: 0.24rem;
    line-height: 0.32rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    row-gap: 0.1rem;
    margin-top: 0.1rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .filter-content-list .site-list .site-card:hover {
  background: #E4E4E6;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content {
  height: 100%;
  display: none;
  padding: 0.1rem;
  overflow: auto;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content {
    max-height: 70vh;
    padding: 0.57rem 0.3rem 0.54rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content::-webkit-scrollbar {
  width: 0.08rem;
  display: block;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content::-webkit-scrollbar-thumb {
  background: var(--sk-global-color);
  border-radius: 10px;
  border: 2px solid #f5f5f5;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content.show {
  display: block;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner {
  height: 2.53rem;
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner {
    height: 4.47rem;
    border-radius: 0.16rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner .banner-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner .link-btn {
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  top: 0.1rem;
  left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner .link-btn {
    width: 0.72rem;
    height: 0.72rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner .link-btn .hry__icone-content .icon {
  --icon-height: 0.2rem;
  margin: 0 0.02rem;
  -webkit-transform: rotate(-90deg) scaleX(-1) translateZ(0);
          transform: rotate(-90deg) scaleX(-1) translateZ(0);
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner .link-btn .hry__icone-content .icon {
    --icon-height: 0.3rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner .link-btn .hry__icone-content .icon.icon_bottom {
  top: 0;
  left: 100%;
}
@media screen and (min-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .site-banner .link-btn:hover .hry__icone-content {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box {
  padding: 0 0.1rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box {
    padding: 0;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .name {
  margin-top: 0.17rem;
  font-size: 0.2rem;
  line-height: 0.27rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .name {
    margin-top: 0.5rem;
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .star-list {
  margin-top: 0.11rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .star-list {
    margin-top: 0.28rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .star-list .star-icon {
  width: 0.12rem;
  margin-right: 0.06rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .star-list .star-icon {
    width: 0.36rem;
    margin-right: 0.18rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .address {
  margin-top: 0.19rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
  color: rgba(31, 31, 31, 0.7);
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .address {
    margin-top: 0.4rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .data-list {
  margin-top: 0.05rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
  color: rgba(31, 31, 31, 0.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.05rem;
}
@media screen and (max-width: 800px) {
  .retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .data-list {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    row-gap: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.retail-store-page .retail-store-main .filter-wrapper .filter-content .site-content .infor-box .btn {
  margin-top: 0.22rem;
  width: 100%;
}

.service-system-page .banner-section {
  height: 100vh;
  position: relative;
}
.service-system-page .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.service-system-page .banner-section .wal {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .service-system-page .banner-section .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.service-system-page .banner-section .wal .content-box {
  color: #ffffff;
  padding-bottom: 12.22%;
}
@media screen and (max-width: 800px) {
  .service-system-page .banner-section .wal .content-box {
    padding-bottom: 0;
    padding-top: 2.88rem;
  }
}
.service-system-page .banner-section .wal .content-box .h1 {
  font-size: 0.56rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .banner-section .wal .content-box .h1 {
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
}
.service-system-page .banner-section .wal .content-box .txt {
  width: 5.11rem;
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .banner-section .wal .content-box .txt {
    margin-top: 0.36rem;
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .service-system-page .banner-section .wal .content-box .txt > span {
    display: inline !important;
  }
}
.service-system-page .card-list-section {
  background: #ffffff;
  position: relative;
  z-index: 4;
}
.service-system-page .card-list-section .wal {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal {
    padding-top: 3.22rem;
    padding-bottom: 1.88rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.service-system-page .card-list-section .wal .flex-wrap .card-li {
  height: 6.4rem;
  width: calc((100% - 0.1rem) * 0.6315789474);
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #E0E0E0;
  --color: #ffffff;
  --infor-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li {
    width: 100%;
    height: 6.7rem;
    border-radius: 0.16rem;
    margin-bottom: 0.4rem;
  }
  .service-system-page .card-list-section .wal .flex-wrap .card-li:last-child {
    margin-bottom: 0;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li[data-color=dark] {
  --color: var(--sk-global-color);
  --infor-color: color: rgba(31, 31, 31, 0.7);
}
@media screen and (min-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li:nth-child(4n+2), .service-system-page .card-list-section .wal .flex-wrap .card-li:nth-child(4n+3) {
    width: calc((100% - 0.1rem) * 0.3618421053);
  }
  .service-system-page .card-list-section .wal .flex-wrap .card-li:nth-child(2n) {
    margin-left: 0.1rem;
  }
  .service-system-page .card-list-section .wal .flex-wrap .card-li:nth-child(n+3) {
    margin-top: 0.1rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .bg-img-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box {
  position: relative;
  height: 100%;
  color: var(--color);
  padding: 0.4rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box {
    padding: 0.3rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .title {
  font-size: 0.32rem;
  line-height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .title {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .infor-txt {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: var(--infor-color);
  width: 3.06rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .infor-txt {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    width: 100%;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-btn {
  -webkit-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .qr-box {
  position: absolute;
  bottom: 0.44rem;
  left: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .qr-box {
    bottom: 0.25rem;
    left: 0.3rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .qr-box .qr-img {
  width: 1.14rem;
  height: 1.14rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .qr-box .qr-img {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .qr-box .qr-txt {
  color: #ffffff;
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .qr-box .qr-txt {
    margin-top: 0.12rem;
    font-size: 0.2rem;
    line-height: 0.27rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  width: calc(100% - 0.8rem);
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list {
    width: calc(100% - 0.6rem);
    left: 0.3rem;
    bottom: 0.3rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card {
  margin-top: 0.1rem;
  height: 1.41rem;
  background: #EBEBEB;
  border-radius: 0.1rem;
  padding: 0 0.4rem 0 0.36rem;
  display: -webkit-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) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card {
    padding: 0 0.36rem;
    height: 1.2rem;
  }
}
@media screen and (min-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card:hover {
    background: #F8F8F8;
  }
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card:hover .icon {
    opacity: 1;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card .logo-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card .logo-txt .logo {
  width: 0.6rem;
  height: 0.53rem;
  object-fit: contain;
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card .logo-txt .txt {
  margin-left: 0.36rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card .logo-txt .txt {
    margin-left: 0.36rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card .icon {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.service-system-page .card-list-section .wal .flex-wrap .card-li .content-box .link-list .link-card .icon .svg {
  height: 0.24rem;
}
@media screen and (min-width: 800px) {
  .service-system-page .card-list-section .wal .flex-wrap .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .service-system-page .card-list-section .wal .flex-wrap .card-li:hover .content-box .link-btn {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.service-system-page .swiper-comparison-section {
  padding: 0.1rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section {
    height: 100vh;
  }
}
.service-system-page .swiper-comparison-section .swiper-comparison-box {
  overflow: hidden;
  width: calc(64% - 0.05rem);
  height: calc(100vh - 0.2rem);
  border-radius: 0.1rem;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .swiper-comparison-box {
    -webkit-transform: translateY(-44.9507389163vh);
        -ms-transform: translateY(-44.9507389163vh);
            transform: translateY(-44.9507389163vh);
    width: 100%;
    height: 44.9507389163vh;
  }
}
.service-system-page .swiper-comparison-section .swiper-comparison-box .image-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
}
.service-system-page .swiper-comparison-section .swiper-comparison-box .image-layer .layer-content {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .swiper-comparison-box .image-layer .layer-content {
    height: 44.9507389163vh;
  }
}
.service-system-page .swiper-comparison-section .swiper-comparison-box .image-layer .layer-content .content-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.service-system-page .swiper-comparison-section .comparison-content {
  position: -webkit-sticky;
  position: sticky;
  top: 0.1rem;
  bottom: 0.1rem;
  float: right;
  width: calc(36% - 0.05rem);
  height: calc(100vh - 0.2rem);
  border-radius: 0.1rem;
  background: #E4E4E6;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content {
    width: 100%;
    bottom: 44.9507389163vh;
    background: transparent;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul {
  height: 100%;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .content-ul {
    position: relative;
    height: 53.2019704433vh;
    background: #E4E4E6;
    border-radius: 0.16rem;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.4rem;
  padding-bottom: calc(23% + 0.4rem);
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.4rem;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .icon {
  width: 0.75rem;
  height: 0.75rem;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .icon {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .title {
  margin-top: 1rem;
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: var(--sk-global-color);
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .title {
    margin-top: 0.69rem;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .infor-txt {
  margin-top: 0.26rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .infor-txt {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .btn {
  margin-top: 0.43rem;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .btn {
    margin-top: 0.64rem;
    color: var(--sk-global-color);
  }
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .btn::before {
    width: 0;
  }
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .btn .hry__btn__content {
    -webkit-transform: translateX(0.15rem);
        -ms-transform: translateX(0.15rem);
            transform: translateX(0.15rem);
  }
  .service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li .btn .hry__btn__content .hry__btn__svg {
    opacity: 0;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li.show {
  z-index: 10;
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li.show .icon {
  opacity: 1;
  visibility: visible;
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li.show .title {
  opacity: 1;
  visibility: visible;
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li.show .infor-txt {
  opacity: 1;
  visibility: visible;
}
.service-system-page .swiper-comparison-section .comparison-content .content-ul .content-li.show .btn {
  opacity: 1;
  visibility: visible;
}
.service-system-page .swiper-comparison-section .comparison-content .pagination-box {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  background: #FFFFFF;
  padding: 0.08rem 0.1rem;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .pagination-box {
    bottom: auto;
    top: 53.2019704433vh;
    left: 50%;
    -webkit-transform: translate(-50%, calc(-100% - 0.3rem));
        -ms-transform: translate(-50%, calc(-100% - 0.3rem));
            transform: translate(-50%, calc(-100% - 0.3rem));
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li {
  background: rgba(31, 31, 31, 0.15);
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.04rem;
  margin-right: 0.08rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
    margin-right: 0.1rem;
  }
}
.service-system-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li:last-child {
  margin-right: 0;
}
.service-system-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li.on {
  background: var(--sk-global-color);
  width: 0.33rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li.on {
    width: 0.52rem;
  }
}
.service-system-page .event-infor-section {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.service-system-page .event-infor-section .tit-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-system-page .event-infor-section .tit-navigation .h2 {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: var(--sk-global-color);
}
.service-system-page .event-infor-section .tit-navigation .navigation-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.service-system-page .event-infor-section .tit-navigation .left,
.service-system-page .event-infor-section .tit-navigation .right {
  margin-left: 0.1rem;
  position: relative;
  background: #F8F8F8;
  height: 0.48rem;
  width: 0.48rem;
  --icon-height: 0.2rem;
}
.service-system-page .event-infor-section .tit-navigation .left .hry__icone-content,
.service-system-page .event-infor-section .tit-navigation .right .hry__icone-content {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.service-system-page .event-infor-section .tit-navigation .left:hover,
.service-system-page .event-infor-section .tit-navigation .right:hover {
  background: #E4E4E6;
}
.service-system-page .event-infor-section .tit-navigation .left .hry__icone-content {
  -webkit-transform: rotate(270deg) rotateY(180deg);
          transform: rotate(270deg) rotateY(180deg);
}
.service-system-page .event-infor-section .tit-navigation .left:hover .hry__icone-content {
  -webkit-transform: rotate(270deg) rotateY(180deg) translateY(-100%);
          transform: rotate(270deg) rotateY(180deg) translateY(-100%);
}
.service-system-page .event-infor-section .tit-navigation .right:hover .hry__icone-content {
  -webkit-transform: rotate(90deg) translateY(-100%);
      -ms-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
}
.service-system-page .event-infor-section .swiper {
  margin-top: 0.64rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .service-system-page .event-infor-section .swiper {
    margin-top: 1.45rem;
  }
}
@media screen and (max-width: 800px) {
  .service-system-page .event-infor-section .swiper .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide {
    margin-bottom: 0.8rem;
  }
  .service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide:last-child {
    margin-bottom: 0;
  }
}
.service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide .img-box {
  height: 2.8rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide .img-box {
    height: 3.77rem;
    border-radius: 0.16rem;
  }
}
.service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide .img-box .img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--sk-global-color);
  margin-top: 0.19rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide .tit {
    margin-top: 0.39rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
}
.service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide .date {
  margin-top: 0.1rem;
  color: rgba(31, 31, 31, 0.5);
  font-size: 0.16rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .service-system-page .event-infor-section .swiper .swiper-wrapper .swiper-slide .date {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.service-system-page .foot-section {
  width: 100%;
  height: 100vh;
  padding: 0 0.1rem;
}
.service-system-page .foot-section .section-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.service-system-page .foot-section .section-container .background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.service-system-page .foot-section .section-container .background img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-system-page .foot-section .section-container .contact-box {
  position: relative;
  padding: 0.3rem;
  display: -webkit-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%;
  font-size: 0.96rem;
  line-height: 1.08rem;
  color: #ffffff;
  width: 6.6rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .service-system-page .foot-section .section-container .contact-box {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
  .service-system-page .foot-section .section-container .contact-box .txt {
    margin-top: 2.74rem;
  }
  .service-system-page .foot-section .section-container .contact-box .txt > span {
    display: inline !important;
  }
}

.repair-parts-price-inquiry-page .head-section {
  height: 6rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section {
    height: 9.6rem;
  }
}
.repair-parts-price-inquiry-page .head-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.repair-parts-price-inquiry-page .head-section .content-box {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.2rem 0.4rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section .content-box {
    padding: 0.4rem;
  }
}
.repair-parts-price-inquiry-page .head-section .content-box .h1 {
  font-size: 0.56rem;
  line-height: 0.74rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section .content-box .h1 {
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box {
  margin-top: 0.17rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section .content-box .filter-box {
    height: auto;
    margin-top: 0.4rem;
  }
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select {
  width: calc(50% - 0.05rem);
  margin-right: 0.1rem;
  height: 100%;
  --h: 100%;
  border: none;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select {
    width: 100%;
    margin-right: 0;
    --h: 1rem;
    margin-bottom: 0.2rem;
  }
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select:last-child {
    margin-bottom: 0;
  }
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front {
  border-radius: 0.08rem;
  border: none;
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front input {
  font-size: 0.24rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front input {
    font-size: 0.32rem;
  }
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.3);
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.3);
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.3);
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front input::placeholder {
  color: rgba(31, 31, 31, 0.3);
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .select-list .sk_select .-select-front::after {
  width: 0.16rem;
  height: 0.16rem;
}
.repair-parts-price-inquiry-page .head-section .content-box .filter-box .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;
  margin-left: 0.1rem;
  padding: 0 0.46rem;
  height: 100%;
  border-radius: 0.08rem;
  background: var(--sk-global-color);
  color: #FFFFFF;
  font-size: 0.24rem;
  line-height: 0.36rem;
  font-family: var(--sk-font-Medium);
  cursor: pointer;
}
.repair-parts-price-inquiry-page .content-section {
  min-height: 4.8rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section {
    min-height: 6.64rem;
  }
}
.repair-parts-price-inquiry-page .content-section .no-data {
  padding-top: 1.6rem;
  font-size: 0.32rem;
  line-height: 0.42rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
  display: none;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .no-data {
    padding-top: 2.4rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.repair-parts-price-inquiry-page .content-section .no-data.show {
  display: block;
}
.repair-parts-price-inquiry-page .content-section .flex-box {
  padding: 1.6rem 0 2.4rem;
  display: none;
}
.repair-parts-price-inquiry-page .content-section .flex-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.4rem 0.4rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell {
  width: 3.2rem;
  margin-right: 1.1rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .left-cell {
    width: 100%;
    margin-right: 0;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .name {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Medium);
  color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .left-cell .name {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list {
  margin-top: 0.26rem;
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list .cell-box {
  padding: 0.12rem 0.16rem;
  border-radius: 0.08rem;
  margin-bottom: 0.06rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list .cell-box .txt {
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: rgba(31, 31, 31, 0.6);
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list .cell-box .icon {
  opacity: 0;
  width: 0.18rem;
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list .cell-box:hover {
  background: #F8F8F8;
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list .cell-box.on {
  background: #EFEFEF;
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list .cell-box.on .txt {
  color: var(--sk-global-color);
}
.repair-parts-price-inquiry-page .content-section .flex-box .left-cell .cell-list .cell-box.on .icon {
  opacity: 1;
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper {
  margin-top: 0.04rem;
  width: 100%;
  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) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper {
    margin-top: 0.6rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box {
  width: 3.6rem;
  height: 0.4rem;
  border-radius: 0.03rem;
  border: 0.02rem solid #1F1F1F;
  position: relative;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box {
    width: 100%;
    height: 0.8rem;
    border: 0.04rem solid #1F1F1F;
    border-radius: 0.1rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box input {
  width: calc(100% - 0.3rem);
  height: 100%;
  padding-left: 0.1rem;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box input {
    padding-left: 0.2rem;
    font-size: 0.26rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box input::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box input:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box input::placeholder {
  color: rgba(31, 31, 31, 0.4);
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box .search-icon {
  position: absolute;
  right: 0.09rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box .search-icon {
    right: 0.2rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box .search-icon .icon {
  width: 0.17rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .input-box-wrapper .input-box .search-icon .icon {
    width: 0.36rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .sk_select {
  margin-top: 0.2rem;
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .link-list {
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .link-list {
    margin-top: 1.2rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .link-list .link-box {
  height: 0.72rem;
  background: #F8F8F8;
  border-radius: 0.08rem;
  padding: 0 0.26rem 0 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.2rem;
  line-height: 0.27rem;
  color: var(--sk-global-color);
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .link-list .link-box {
    height: 1.2rem;
    border-radius: 0.16rem;
    padding: 0 0.3rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    margin-bottom: 0.2rem;
  }
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .link-list .link-box:last-child {
  margin-bottom: 0;
}
.repair-parts-price-inquiry-page .content-section .flex-box .content-box .notice-box {
  margin-top: 0.6rem;
  border-top: 0.01rem solid #D8D8D8;
  padding-top: 0.25rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .repair-parts-price-inquiry-page .content-section .flex-box .content-box .notice-box {
    margin-top: 0.8rem;
    padding-top: 0.5rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}

.phone-consultations {
  position: fixed;
  z-index: 40;
  bottom: 0.2rem;
  right: 0.2rem;
}
.phone-consultations .side-con {
  position: relative;
  margin-top: 0.1rem;
}
.phone-consultations .side-con .icon-box {
  position: relative;
  z-index: 5;
  height: 0.6rem;
  width: 0.6rem;
  background: #F4F4F5;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .phone-consultations .side-con .icon-box {
    width: 0.94rem;
    height: 0.94rem;
  }
}
.phone-consultations .side-con .icon-box .icon {
  width: 0.29rem;
  height: 0.29rem;
  object-fit: contain;
}
.phone-consultations .side-con .icon-box .icon.phone {
  height: 0.26rem;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .phone-consultations .side-con .icon-box .icon {
    max-width: 0.48rem;
    max-height: 0.48rem;
  }
}
.phone-consultations .side-con .con-box {
  position: absolute;
  right: 100%;
  bottom: 0;
  padding-right: 0.08rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(0.4rem);
      -ms-transform: translateX(0.4rem);
          transform: translateX(0.4rem);
}
.phone-consultations .side-con .con-box .con-text {
  height: 0.6rem;
  padding: 0 0.28rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #F4F4F5;
  border-radius: 0.1rem;
}
.phone-consultations .side-con .con-box.phone-con-box .con-phone {
  padding: 0.14rem 0.19rem 0.14rem 0.15rem;
  background: #F4F4F5;
  border-radius: 0.1rem;
}
.phone-consultations .side-con .con-box.phone-con-box .con-phone .phone-label {
  font-size: 0.14rem;
  line-height: 0.19rem;
  font-family: var(--sk-font-Regular);
}
.phone-consultations .side-con .con-box.phone-con-box .con-phone .phone-num {
  margin-top: 0.02rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.phone-consultations .side-con .con-box.phone-con-box .con-phone .date {
  margin-top: 0.07rem;
  font-size: 0.14rem;
  color: rgba(31, 31, 31, 0.7);
  line-height: 0.19rem;
  font-family: var(--sk-font-Regular);
}
@media screen and (min-width: 800px) {
  .phone-consultations .side-con:hover .con-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

:root {
  --c-black: #1F1F1F;
  --c-black-opcity-40: rgba(31, 31, 31, .4);
  --c-black-opcity-70: rgba(31, 31, 31, .7);
  --c-black-pure: #000000;
  --c-white: #FFFFFF;
  --c-white-opcity-40: rgba(255, 255, 255, .4);
  --c-white-opcity-70: rgba(255, 255, 255, .7);
  --c-light-grey-1: #E4E4E6;
  --c-shallower-grey-2: #F8F8F8;
  --c-text-1: var(--c-black);
  --c-text-2: var(--c-black-opcity-70);
  --c-text-3: var(--c-black-opcity-40);
  --c-text-1-inverse: var(--c-white);
  --c-text-2-inverse: var(--c-white-opcity-70);
  --c-text-3-inverse: var(--c-white-opcity-40);
  --c-bg-1: var(--c-shallower-grey-2);
  --c-bg-2: var(--c-light-grey-1);
  --c-bg-hover-1: var(--c-light-grey-1);
}

/* Firefox */
html {
  scrollbar-width: none; /* 隐藏滚动条（Firefox 64+） */
  /* 隐藏全局滚动条（兼容主流浏览器） */
  /* WebKit 内核浏览器（Chrome、Safari、Edge） */
}
html::-webkit-scrollbar {
  display: none; /* 隐藏滚动条 */
}

/* IE 和 Edge 旧版本 */
body {
  -ms-overflow-style: none; /* 隐藏滚动条 */
}
body::-webkit-scrollbar {
  display: none; /* 隐藏滚动条 */
}

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

@keyframes animateLeftTranslate {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}

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

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

.sk-title01 {
  font-family: var(--sk-font-Medium);
  font-size: 0.56rem;
  line-height: 0.74rem;
  color: var(--c-text-1);
}

.underline-animate:hover {
  --translate: translate(0, calc(-100% - var(--gap)));
}
.underline-animate:hover span::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);
}
.underline-animate span {
  position: relative;
}
.underline-animate span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.05em;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 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);
}

.rect-icon {
  --svg-w: 0.2rem;
  --svg-h: 0.18rem;
  --c-bg-defult: var(--c-bg-1);
  --c-bg-hover: var(--c-bg-2);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.08rem;
  background-color: var(--c-bg-defult);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .rect-icon:hover {
    background-color: var(--c-bg-hover);
  }
}
.rect-icon.c-white {
  --c-bg-defult: var(--c-white);
}
.rect-icon .svg {
  width: var(--svg-w);
  height: var(--svg-h);
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .rect-icon {
    --svg-w: 0.32rem;
    --svg-h: 0.32rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
  }
}

.sk__animate-btn {
  --h: .19rem;
  --gap: .1rem;
  --translate: translate(0, 0);
  font-family: var(--sk-font-Medium);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 0.19rem;
}
.sk__animate-btn:hover {
  --translate: translate(0, calc(-100% - var(--gap)));
}
.sk__animate-btn:hover span::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);
}
.sk__animate-btn span {
  position: relative;
}
.sk__animate-btn span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.05em;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 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);
}
.sk__animate-btn .-icon {
  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: 0.12rem;
  height: 0.12rem;
  overflow: hidden;
  margin-left: 0.07rem;
}
.sk__animate-btn .-icon .svg-ctx {
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: var(--gap);
  -webkit-transform: var(--translate);
      -ms-transform: var(--translate);
          transform: var(--translate);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.-tab {
  width: 100%;
  overflow: hidden;
}
.-tab.nomargin {
  margin: 0;
}
.-tab .-tab-list {
  position: relative;
}
.-tab .-tab-list::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  width: 0.56rem;
  height: 100%;
  right: 0;
  top: 0;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  z-index: 10;
}
.-tab .-tab-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.-tab .-tab-list ul li {
  cursor: pointer;
  width: auto;
  min-width: 1rem;
  margin-right: 0.1rem;
  padding: 0.1rem 0.16rem;
  border-radius: 0.2rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
  color: var(--c-text-1);
  background-color: #EBEBEB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-tab .-tab-list ul li:last-child {
  margin-right: 0;
}
.-tab .-tab-list ul li.on {
  background-color: var(--c-black);
  color: var(--c-text-1-inverse);
}
.-tab .-tab-list ul li:hover .-inner .content {
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.-tab .-tab-list ul li .-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0.19rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.-tab .-tab-list ul li .-inner .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 0.14rem;
  line-height: 0.19rem;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-tab .-tab-list ul li .-inner .content .svg-ctx {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.12rem;
  height: 0.12rem;
  object-fit: contain;
  margin-left: 0.28rem;
}
@media screen and (max-width: 800px) {
  .-tab .-tab-list::after {
    display: none;
  }
  .-tab .-tab-list ul li {
    min-width: 1.6rem;
    margin-right: 0.2rem;
    padding: 0.19rem 0.2rem;
    border-radius: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .-tab .-tab-list ul li .-inner {
    height: 0.34rem;
  }
  .-tab .-tab-list ul li .-inner .content {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .-tab .-tab-list ul li .-inner .content .svg-ctx {
    width: 0.24rem;
    height: 0.24rem;
    margin-left: 0.44rem;
  }
}

.collapse-list ul li {
  border-radius: 0.08rem;
  background-color: var(--c-bg-1);
}
.collapse-list ul li.active .-front .icon {
  background-color: var(--c-bg-hover);
}
.collapse-list ul li.active .-front .icon .svg {
  display: none;
}
.collapse-list ul li.active .-front .icon .svg:nth-child(2) {
  display: block;
}
.collapse-list ul li .-front {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 0.72rem;
  padding: 0.12rem 0.12rem 0.12rem 0.2rem;
}
.collapse-list ul li .-front .title {
  font-size: 0.2rem;
  line-height: 0.27rem;
}
.collapse-list ul li .-front .icon {
  --svg-w: .18rem;
  --svg-h: .18rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.64rem;
}
.collapse-list ul li .-front .icon .svg {
  display: block;
}
.collapse-list ul li .-front .icon .svg:nth-child(2) {
  display: none;
}
.collapse-list ul li .-info {
  display: none;
}
.collapse-list ul li .-info .-info-wrapper {
  padding: 0.12rem 1.7rem 0.59rem 0.2rem;
}
@media screen and (max-width: 800px) {
  .collapse-list ul li {
    border-radius: 0.16rem;
  }
  .collapse-list ul li .-front {
    position: relative;
    -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;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0.39rem 1.1rem 0.39rem 0.3rem;
  }
  .collapse-list ul li .-front .title {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .collapse-list ul li .-front .icon {
    --svg-w: .28rem;
    --svg-h: .28rem;
    position: absolute;
    right: 0.24rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .collapse-list ul li .-info {
    will-change: height;
  }
  .collapse-list ul li .-info .-info-wrapper {
    padding: 0.21rem 0.72rem 0.82rem 0.3rem;
  }
}

.about-page .index__section {
  height: 160vh;
}
.about-page .index__section .index__section-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.about-page .index__section .index__section-container .index__section-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}
.about-page .index__section .index__section-container .index__section-wrapper .index__section-background {
  display: -webkit-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: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-page .index__section .index__section-container .index__section-wrapper .index__section-background .background__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.about-page .index__section .index__section-container .index__section-wrapper .index__section-background .background__box .background__box-text {
  --w: 15.84rem;
  --p: .4rem;
  width: calc(var(--w) + var(--p));
  padding: 0 var(--p);
}
.about-page .index__section .index__section-container .index__section-wrapper .index__section-background .background__box .background__box-text .svg {
  width: 100%;
  height: 100%;
}
.about-page .index__section .index__section-container .index__section-wrapper .surface__video {
  display: -webkit-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: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.about-page .index__section .index__section-container .index__section-wrapper .surface__video .surface__video-inner {
  --radius: .1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4.18rem;
  height: 5.6rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
.about-page .index__section .index__section-container .index__section-wrapper .surface__video .surface__video-inner .title {
  position: relative;
  font-size: 0.56rem;
  line-height: normal;
  color: var(--c-text-1-inverse);
  z-index: 1;
}
.about-page .index__section .index__section-container .index__section-wrapper .surface__video .surface__video-inner video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.about-page .introduction__section {
  overflow: hidden;
}
.about-page .introduction__section .introduction__section-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.about-page .introduction__section .introduction__section-wrapper .content {
  --active-font-color: var(--c-text-1);
  max-width: 9.6rem;
  width: 100%;
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: var(--c-text-3);
}
.about-page .mission__section {
  width: 100%;
  height: 100vh;
  padding: 0.1rem;
  overflow: hidden;
}
.about-page .mission__section .mission__section-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-page .mission__section .mission__section-wrapper .cart-row {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0.1rem;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.33rem 0.4rem 0.44rem;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .-bacground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .-bacground img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .title-box {
  position: relative;
  width: 100%;
  margin-top: 0;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .title-box .title {
  font-family: var(--sk-font-Medium);
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.96rem;
  line-height: 1.08rem;
  color: var(--c-text-1-inverse);
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .title-box .title[aligt=right] {
  text-align: right;
  right: 0;
  left: auto;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text {
  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;
  font-size: 0.48rem;
  line-height: 0.64rem;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text[aligt=right] {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text span {
  color: var(--c-text-3-inverse);
}
.about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text span.on {
  color: var(--c-text-1-inverse);
}
.about-page .memoirs__section .memoirs__section-wrapper {
  position: relative;
  padding: 1rem 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main {
  position: relative;
  width: 100%;
  height: 6rem;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left {
  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: 6.53rem;
  width: 100%;
  height: 100%;
  padding-right: 0.64rem;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .memoirs__section-title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--c-text-1);
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li .-time {
  font-family: var(--sk-font-Medium);
  font-size: 1.6rem;
  line-height: 2.12rem;
  margin-top: -0.32rem;
  margin-bottom: auto;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li .-time .-month {
  margin-top: -0.8rem;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li .-context {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--c-text-3);
  padding-left: 0.1rem;
  max-width: 4.41rem;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li .-context em {
  color: var(--c-text-1);
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right {
  position: absolute;
  right: -0.4rem;
  top: 0;
  max-width: 12.26rem;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem 0 0 0.1rem;
  overflow: hidden;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list {
  width: 100%;
  height: 100%;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list ul li {
  max-width: 10.66rem;
  margin-right: 0.1rem;
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: pink;
  border-radius: 0.1rem;
  overflow: hidden;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline {
  font-family: var(--sk-font-Medium);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 4.2rem;
  width: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--c-text-1);
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range {
  position: relative;
  margin-top: 0.16rem;
  width: 100%;
  height: 0.2rem;
  overflow: hidden;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range::before, .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgb(255, 255, 255), transparent);
  background: linear-gradient(90deg, rgb(255, 255, 255), transparent);
  z-index: 1;
  pointer-events: none;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range::after {
  left: auto;
  right: 0;
  background: -webkit-linear-gradient(right, rgb(255, 255, 255), transparent);
  background: linear-gradient(270deg, rgb(255, 255, 255), transparent);
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range .timeline_range-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range .timeline_range-bg::before, .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range .timeline_range-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-repeating-linear-gradient(left, currentColor 0px, currentColor 0.01rem, transparent 0.01rem, transparent 0.2rem, currentColor 0.2rem, currentColor 0.21rem, transparent 0.21rem, transparent 0.4rem, currentColor 0.4rem, currentColor 0.42rem);
  background: repeating-linear-gradient(90deg, currentColor 0px, currentColor 0.01rem, transparent 0.01rem, transparent 0.2rem, currentColor 0.2rem, currentColor 0.21rem, transparent 0.21rem, transparent 0.4rem, currentColor 0.4rem, currentColor 0.42rem);
}
.about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range .timeline_range-bg::after {
  -webkit-transform: translate(100%);
      -ms-transform: translate(100%);
          transform: translate(100%);
}
.about-page .team__section {
  width: 100%;
  height: 100vh;
  padding: 0 0.1rem;
  margin-top: 1.92rem;
}
.about-page .team__section .team__section-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.about-page .team__section .team__section-container .team__section-wrapper {
  height: 100%;
  padding-top: 1.53rem;
  padding-bottom: 0.7rem;
}
.about-page .team__section .team__section-container .team__section-wrapper .team__section-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  color: var(--c-text-1-inverse);
}
.about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .context {
  max-width: 6.61rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  margin-top: 0.31rem;
}
.about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-list ul {
  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;
}
.about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-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;
}
.about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-list ul li .count {
  font-size: 0.96rem;
  line-height: 0.96rem;
}
.about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-list ul li .text {
  font-size: 0.16rem;
  line-height: 0.21rem;
  margin-top: 0.08rem;
}
.about-page .innovation_lab__section {
  overflow: hidden;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper {
  padding-top: 2.47rem;
  padding-bottom: 1.92rem;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: var(--c-text-1);
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main {
  margin-top: 0.64rem;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  min-height: 6.2rem;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-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;
  width: 7.55rem;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.1rem;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:last-child {
  margin-right: 0;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: calc((0.6622516556) * 100%);
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .name {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--c-text-1);
  padding-right: 0.53rem;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .text {
  font-size: 0.18rem;
  line-height: 0.24rem;
  margin-top: 0.16rem;
  color: var(--c-text-2);
  padding-right: 0.53rem;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.04rem;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev, .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.08rem;
  background-color: var(--c-bg-1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev:hover, .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next:hover {
  background-color: var(--c-bg-hover-1);
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev .svg, .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next .svg {
  width: 0.2rem;
  height: 0.18rem;
  object-fit: contain;
}
.about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
  margin-left: 0.1rem;
}
.about-page .product_matrix__section {
  height: calc(100vh + 2rem);
  overflow: hidden;
}
.about-page .product_matrix__section .product_matrix__section-wrapper {
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .title {
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--c-text-1);
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .name-box {
  position: relative;
  height: 2.39rem;
  overflow: hidden;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .name-box .name {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 1.8rem;
  line-height: 2.39rem;
  color: var(--c-text-1);
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .name-box .name em {
  color: var(--c-text-3);
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main {
  width: 100%;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list {
  position: relative;
  width: 100%;
  margin-top: 0.32rem;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul {
  width: 100%;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li {
  position: relative;
  width: 100%;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li:first-child .context {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li:nth-child(2n-1) .context {
  left: 0;
  right: auto;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li .img {
  max-width: 9.6rem;
  height: 6.4rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li .context {
  position: absolute;
  top: 1.1rem;
  right: 0;
  max-width: 1.92rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--c-text-1);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list .context-list {
  position: absolute;
  top: 0;
  left: 0;
}
.about-page .Be_yourself__section {
  width: 100%;
  height: 100vh;
  padding: 0 0.1rem;
  margin-top: 1.92rem;
}
.about-page .Be_yourself__section .Be_yourself__section-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper {
  height: 100%;
}
.about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main {
  display: -webkit-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%;
  padding: 0 1rem;
}
.about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main .title {
  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%;
  font-size: 0.96rem;
  line-height: 1.2rem;
  color: var(--c-text-1-inverse);
}
.about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main .title .to_right {
  text-align: left;
  margin-right: auto;
}
.about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main .title .to_left {
  text-align: right;
  margin-left: auto;
}
@media screen and (max-width: 800px) {
  .about-page .index__section .index__section-container .index__section-wrapper .index__section-background .background__box .background__box-text {
    --w: 6.84rem;
    --p: 0.2rem;
  }
  .about-page .index__section .index__section-container .index__section-wrapper .surface__video .surface__video-inner {
    width: 55.73%;
    height: 50%;
    border-radius: 0.16rem;
  }
  .about-page .index__section .index__section-container .index__section-wrapper .surface__video .surface__video-inner .title {
    font-size: 0.72rem;
  }
  .about-page .introduction__section .introduction__section-wrapper {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
  .about-page .introduction__section .introduction__section-wrapper .content {
    max-width: 100%;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .about-page .mission__section {
    width: 100%;
    height: auto;
    padding: 0.1rem;
    overflow: hidden;
  }
  .about-page .mission__section .mission__section-wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row {
    position: static;
    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;
    gap: 0;
    margin-bottom: 0.1rem;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row:last-child {
    margin-bottom: 0;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    border-radius: 0.16rem;
    height: 7.1rem;
    padding: 0.2rem 0.2rem;
    margin-bottom: 0.1rem;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box:last-child {
    margin-bottom: 0;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box .title-box .title {
    font-size: 0.84rem;
    line-height: 1.11rem;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box .title-box .title[aligt=right] {
    text-align: left;
    right: auto;
    left: 0;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text {
    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;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text[aligt=right] {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text span {
    color: var(--c-text-3-inverse);
  }
  .about-page .mission__section .mission__section-wrapper .cart-row .cart-box .text span.on {
    color: var(--c-text-1-inverse);
  }
  .about-page .memoirs__section .memoirs__section-wrapper {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.8rem 0.4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main {
    position: relative;
    width: 100%;
    height: auto;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding-right: 0;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .memoirs__section-title {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list {
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    min-height: 5.6rem;
    contain: layout paint size;
    will-change: height;
    -webkit-transition: height 0.8s;
    transition: height 0.8s;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li .-time {
    font-family: var(--sk-font-Medium);
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 0;
    margin-bottom: auto;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li .-time .-month {
    margin-top: 0;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-left .content-list ul li .-context {
    margin-top: 0.22rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
    padding-left: 0;
    max-width: 100%;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right {
    position: static;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 0;
    overflow: visible;
    margin-top: 0.8rem;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list {
    width: 6rem;
    height: auto;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    will-change: transform;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list ul li {
    max-width: 100%;
    margin-right: 0.2rem;
    width: 100%;
    height: 3.36rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    background-color: pink;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-main .-right .-list ul li:last-child {
    margin-right: 0;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline {
    font-family: var(--sk-font-Medium);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: static;
    max-width: 210px;
    width: 100%;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    font-size: 0.36rem;
    line-height: 0.48rem;
    margin: 1.09rem auto 0;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range {
    position: relative;
    margin-top: 0.2rem;
    width: 100%;
    height: 0.32rem;
    overflow: hidden;
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range .timeline_range-bg {
    will-change: transform;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range .timeline_range-bg::before, .about-page .memoirs__section .memoirs__section-wrapper .memoirs__section-timeline .memoirs__section-timeline_range .timeline_range-bg::after {
    background: -webkit-repeating-linear-gradient(left, currentColor 0px, currentColor 1px, transparent 1px, transparent 20px, currentColor 20px, currentColor 21px, transparent 21px, transparent 40px, currentColor 40px, currentColor 42px);
    background: repeating-linear-gradient(90deg, currentColor 0px, currentColor 1px, transparent 1px, transparent 20px, currentColor 20px, currentColor 21px, transparent 21px, transparent 40px, currentColor 40px, currentColor 42px);
  }
  .about-page .team__section {
    padding: 0 0.1rem;
    margin-top: 0;
    height: auto;
  }
  .about-page .team__section .team__section-container {
    height: auto;
  }
  .about-page .team__section .team__section-container .team__section-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 2.4rem;
    padding-bottom: 1.01rem;
    min-height: 100vh;
    height: 100%;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content {
    height: auto;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top {
    margin-bottom: 0.64rem;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .title {
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .context {
    max-width: 100%;
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.24rem;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-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;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-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: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0.4rem;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-list ul li:first-child {
    margin-top: 0;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-list ul li .count {
    font-size: 0.96rem;
    line-height: 0.96rem;
  }
  .about-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_bottom .statistics-list ul li .text {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.08rem;
  }
  .about-page .innovation_lab__section {
    overflow: hidden;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper {
    padding-top: 3rem;
    padding-bottom: 0;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
    font-size: 0.64rem;
    line-height: 0.85rem;
    color: var(--c-text-1);
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main {
    margin-top: 0.85rem;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list {
    max-width: 6rem;
    width: 100%;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    min-height: auto;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-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;
    width: 100%;
    height: auto;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-right: 0.2rem;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:last-child {
    margin-right: 0;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
    border-radius: 0.16rem;
    position: relative;
    width: 100%;
    padding-top: calc((0.6583333333) * 100%);
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .name {
    margin-top: 0.4rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
    padding-right: 0.4rem;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .text {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.24rem;
    padding-right: 0.4rem;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow {
    margin-top: 1.34rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev, .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev .svg, .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next .svg {
    width: 0.28rem;
    height: 0.88rem;
  }
  .about-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
    margin-left: 0.2rem;
  }
  .about-page .product_matrix__section {
    height: 100vh;
    overflow: hidden;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper {
    padding: 2rem 0.2rem 1.28rem;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .title {
    text-align: center;
    font-size: 0.36rem;
    line-height: 0.48rem;
    color: var(--c-text-1);
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .name-box {
    position: relative;
    height: 1.86rem;
    overflow: hidden;
    margin-top: 0.24rem;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .name-box .name {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    font-size: 1.4rem;
    line-height: 1.86rem;
    color: var(--c-text-1);
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-head .name-box .name em {
    color: var(--c-text-3);
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main {
    width: 100%;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list {
    position: relative;
    width: 100%;
    margin-top: 0.4rem;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul {
    width: 100%;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li {
    position: relative;
    width: 100%;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li .img {
    max-width: 4.8rem;
    height: 3.2rem;
    width: 100%;
    margin: 0 auto;
    border-radius: 0.16rem;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li .context {
    --rows: 8;
    --lh: 0.34rem;
    --h: calc(var(--lh) * var(--rows));
    position: static;
    text-align: center;
    max-width: 4.8rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin: 0 auto;
    padding: 0.4rem 0;
    color: var(--c-text-1);
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list ul li .context span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--rows);
    -webkit-box-orient: vertical;
    height: var(--h);
  }
  .about-page .product_matrix__section .product_matrix__section-wrapper .product_matrix__section-main .product_matrix__section-list .context-list {
    display: none;
  }
  .about-page .Be_yourself__section {
    width: 100%;
    height: 100vh;
    padding: 0 0.1rem;
    margin-top: 0.8rem;
  }
  .about-page .Be_yourself__section .Be_yourself__section-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0.16rem;
  }
  .about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper {
    height: 100%;
  }
  .about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main {
    display: -webkit-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%;
    padding: 0;
  }
  .about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main .title {
    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%;
    font-size: 1.2rem;
    line-height: 1.59rem;
  }
  .about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main .title .to_right {
    text-align: left;
    margin-right: auto;
  }
  .about-page .Be_yourself__section .Be_yourself__section-container .Be_yourself__section-wrapper .Be_yourself__section-main .title .to_left {
    text-align: right;
    margin-left: auto;
  }
}

.news-page .index__banner {
  color: var(--c-text-1);
}
.news-page .index__banner .wal1840 {
  padding-top: 2.2rem;
  padding-bottom: 0.64rem;
}
.news-page .index__banner .wal1840 .index__banner-body {
  margin-top: 0.74rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list {
  border-radius: 0.1rem;
  overflow: hidden;
}
.news-page .index__banner .wal1840 .index__banner-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;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li {
  width: 100%;
  height: auto;
  margin-right: 0.1rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li:last-child {
  margin-right: 0;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left {
  position: relative;
  width: 11.2rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img {
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img {
  border-radius: 0.1rem;
  overflow: hidden;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img .tag {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  padding: 0.08rem 0.16rem;
  background-color: rgba(51, 51, 51, 0.3);
  border-radius: 0.06rem;
  backdrop-filter: blur(0.3rem);
  color: var(--c-text-1-inverse);
  font-size: 0.12rem;
  line-height: 0.16rem;
  z-index: 1;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 0.59rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .time {
  font-size: 0.18rem;
  line-height: 0.24rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
  margin-top: 0.23rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .context {
  margin-top: 0.38rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .btn {
  margin-top: 0.71rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer {
  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.6rem;
}
.news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.08rem 0.1rem;
  border-radius: 0.12rem;
  background-color: var(--c-bg-2);
}
.news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer .dots span {
  cursor: pointer;
  width: 0.08rem;
  height: 0.08rem;
  margin-left: 0.08rem;
  border-radius: 0.04rem;
  background-color: rgba(31, 31, 31, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer .dots span.swiper-pagination-bullet-active {
  width: 0.33rem;
  background-color: var(--c-black);
}
.news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer .dots span:first-child {
  margin-left: 0;
}
.news-page .news__list .news__list-wrapper {
  padding-top: 1.24rem;
  padding-bottom: 2.39rem;
}
.news-page .news__list .news__list-wrapper .news__list-body {
  margin-top: 0.43rem;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list {
  width: 100%;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a:hover .img img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img {
  position: relative;
  width: 100%;
  padding-top: calc((0.5610561056) * 100%);
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img {
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img .tag {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  padding: 0.08rem 0.16rem;
  background-color: rgba(51, 51, 51, 0.3);
  border-radius: 0.06rem;
  backdrop-filter: blur(0.3rem);
  color: var(--c-text-1-inverse);
  font-size: 0.12rem;
  line-height: 0.16rem;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content {
  margin-top: 0.25rem;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--c-text-1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content .date {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: rgba(31, 31, 31, 0.5);
}
.news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content .btn-box {
  margin-top: 0.2rem;
}
.news-page .news__list .news__list-wrapper .news__list-body .hry__pager-box {
  margin-top: 1.25rem;
}
@media screen and (max-width: 800px) {
  .news-page .index__banner .wal1840 {
    padding-top: 2.88rem;
    padding-bottom: 0.8rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body {
    margin-top: 0.6rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list {
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .news-page .index__banner .wal1840 .index__banner-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;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li {
    margin-right: 0.1rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-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;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left {
    width: 100%;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img {
    position: relative;
    width: 100%;
    padding-top: calc((0.5611940299) * 100%);
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img {
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-left .img .tag {
    padding: 0.09rem 0.17rem;
    border-radius: 0.1rem;
    font-size: 0.2rem;
    line-height: 0.3rem;
    z-index: 1;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right {
    margin: 0.6rem 0 0;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .time {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
    margin-top: 0.16rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .context {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .btn {
    margin-top: 0.8rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list ul li a .-right .btn .hry__btn {
    width: 100%;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer {
    margin-top: 1rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer .dots {
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer .dots span {
    width: 0.12rem;
    height: 0.12rem;
    margin-left: 0.1rem;
    border-radius: 0.06rem;
  }
  .news-page .index__banner .wal1840 .index__banner-body .-list .dots-contianer .dots span.swiper-pagination-bullet-active {
    width: 0.52rem;
  }
  .news-page .news__list .news__list-wrapper {
    padding-top: 1.6rem;
    padding-bottom: 2.6rem;
  }
  .news-page .news__list .news__list-wrapper .news__list-body {
    margin-top: 0.6rem;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list {
    width: 100%;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img {
    position: relative;
    width: 100%;
    padding-top: calc((0.5597014925) * 100%);
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img {
    border-radius: 0.16rem;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .img .tag {
    padding: 0.09rem 0.17rem;
    border-radius: 0.1rem;
    font-size: 0.2rem;
    line-height: 0.3rem;
    z-index: 1;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content {
    margin-top: 0.4rem;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content .title {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content .date {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .sk-list .sk-item a .content .btn-box {
    display: none;
  }
  .news-page .news__list .news__list-wrapper .news__list-body .hry__pager-box {
    margin-top: 1.2rem;
  }
}

.news-detail-page .index__section .index__section-wrapper {
  padding-top: 1.2rem;
}
.news-detail-page .index__section .index__section-wrapper .index__section-body {
  position: relative;
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .go-back {
  font-family: var(--sk-font-Medium);
  position: absolute;
  left: 0;
  top: 0;
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .go-back:hover a {
  --translate: translate(calc(-100% - var(--gap)), 0);
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .go-back:hover a .icon {
  background-color: var(--c-bg-hover-1);
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.16rem;
  line-height: 0.21rem;
  --gap: .08rem;
  --translate: translate(0, 0);
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.08rem;
  background-color: var(--c-bg-1);
  margin-right: 0.1rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a .icon .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.2rem;
  height: 0.2rem;
  overflow: hidden;
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a .icon .inner img {
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  object-fit: contain;
  margin-right: var(--gap);
  -webkit-transform: var(--translate);
      -ms-transform: var(--translate);
          transform: var(--translate);
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .content {
  margin: 0 auto;
  max-width: 9.03rem;
  padding: 1.78rem 0;
}
.news-detail-page .index__section .index__section-wrapper .index__section-body .content .sk-title01 {
  text-align: center;
}
.news-detail-page .main__section .-head {
  padding: 0 0.1rem;
}
.news-detail-page .main__section .-head .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--c-text-1);
  padding: 0 0.3rem;
  margin-bottom: 0.13rem;
}
.news-detail-page .main__section .-head .box .tag,
.news-detail-page .main__section .-head .box .date {
  font-size: 0.18rem;
  line-height: 0.24rem;
}
.news-detail-page .main__section .-head .cover-img {
  position: relative;
  width: 100%;
  padding-top: calc((0.4842105263) * 100%);
}
.news-detail-page .main__section .-head .cover-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-detail-page .main__section .-head .cover-img {
  border-radius: 0.1rem;
  overflow: hidden;
}
.news-detail-page .main__section .-content p, .news-detail-page .main__section .-content span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.news-detail-page .main__section .-content a {
  text-decoration: underline;
}
.news-detail-page .main__section .-content h2,
.news-detail-page .main__section .-content h3,
.news-detail-page .main__section .-content h4,
.news-detail-page .main__section .-content h5 {
  font-family: var(--sk-font-Medium);
  font-weight: 600;
}
.news-detail-page .main__section .-content h2 {
  font-size: 0.54rem;
  line-height: 0.64rem;
}
.news-detail-page .main__section .-content h3 {
  font-size: 0.36rem;
  line-height: 0.48rem;
}
.news-detail-page .main__section .-content h4 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.news-detail-page .main__section .-content h5 {
  font-size: 0.28rem;
  line-height: 0.38rem;
}
.news-detail-page .main__section .-content ul li, .news-detail-page .main__section .-content ol li {
  list-style: inherit;
  list-style-position: inside;
}
.news-detail-page .main__section .-content p:has(video),
.news-detail-page .main__section .-content p:has(img) {
  text-align: center;
}
.news-detail-page .main__section .-content video,
.news-detail-page .main__section .-content img {
  max-width: 100%;
}
.news-detail-page .main__section .-content {
  color: var(--c-text-1);
  font-size: 0.18rem;
  line-height: 0.24rem;
  max-width: 9.6rem;
  margin: 0 auto;
  padding-top: 1.17rem;
  padding-bottom: 1.17rem;
}
.news-detail-page .other__news .other__news-wrapper {
  padding-top: 1.42rem;
  padding-bottom: 2.57rem;
}
.news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a:hover .img img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .img {
  position: relative;
  width: 100%;
  padding-top: calc((0.562) * 100%);
}
.news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .img {
  border-radius: 0.1rem;
  overflow: hidden;
}
.news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: var(--c-text-1);
  margin-top: 0.18rem;
  padding-right: 0.2rem;
}
.news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .date {
  font-size: 0.16rem;
  line-height: 0.21rem;
  margin-top: 0.1rem;
  color: rgba(31, 31, 31, 0.5);
}
.news-detail-page .share ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news-detail-page .share ul li {
  margin-right: 0.24rem;
}
.news-detail-page .share ul li:last-child {
  margin-right: 0;
}
.news-detail-page .share ul li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news-detail-page .share ul li a:hover .svg-ctx {
  opacity: 0.5;
}
.news-detail-page .share ul li a:hover .qr-card {
  opacity: 1;
  visibility: visible;
}
.news-detail-page .share ul li a .svg-ctx {
  width: 0.25rem;
  height: 0.25rem;
  object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-detail-page .share ul li a .-layer {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.06rem 0.1rem;
  border-radius: 0.04rem;
  background-color: var(--c-bg-2);
  color: var(--c-text-2);
  font-size: 0.12rem;
  line-height: 0.16rem;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.news-detail-page .share ul li a .qr-card {
  position: absolute;
  padding-bottom: 0.16rem;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.news-detail-page .share ul li a .qr-card .qr-img-box {
  padding: 0.16rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.25);
  border-radius: 0.08rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .share ul li a .qr-card .qr-img-box {
    padding: 0.2rem;
    border-radius: 0.16rem;
  }
}
.news-detail-page .share ul li a .qr-card .qr-img {
  height: 1rem;
  width: 1rem;
  max-width: none;
}
@media screen and (max-width: 800px) {
  .news-detail-page .share ul li a .qr-card .qr-img {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (max-width: 800px) {
  .news-detail-page .index__section .index__section-wrapper {
    padding-top: 2.48rem;
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-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;
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .go-back {
    font-family: var(--sk-font-Medium);
    position: static;
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .go-back:hover a {
    --translate: translate(calc(-100% - var(--gap)), 0);
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .go-back:hover a .icon {
    background-color: var(--c-bg-hover-1);
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a {
    font-family: var(--sk-font-Medium);
    font-size: 0.26rem;
    line-height: 0.34rem;
    --gap: .08rem;
    --translate: translate(0, 0);
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a .icon {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
    margin-right: 0.2rem;
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a .icon .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 0.28rem;
    height: 0.28rem;
    overflow: hidden;
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .go-back a .icon .inner img {
    width: 100%;
    height: 100%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    object-fit: contain;
    margin-right: var(--gap);
    -webkit-transform: var(--translate);
        -ms-transform: var(--translate);
            transform: var(--translate);
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .content {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    margin-top: 1.08rem;
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .content .sk-title01 {
    text-align: center;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
  .news-detail-page .index__section .index__section-wrapper .index__section-body .content .share {
    margin-top: 0.57rem;
  }
  .news-detail-page .main__section {
    padding-top: 1.77rem;
  }
  .news-detail-page .main__section .-head {
    padding: 0 0.1rem;
  }
  .news-detail-page .main__section .-head .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: var(--c-text-1);
    padding: 0 0.2rem;
    margin-bottom: 0.2rem;
  }
  .news-detail-page .main__section .-head .box .tag,
  .news-detail-page .main__section .-head .box .date {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .news-detail-page .main__section .-head .cover-img {
    position: relative;
    width: 100%;
    padding-top: calc((0.4835616438) * 100%);
  }
  .news-detail-page .main__section .-head .cover-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .news-detail-page .main__section .-head .cover-img {
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .news-detail-page .main__section .-content p, .news-detail-page .main__section .-content span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }
  .news-detail-page .main__section .-content a {
    text-decoration: underline;
  }
  .news-detail-page .main__section .-content h2,
  .news-detail-page .main__section .-content h3,
  .news-detail-page .main__section .-content h4,
  .news-detail-page .main__section .-content h5 {
    font-family: var(--sk-font-Medium);
    font-weight: 600;
  }
  .news-detail-page .main__section .-content h2 {
    font-size: 0.54rem;
    line-height: 0.64rem;
  }
  .news-detail-page .main__section .-content h3 {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .news-detail-page .main__section .-content h4 {
    font-size: 0.32rem;
    line-height: 0.4rem;
  }
  .news-detail-page .main__section .-content h5 {
    font-size: 0.28rem;
    line-height: 0.38rem;
  }
  .news-detail-page .main__section .-content ul li, .news-detail-page .main__section .-content ol li {
    list-style: inherit;
    list-style-position: inside;
  }
  .news-detail-page .main__section .-content p:has(video),
  .news-detail-page .main__section .-content p:has(img) {
    text-align: center;
  }
  .news-detail-page .main__section .-content video,
  .news-detail-page .main__section .-content img {
    max-width: 100%;
  }
  .news-detail-page .main__section .-content {
    color: var(--c-text-1);
    font-size: 0.26rem;
    line-height: 0.34rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.2rem 0.4rem;
  }
  .news-detail-page .other__news .other__news-wrapper {
    padding-top: 1.2rem;
    padding-bottom: 2.6rem;
  }
  .news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .img {
    position: relative;
    width: 100%;
    padding-top: calc((0.5611940299) * 100%);
  }
  .news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .img {
    border-radius: 0.16rem;
  }
  .news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .name {
    font-size: 0.36rem;
    line-height: 0.48rem;
    margin-top: 0.39rem;
    padding-right: 0;
  }
  .news-detail-page .other__news .other__news-wrapper .other__news-list .sk-item a .date {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.16rem;
  }
  .news-detail-page .share 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;
  }
  .news-detail-page .share ul li {
    margin-right: 0.4rem;
  }
  .news-detail-page .share ul li:last-child {
    margin-right: 0;
  }
  .news-detail-page .share ul li a .svg-ctx {
    width: 0.42rem;
    height: 0.42rem;
  }
  .news-detail-page .share ul li a .-layer {
    top: auto;
    bottom: -0.17rem;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.1rem 0.19rem;
    border-radius: 0.08rem;
    font-size: 0.2rem;
    line-height: 0.27rem;
  }
}

.contact-page .index__section .index__section-wrapper {
  padding-top: 2.2rem;
}
.contact-page .index__section .index__section-wrapper .index__section-body {
  margin-top: 0.74rem;
  color: var(--c-text-1);
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li {
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.34rem 0.4rem 0.42rem 0.3rem;
  background-color: var(--c-bg-1);
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .title {
  font-family: var(--sk-font-Medium);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .context {
  font-size: 0.16rem;
  line-height: 0.21rem;
  margin-top: 0.2rem;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .btn-box {
  margin-top: 0.36rem;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list {
  margin-top: 0.4rem;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item:first-child {
  margin-top: 0;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background-color: var(--c-bg-2);
  margin-right: 0.17rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item .icon img {
  width: 0.4rem;
  height: 0.4rem;
  object-fit: contain;
}
.contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item span {
  margin-top: 0.08rem;
}
.contact-page .join__section {
  width: 100%;
  height: 100vh;
  padding: 0 0.1rem;
  margin-top: 2.46rem;
}
.contact-page .join__section .join__section-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.contact-page .join__section .join__section-container .join__section-wrapper {
  height: 100%;
  padding-top: 2.28rem;
  padding-bottom: 0.7rem;
}
.contact-page .join__section .join__section-container .join__section-wrapper .join__section-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: var(--c-text-1-inverse);
}
.contact-page .join__section .join__section-container .join__section-wrapper .join__section-content .join__section-content_top .title {
  text-align: center;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.contact-page .join__section .join__section-container .join__section-wrapper .join__section-content .join__section-content_top .context {
  text-align: center;
  max-width: 7.02rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  margin-top: 0.24rem;
}
.contact-page .join__section .join__section-container .join__section-wrapper .join__section-content .join__section-content_top .btn-box {
  text-align: center;
  margin-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .contact-page .index__section .index__section-wrapper {
    padding-top: 2.88rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body {
    margin-top: 0.6rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li {
    border-radius: 0.16rem;
    padding: 0.36rem 0.3rem 0.63rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .title {
    font-family: var(--sk-font-Medium);
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .context {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.24rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .btn-box {
    margin-top: 0.4rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .btn-box .hry__btn {
    width: 100%;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .btn-box .hry__btn[data-color=dark] {
    color: var(--c-text-1);
    border: 0.04rem solid var(--sk-global-color);
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .btn-box .hry__btn[data-color=dark] .hry__btn__svg, .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .btn-box .hry__btn[data-color=dark]::before {
    display: none;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list {
    margin-top: 0.49rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.2rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item:first-child {
    margin-top: 0;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background-color: var(--c-bg-2);
    margin-right: 0.2rem;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item .icon img {
    width: 0.54rem;
    height: 0.54rem;
    object-fit: contain;
  }
  .contact-page .index__section .index__section-wrapper .index__section-body .-list ul li .contact-list .contact-item span {
    margin-top: 0.06rem;
    line-height: inherit;
  }
  .contact-page .join__section {
    margin-top: 2.4rem;
  }
  .contact-page .join__section .join__section-container {
    border-radius: 0.16rem;
  }
  .contact-page .join__section .join__section-container .join__section-wrapper {
    padding-top: 0.6rem;
    padding-bottom: 2.79rem;
  }
  .contact-page .join__section .join__section-container .join__section-wrapper .join__section-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
  .contact-page .join__section .join__section-container .join__section-wrapper .join__section-content .join__section-content_top .title {
    text-align: center;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
  .contact-page .join__section .join__section-container .join__section-wrapper .join__section-content .join__section-content_top .context {
    text-align: center;
    max-width: 100%;
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.36rem;
  }
  .contact-page .join__section .join__section-container .join__section-wrapper .join__section-content .join__section-content_top .btn-box {
    margin-top: 0.64rem;
  }
}

.filter-page .index__section .index__section-wrapper {
  padding-top: 2.2rem;
  padding-bottom: 2.5rem;
}
.filter-page .index__section .index__section-wrapper .index__section-body {
  margin-top: 0.74rem;
  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;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left {
  position: -webkit-sticky;
  position: sticky;
  max-width: 3.2rem;
  width: 100%;
  top: 0;
  padding-top: 1.28rem;
  margin-top: -1.28rem;
  height: 100%;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li {
  margin-top: 0.06rem;
  border-radius: 0.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li:first-child {
  margin-top: 0;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li:hover {
  background-color: var(--c-bg-1);
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li.active {
  background-color: var(--c-bg-2);
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li.active a {
  color: var(--c-text-1);
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li.active a .svg-ctx {
  opacity: 1;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li 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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.12rem 0.16rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: rgba(31, 31, 31, 0.6);
}
.filter-page .index__section .index__section-wrapper .index__section-body .-left .-inner ul li a .svg-ctx {
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.16rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right {
  max-width: 10.9rem;
  width: 100%;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-head .-tab {
  width: 80%;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-head .-total {
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--c-text-3);
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-head .-total em {
  color: var(--c-text-1);
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download {
  margin-top: 0.4rem;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li {
  border-radius: 0.1rem;
  height: 2.4rem;
  background-color: var(--c-bg-1);
  overflow: hidden;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  padding: 0.16rem 0.3rem;
}
@media screen and (min-width: 800px) {
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a:hover .img {
    -webkit-transform: translate(-30%, 0);
        -ms-transform: translate(-30%, 0);
            transform: translate(-30%, 0);
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a:hover .download-btn {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .name {
  font-family: var(--sk-font-Medium);
  position: relative;
  font-size: 0.32rem;
  line-height: 0.42rem;
  z-index: 1;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .img {
  position: absolute;
  right: 0.3rem;
  bottom: 0.16rem;
  max-width: 2.9rem;
  width: 100%;
  height: 1.9rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .download-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0.1rem;
  bottom: 0.1rem;
  border-radius: 0.08rem;
  width: 0.48rem;
  height: 0.48rem;
  background-color: var(--c-bg-2);
  -webkit-transform: translate(0, 150%);
      -ms-transform: translate(0, 150%);
          transform: translate(0, 150%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .download-btn .svg-ctx {
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content p, .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content a {
  text-decoration: underline;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h2,
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h3,
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h4,
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h5 {
  font-family: var(--sk-font-Medium);
  font-weight: 600;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h2 {
  font-size: 0.54rem;
  line-height: 0.64rem;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h3 {
  font-size: 0.36rem;
  line-height: 0.48rem;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h4 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content h5 {
  font-size: 0.28rem;
  line-height: 0.38rem;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content ul li, .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content ol li {
  list-style: inherit;
  list-style-position: inside;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content p:has(video),
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content p:has(img) {
  text-align: center;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content video,
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content img {
  max-width: 100%;
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content {
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: var(--c-text-2);
}
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content p:has(video),
.filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content p:has(img) {
  text-align: left;
}
@media screen and (max-width: 800px) {
  .filter-page .index__section .index__section-wrapper {
    padding-top: 2.88rem;
    padding-bottom: 2.4rem;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body {
    margin-top: 0.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-left {
    position: static;
    max-width: 100%;
    top: 0;
    padding-top: 0;
    margin-top: 0;
    height: auto;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-left > .-inner ul {
    display: none;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right {
    max-width: 100%;
    width: 100%;
    margin-top: 1.2rem;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-head .-tab {
    width: 100%;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-head .-total {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.78rem;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download {
    margin-top: 0.22rem;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li {
    border-radius: 0.16rem;
    height: 3.6rem;
    background-color: var(--c-bg-1);
    overflow: hidden;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
    padding: 0.3rem;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .name {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .img {
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 0.47rem;
    max-width: 3.84rem;
    width: 100%;
    height: 2.66rem;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .download-btn {
    border-radius: 0.1rem;
    width: 0.72rem;
    height: 0.72rem;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-download li a .download-btn .svg-ctx {
    width: 0.3rem;
    height: 0.3rem;
    object-fit: contain;
  }
  .filter-page .index__section .index__section-wrapper .index__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}

.join-page .index__banner .index__banner-contianer {
  position: relative;
  padding-top: 66.67%;
  overflow: hidden;
}
.join-page .index__banner .index__banner-contianer .index__banner-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.join-page .index__banner .index__banner-contianer .index__banner-body .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 1.39rem;
  padding-bottom: 1.39rem;
}
.join-page .index__banner .index__banner-contianer .index__banner-body .wal .content {
  margin-top: auto;
  width: 100%;
}
.join-page .index__banner .index__banner-contianer .index__banner-body .wal .content .title {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: var(--c-text-1-inverse);
}
.join-page .index__banner .index__banner-contianer .index__banner-body .wal .content .btn-box {
  margin-top: 0.48rem;
}
.join-page .employee__style .employee__style-wrapper {
  padding-top: 2.4rem;
  padding-bottom: 0.73rem;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li {
  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: 1.2rem;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li:first-child {
  margin-top: 0;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left {
  max-width: 7.6rem;
  width: 100%;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left .img {
  position: relative;
  width: 100%;
  padding-top: calc((0.6315789474) * 100%);
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left .img {
  border-radius: 0.1rem;
  overflow: hidden;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-right {
  max-width: 7rem;
  width: 100%;
  padding-top: 0.8rem;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-right .title {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-right .context {
  font-size: 0.18rem;
  line-height: 0.24rem;
  margin-top: 0.24rem;
}
.join-page .job__openings .job__openings-wrapper {
  padding-top: 2.4rem;
  padding-bottom: 2.5rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.join-page .job__openings .job__openings-wrapper .job__openings-head .-left .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-head .-left .select-group {
  margin-top: 0.43rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.join-page .job__openings .job__openings-wrapper .job__openings-head .-left .select-group > * {
  margin-right: 0.1rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-head .-left .select-group > *:last-child {
  margin-right: 0;
}
.join-page .job__openings .job__openings-wrapper .job__openings-head .-right {
  margin-left: 0.32rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-head .-right .-total {
  font-family: var(--sk-font-Medium);
  font-size: 0.96rem;
  line-height: 1.08rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body {
  margin-top: 0.65rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li {
  border-top: 0.01rem solid #D8D8D8;
  background-color: transparent;
  border-radius: 0;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li:last-child {
  border-bottom: 0.01rem solid #D8D8D8;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front {
  position: relative;
  padding: 0.36rem 0;
  min-height: 1.2rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .title {
  max-width: 5rem;
  font-size: 0.32rem;
  line-height: 0.56rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type .-dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type .-dl .-dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 0.18rem;
  line-height: 0.24rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type .-dl .-dd:last-child::after {
  display: none;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type .-dl .-dd::after {
  content: "";
  position: relative;
  width: 0.01rem;
  height: 0.16rem;
  top: 50%;
  margin: 0 0.16rem;
  background-color: var(--c-black);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.49rem 0 1.12rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.66rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row:first-child {
  margin-top: 0;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-label {
  font-size: 0.2rem;
  line-height: 0.27rem;
  width: 2.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content p, .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content a {
  text-decoration: underline;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h2,
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h3,
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h4,
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h5 {
  font-family: var(--sk-font-Medium);
  font-weight: 600;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h2 {
  font-size: 0.54rem;
  line-height: 0.64rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h3 {
  font-size: 0.36rem;
  line-height: 0.48rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h4 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content h5 {
  font-size: 0.28rem;
  line-height: 0.38rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content ul li, .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content ol li {
  list-style: inherit;
  list-style-position: inside;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content p:has(video),
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content p:has(img) {
  text-align: center;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content video,
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content img {
  max-width: 100%;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content {
  max-width: 7.94rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right .-box {
  max-width: 3.36rem;
  width: 100%;
  border-radius: 0.1rem;
  background-color: var(--c-bg-1);
  padding: 0.42rem 0.4rem 0.44rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right .-box .-title {
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right .-box .-mail {
  font-family: var(--sk-font-Medium);
  font-size: 0.24rem;
  line-height: 0.32rem;
  margin-top: 0.21rem;
}
@media screen and (max-width: 800px) {
  .join-page .index__banner .index__banner-contianer {
    height: 100vh;
    padding-top: 0;
  }
  .join-page .index__banner .index__banner-contianer .index__banner-body .wal {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .join-page .index__banner .index__banner-contianer .index__banner-body .wal .content .title {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .join-page .index__banner .index__banner-contianer .index__banner-body .wal .content .btn-box {
    margin-top: 0.6rem;
  }
  .join-page .index__banner .index__banner-contianer .index__banner-body .wal .content .btn-box .hry__btn {
    width: 100%;
  }
  .join-page .employee__style .employee__style-wrapper {
    padding-top: 2.26rem;
    padding-bottom: 0.73rem;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li {
    -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: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left {
    max-width: 100%;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left .img {
    position: relative;
    width: 100%;
    padding-top: calc((0.6313432836) * 100%);
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-left .img {
    border-radius: 0.16rem;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-right {
    max-width: 100%;
    width: 100%;
    padding-top: 0.6rem;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-right .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li .-right .context {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.24rem;
  }
  .join-page .job__openings .job__openings-wrapper {
    padding-top: 1.53rem;
    padding-bottom: 2.4rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-left {
    width: 100%;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-left .title {
    font-size: 0.64rem;
    line-height: 0.85rem;
    padding-right: 1.5rem;
    margin-top: 0.12rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-left .select-group {
    margin-top: 0.65rem;
    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;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-left .select-group > * {
    margin: 0 0 0.2rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-left .select-group > *:last-child {
    margin: 0;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-left .select-group .sk_select {
    width: 100%;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-right {
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 0;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-head .-right .-total {
    font-family: var(--sk-font-Medium);
    font-size: 0.96rem;
    line-height: 1.08rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body {
    margin-top: 0.6rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li {
    border-top: 0.02rem solid #D8D8D8;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li:last-child {
    border-bottom: 0.02rem solid #D8D8D8;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front {
    position: relative;
    padding: 0.5rem 0.8rem 0.48rem 0;
    min-height: auto;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .title {
    max-width: 100%;
    font-size: 0.4rem;
    line-height: 0.56rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type {
    position: static;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-top: 0.12rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type .-dl .-dd {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .type .-dl .-dd::after {
    width: 0.02rem;
    height: 0.24rem;
    margin: 0 0.24rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-front .icon {
    right: 0;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.32rem 0 0.6rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left {
    width: 100%;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row {
    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: 1.01rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row:first-child {
    margin-top: 0;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-label {
    font-size: 0.28rem;
    line-height: 0.37rem;
    width: 100%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-left .-row .-content {
    padding-right: 0.72rem;
    max-width: 100%;
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.29rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right {
    margin: 0.8rem 0 0;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right .-box {
    max-width: 100%;
    width: 100%;
    border-radius: 0.16rem;
    background-color: var(--c-bg-1);
    padding: 0.33rem 0.3rem 0.35rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right .-box .-title {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .join-page .job__openings .job__openings-wrapper .job__openings-body .job__openings-list ul li .-info .-info-wrapper .-right .-box .-mail {
    font-size: 0.36rem;
    line-height: 0.48rem;
    margin-top: 0.1rem;
  }
}

@media screen and (max-width: 800px) {
  * {
    /* WebKit 内核浏览器（Safari、Chrome、Edge 移动端） */
    -webkit-tap-highlight-color: transparent;
    /* 标准属性（部分现代浏览器支持） */
    tap-highlight-color: transparent;
  }
  .sk-title01 {
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
  .hideOther .cookie-policy-popup {
    display: none;
  }
}
.g_left_anchor_navigation_si {
  position: fixed;
  left: 0.26rem;
  top: 50vh;
  z-index: 10;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  --circle-color: #1F1F1F4D;
  --progress-color: #1F1F1FFF;
  --text-color: #000;
}
.g_left_anchor_navigation_si[data-color=white] {
  --circle-color: #FFFFFF4D;
  --progress-color: #FFFFFFFF;
  --text-color: #FFFFFFFF;
}
.g_left_anchor_navigation_si[data-color=gray] {
  --circle-color: #9797974d;
  --progress-color: rgb(116, 116, 116);
  --text-color: rgb(116, 116, 116);
}
.g_left_anchor_navigation_si .navigation_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0.12rem;
  overflow: hidden;
  --dashoffset: 100;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.g_left_anchor_navigation_si .navigation_item .progress {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.12rem;
  height: 0.12rem;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.g_left_anchor_navigation_si .navigation_item .progress .circle_bg {
  stroke: var(--circle-color);
}
.g_left_anchor_navigation_si .navigation_item .progress .circle {
  stroke: var(--progress-color);
}
.g_left_anchor_navigation_si .navigation_item .title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  margin-top: 0.04rem;
  font-size: 0.12rem;
  letter-spacing: 0.02rem;
  color: var(--text-color);
}
.g_left_anchor_navigation_si .navigation_item.active {
  height: 0.2rem;
}
.g_left_anchor_navigation_si .navigation_item.active .progress {
  width: 0.2rem;
  height: 0.2rem;
}
.g_left_anchor_navigation_si .navigation_item.active .progress .circle {
  stroke-dashoffset: var(--dashoffset);
}

.scroll-table-container {
  cursor: -webkit-grab;
  cursor: grab;
}
.scroll-table-container::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.scroll-table-container::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #E4E4E6;
}
.scroll-table-container::-webkit-scrollbar-thumb:vertical {
  background-color: #E4E4E6;
}
.scroll-table-container::-webkit-scrollbar-width {
  width: 0.08rem;
}
.scroll-table-container::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
.scroll-table-container:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.scroll-table-container *::-moz-selection {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.scroll-table-container *,
.scroll-table-container *::selection {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.product-parameter-section .__section-wrapper {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.product-parameter-section .__section-wrapper .__section-head .sk-title01 {
  font-size: 0.42rem;
  line-height: 0.56rem;
  text-align: center;
}
.product-parameter-section .__section-wrapper .__section-body {
  margin-top: 0.67rem;
  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;
}
.product-parameter-section .__section-wrapper .__section-body .-left {
  position: -webkit-sticky;
  position: sticky;
  max-width: 3.2rem;
  width: 100%;
  top: 0;
  padding-top: 1.28rem;
  margin-top: -1.28rem;
  height: 100%;
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li {
  margin-top: 0.06rem;
  border-radius: 0.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li:first-child {
  margin-top: 0;
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li:hover {
  background-color: var(--c-bg-1);
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li.active {
  background-color: var(--c-bg-2);
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li.active a {
  color: var(--c-text-1);
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li.active a .svg-ctx {
  opacity: 1;
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li 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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.12rem 0.16rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: rgba(31, 31, 31, 0.6);
}
.product-parameter-section .__section-wrapper .__section-body .-left .-inner ul li a .svg-ctx {
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.16rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-parameter-section .__section-wrapper .__section-body .-right {
  max-width: 11rem;
  width: 100%;
  color: #1f1f1f;
  overflow-x: auto;
}
.product-parameter-section .__section-wrapper .__section-body .-right table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  position: relative;
}
.product-parameter-section .__section-wrapper .__section-body .-right table td,
.product-parameter-section .__section-wrapper .__section-body .-right table th {
  min-width: 3.12rem;
}
.product-parameter-section .__section-wrapper .__section-body .-right table td:first-child,
.product-parameter-section .__section-wrapper .__section-body .-right table th:first-child {
  width: 1.3rem;
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  left: 0;
  background: #FFFFFF;
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item {
  margin: 0 auto;
  width: 100%;
  max-width: 3.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .img-container {
  position: relative;
  width: 100%;
  padding-top: calc((0.5638629283) * 100%);
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .img-container .img-box {
  object-fit: contain;
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .name {
  margin-top: 0.18rem;
  font-size: 0.28rem;
  line-height: 0.37rem;
  font-family: var(--sk-font-Medium);
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .type {
  margin-top: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .colors {
  margin-top: 0.28rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.08rem;
}
.product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .colors .color {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: var(--p-color);
}
.product-parameter-section .__section-wrapper .__section-body .-right thead tr.h_empty {
  height: 0.58rem;
}
.product-parameter-section .__section-wrapper .__section-body .-right tbody tr td {
  padding: 0.18rem 0.06rem;
  border-bottom: 0.01rem solid #d8d8d8;
  font-size: 0.16rem;
  line-height: 0.21rem;
  text-align: center;
  opacity: 0.7;
}
.product-parameter-section .__section-wrapper .__section-body .-right tbody tr td.label {
  font-size: 0.18rem;
  line-height: 0.24rem;
  text-align: left;
  opacity: 1;
}
.product-parameter-section .__section-wrapper .__section-body .-right tbody tr.empty {
  height: 1rem;
}
@media screen and (max-width: 800px) {
  .product-parameter-section .__section-wrapper {
    padding-top: 2.88rem;
    padding-bottom: 2.4rem;
  }
  .product-parameter-section .__section-wrapper .__section-body {
    margin-top: 0.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-parameter-section .__section-wrapper .__section-body .-left {
    position: static;
    max-width: 100%;
    top: 0;
    padding-top: 0;
    margin-top: 0;
    height: auto;
  }
  .product-parameter-section .__section-wrapper .__section-body .-left > .-inner ul {
    display: none;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right {
    max-width: 100%;
    width: 100%;
    margin-top: 1.2rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-head .-tab {
    width: 100%;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-head .-total {
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.78rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download {
    margin-top: 0.22rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download li {
    border-radius: 0.16rem;
    height: 3.6rem;
    background-color: var(--c-bg-1);
    overflow: hidden;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
    padding: 0.3rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download li a .name {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download li a .img {
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 0.47rem;
    max-width: 3.84rem;
    width: 100%;
    height: 2.66rem;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download li a .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download li a .download-btn {
    border-radius: 0.1rem;
    width: 0.72rem;
    height: 0.72rem;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-download li a .download-btn .svg-ctx {
    width: 0.3rem;
    height: 0.3rem;
    object-fit: contain;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right .-list.-faq ul li .-info .-info-wrapper .-content {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.product-parameter-section.isBlack {
  background-color: #000000;
  color: #ffffff;
}
.product-parameter-section.isBlack .__section-wrapper .__section-head .sk-title01 {
  font-size: 0.42rem;
  line-height: 0.56rem;
  text-align: center;
  color: #ffffff;
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-left .-inner ul li:hover {
  background-color: var(--c-bg-1);
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-left .-inner ul li:hover a {
  color: var(--c-text-1);
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-left .-inner ul li.active {
  background-color: var(--c-bg-2);
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-left .-inner ul li.active a {
  color: var(--c-text-1);
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-left .-inner ul li.active a .svg-ctx {
  opacity: 1;
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-left .-inner ul li a {
  color: rgba(255, 255, 255, 0.6);
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-right {
  color: #FFFFFF;
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-right table td:first-child,
.product-parameter-section.isBlack .__section-wrapper .__section-body .-right table th:first-child {
  background: #000000;
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-right tbody tr td {
  padding: 0.18rem 0.06rem;
  border-bottom: 0.01rem solid #d8d8d8;
  font-size: 0.16rem;
  line-height: 0.21rem;
  text-align: center;
  opacity: 0.7;
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-right tbody tr td.label {
  font-size: 0.18rem;
  line-height: 0.24rem;
  text-align: left;
  opacity: 1;
}
.product-parameter-section.isBlack .__section-wrapper .__section-body .-right tbody tr.empty {
  height: 1rem;
}
.product-parameter-section.isGray {
  background-color: #39393A;
  color: #ffffff;
}
.product-parameter-section.isGray .__section-wrapper .__section-head .sk-title01 {
  font-size: 0.42rem;
  line-height: 0.56rem;
  text-align: center;
  color: #ffffff;
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-left .-inner ul li:hover {
  background-color: var(--c-bg-1);
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-left .-inner ul li:hover a {
  color: var(--c-text-1);
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-left .-inner ul li.active {
  background-color: var(--c-bg-2);
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-left .-inner ul li.active a {
  color: var(--c-text-1);
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-left .-inner ul li.active a .svg-ctx {
  opacity: 1;
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-left .-inner ul li a {
  color: rgba(255, 255, 255, 0.6);
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-right {
  color: #FFFFFF;
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-right table td:first-child,
.product-parameter-section.isGray .__section-wrapper .__section-body .-right table th:first-child {
  background: #39393A;
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-right tbody tr td {
  padding: 0.18rem 0.06rem;
  border-bottom: 0.01rem solid #d8d8d8;
  font-size: 0.16rem;
  line-height: 0.21rem;
  text-align: center;
  opacity: 0.7;
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-right tbody tr td.label {
  font-size: 0.18rem;
  line-height: 0.24rem;
  text-align: left;
  opacity: 1;
}
.product-parameter-section.isGray .__section-wrapper .__section-body .-right tbody tr.empty {
  height: 1rem;
}

.k-product-detail-page .banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.k-product-detail-page .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.k-product-detail-page .banner-section .wal {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .banner-section .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.k-product-detail-page .banner-section .wal .content-box {
  color: #000000;
  padding-bottom: 0.23rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .banner-section .wal .content-box {
    padding-bottom: 0;
    padding-top: 2.95rem;
  }
}
.k-product-detail-page .banner-section .wal .content-box .p_type {
  width: auto;
  height: 1.64rem;
}
.k-product-detail-page .banner-section .wal .content-box .h1 {
  margin-top: 0.3rem;
  font-size: 0.56rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .banner-section .wal .content-box .h1 {
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.k-product-detail-page .banner-section .wal .content-box .btn {
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .banner-section .wal .content-box .btn {
    margin-top: 0.64rem;
  }
}
.k-product-detail-page .card-list-section {
  background: #000000;
}
.k-product-detail-page .card-list-section .wal {
  padding-top: 3.32rem;
  padding-bottom: 1.44rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal {
    padding-top: 3.2rem;
    padding-bottom: 1.8rem;
  }
}
.k-product-detail-page .card-list-section .wal .decorate_img {
  position: absolute;
  top: 2.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.8rem;
  height: 0.117rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .decorate_img {
    width: 1.3rem;
    height: 0.2rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap {
    gap: 0.4rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li {
  --bg-color: #18181AFF;
  --color: #ffffff;
  height: 3.72rem;
  width: calc((100% - 0.2rem) / 3);
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: var(--bg-color);
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li {
    width: 100%;
    height: 5.2rem;
    border-radius: 0.16rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li.isbox {
  background: transparent;
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .bg-img-box .bg-img {
  max-width: 100%;
  max-height: 100%;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: -webkit-min-content !important;
  height: -moz-min-content !important;
  height: min-content !important;
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .bg-img-box .bg-img {
    bottom: -0.2rem;
  }
}
@media screen and (min-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(5n) {
    width: calc((100% - 0.2rem) / 3 * 2 + 0.1rem);
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box {
  position: relative;
  height: 100%;
  color: var(--color);
  padding: 0.4rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box {
    padding: 0.3rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .title {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .title {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .infor-txt {
  margin-top: 0.1rem;
  font-size: 0.2rem;
  line-height: 0.27rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .infor-txt {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    width: 100%;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list {
    gap: 0.2rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card {
  height: calc((100% - 0.1rem) / 2);
  background: var(--bg-color);
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card {
    height: calc((100% - 0.2rem) / 2);
    border-radius: 0.16rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card .content-box {
  position: relative;
  height: 100%;
  color: var(--color);
  padding: 0.4rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card .content-box {
    padding: 0.3rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card .content-box .title {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card .content-box .title {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card .content-box .infor-txt {
  margin-top: 0.1rem;
  font-size: 0.2rem;
  line-height: 0.27rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li .link-list .link-card .content-box .infor-txt {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .k-product-detail-page .card-list-section .wal .flex-wrap .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k-product-detail-page .comparison-section-title {
  background: #000000;
}
.k-product-detail-page .comparison-section-title .wal .title {
  color: #fff;
  font-size: 0.72rem;
  line-height: 0.96rem;
  text-align: center;
  padding: 1.27rem 0;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section-title .wal .title {
    font-size: 0.64rem;
    line-height: 0.85rem;
    padding: 0.6rem 0;
  }
}
.k-product-detail-page .comparison-section {
  padding: 0 0.1rem;
  background: #000000;
}
.k-product-detail-page .comparison-section .comparison-box {
  position: relative;
  height: calc(300vh - 0.2rem);
  overflow: hidden;
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box {
    border-radius: 0.16rem;
  }
}
.k-product-detail-page .comparison-section .comparison-box .image-layer {
  position: absolute;
  width: 100%;
  height: calc(100vh - 0.2rem);
  top: 0;
  left: 0;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer {
    border-radius: 0.16rem;
  }
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none;
  transition: none;
  --color: #ffffff;
  --background: #0C0A09FF;
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isWhite {
  --color: #1F1F1FFF;
  --background: #D8D8D8FF;
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content {
  background: var(--background);
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box {
  position: relative;
  height: 100%;
  width: 100%;
  color: var(--color);
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box {
    height: calc(100vh - 0.2rem);
  }
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 6.66rem;
  height: 100%;
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .h2 {
  margin-top: 2.49rem;
  margin-left: 1.9rem;
  margin-right: 0.5rem;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
@media screen and (min-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .h2 br {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .h2 {
    margin-top: 1.6rem;
    margin-left: 0.3rem;
    margin-right: 0.55rem;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .txt_wrapper {
  margin-top: 0.5rem;
  padding: 0.62rem 0;
  border: 0.01rem solid var(--color);
  border-left: none;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .txt_wrapper {
    padding: 0.76rem 0;
  }
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .txt_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  right: -0.08rem;
  top: -0.08rem;
  width: 0.16rem;
  height: 0.16rem;
  border: 1px solid var(--color);
  background: var(--background);
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .txt_wrapper::after {
  content: "";
  display: block;
  position: absolute;
  right: -0.08rem;
  bottom: -0.08rem;
  width: 0.16rem;
  height: 0.16rem;
  border: 1px solid var(--color);
  background: var(--background);
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .txt_wrapper .txt {
  margin-left: 1.9rem;
  margin-right: 0.5rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .txt_wrapper .txt {
    margin-left: 0.3rem;
    margin-right: 0.55rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box {
  left: unset;
  right: 0;
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box .h2 {
  margin-left: 0.5rem;
  margin-right: 1.9rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box .h2 {
    margin-left: 0.55rem;
    margin-right: 0.3rem;
  }
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box .txt_wrapper {
  border: 0.01rem solid var(--color);
  border-right: none;
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box .txt_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  left: -0.08rem;
  top: -0.08rem;
  width: 0.16rem;
  height: 0.16rem;
  border: 1px solid var(--color);
  background: var(--background);
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box .txt_wrapper::after {
  content: "";
  display: block;
  position: absolute;
  left: -0.08rem;
  bottom: -0.08rem;
  width: 0.16rem;
  height: 0.16rem;
  border: 1px solid var(--color);
  background: var(--background);
}
.k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box .txt_wrapper .txt {
  margin-left: 0.5rem;
  margin-right: 1.9rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .comparison-section .comparison-box .image-layer .layer-content._isRight .content-box .infor-box .txt_wrapper .txt {
    margin-left: 0.55rem;
    margin-right: 0.3rem;
  }
}
.k-product-detail-page .performance-leader-section {
  position: relative;
  background: #000;
  padding-top: 1.06rem;
  padding-bottom: 2.62rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section {
    padding-top: 1.46rem;
    padding-bottom: 2.4rem;
  }
}
.k-product-detail-page .performance-leader-section .bg-img {
  width: 100%;
  height: calc(100% - 1.06rem);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .bg-img {
    height: calc(100% - 1.46rem);
  }
}
.k-product-detail-page .performance-leader-section .right-img {
  width: 10rem;
  height: 10rem;
  position: absolute;
  right: 0;
  top: 2.98rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .right-img {
    width: 7.5rem;
    height: 7.18rem;
    position: static;
    margin-top: 0.65rem;
  }
}
.k-product-detail-page .performance-leader-section .wal .stitle {
  padding-top: 3.89rem;
  color: #fff;
  font-size: 0.72rem;
  line-height: 0.96rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .stitle {
    padding-top: 0.94rem;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.1rem;
  padding-top: 4.65rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap {
    gap: 0.2rem;
    padding-top: 1.13rem;
  }
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li {
  --bg-color: #010100FF;
  --color: #ffffff;
  width: 7.55rem;
  height: 7.55rem;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: var(--bg-color);
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li {
    width: 100%;
    height: 9.6rem;
    border-radius: 0.16rem;
  }
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li:last-child {
    margin-bottom: 0;
  }
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .bg-img-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  color: var(--color);
  padding: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box {
    padding: 0.3rem;
  }
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._top .title {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._top .title {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._top .infor-txt {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._top .infor-txt {
    margin-top: 0.23rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._top .infor-txt br {
    display: none;
  }
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._center .adv1 {
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
  max-width: 2.29rem;
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._center .adv2 {
  font-size: 0.64rem;
  line-height: 0.85rem;
  background: -webkit-linear-gradient(top, #ECECEC 0%, #5B5B5B 100%);
  background: linear-gradient(180deg, #ECECEC 0%, #5B5B5B 100%);
  -webkit-background-clip: text;
  /* 让背景裁剪到文字形状 */
  -webkit-text-fill-color: transparent;
  /* 让文字内容透明，显示背景 */
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._center .adv1 {
    font-size: 0.24rem;
    line-height: 0.32rem;
    max-width: 3.05rem;
  }
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._bottom .datas {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._bottom .datas .datas-item {
  text-align: center;
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._bottom .datas .datas-item .val {
  font-size: 0.28rem;
  line-height: 0.37rem;
}
.k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._bottom .datas .datas-item .key {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.6;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._bottom .datas .datas-item .val {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li .content-box ._bottom .datas .datas-item .key {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
@media screen and (min-width: 800px) {
  .k-product-detail-page .performance-leader-section .wal .flex-wrap .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k-product-detail-page .innovation_lab__section {
  background: #000000;
  overflow: hidden;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper {
  padding-top: 2.51rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
  font-size: 0.72rem;
  line-height: 0.96rem;
  color: white;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main {
  margin-top: 0.64rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  min-height: 7.2rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-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;
  width: 12.8rem;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.1rem;
  position: relative;
  background: #181819;
  border-radius: 0.1rem;
  overflow: hidden;
  color: #FFFFFF;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li[data-color=dark] {
  color: #000000;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:last-child {
  margin-right: 0;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .name {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .desc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
  max-width: 5rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.4rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item {
  text-align: center;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .val {
  font-size: 0.28rem;
  line-height: 0.37rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .key {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.6;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .decorate_img {
  position: absolute;
  right: 4.22rem;
  bottom: 1.24rem;
  width: 3.7rem;
  height: 2.87rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.04rem;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev,
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.08rem;
  background-color: var(--c-bg-1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev:hover,
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next:hover {
  background-color: var(--c-bg-hover-1);
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev .svg,
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next .svg {
  width: 0.2rem;
  height: 0.18rem;
  object-fit: contain;
}
.k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
  margin-left: 0.1rem;
}
.k-product-detail-page .portable-sofa-section {
  min-height: 16.76rem;
  padding-top: 2.87rem;
  background: #000;
  position: relative;
}
.k-product-detail-page .portable-sofa-section .left-img {
  position: absolute;
  left: 0;
  bottom: 1.42rem;
  width: 10.2rem;
  height: 10.2rem;
  z-index: 0;
}
.k-product-detail-page .portable-sofa-section .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;
  color: #fff;
  position: relative;
  z-index: 1;
}
.k-product-detail-page .portable-sofa-section .wal .stitle {
  text-align: center;
  font-size: 0.72rem;
  line-height: 0.96rem;
}
.k-product-detail-page .portable-sofa-section .wal .data {
  margin-top: 2.11rem;
  font-size: 0.84rem;
  line-height: 1.11rem;
  background: -webkit-linear-gradient(top, #ECECEC 0%, #5B5B5B 100%);
  background: linear-gradient(180deg, #ECECEC 0%, #5B5B5B 100%);
  -webkit-background-clip: text;
  /* 让背景裁剪到文字形状 */
  -webkit-text-fill-color: transparent;
  /* 让文字内容透明，显示背景 */
}
.k-product-detail-page .portable-sofa-section .wal .right_content {
  margin-top: 1.23rem;
  width: 4.8rem;
  margin-left: auto;
}
.k-product-detail-page .portable-sofa-section .wal .right_content .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k-product-detail-page .portable-sofa-section .wal .right_content .desc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k-product-detail-page .portable-sofa-section .wal .right_content .text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.k-product-detail-page .team__section {
  width: 100%;
  height: 100vh;
  padding: 0 0.1rem;
  background: rgb(0, 0, 0);
}
.k-product-detail-page .team__section .team__section-container {
  background: #d8d8d8;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.k-product-detail-page .team__section .team__section-container .team__section-wrapper {
  height: 100%;
  padding-top: 1.53rem;
  padding-bottom: 0.7rem;
}
.k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-bg {
  width: 12.3rem;
  height: 8.6rem;
  left: unset;
  right: 0;
  z-index: 1;
}
.k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-bg img {
  object-fit: contain;
}
.k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: #000;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .desc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .context {
  max-width: 4.8rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  margin-top: 0.32rem;
}
.k-product-detail-page .smart_go__section {
  background: #000;
  position: relative;
  color: #fff;
  min-height: 23.37rem;
  overflow: hidden;
}
.k-product-detail-page .smart_go__section .left-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 13.55rem;
  height: 14.1rem;
  z-index: 0;
}
.k-product-detail-page .smart_go__section .wal {
  position: relative;
  z-index: 1;
  padding-top: 2.4rem;
}
.k-product-detail-page .smart_go__section .wal .stitle {
  font-size: 0.72rem;
  line-height: 0.96rem;
}
.k-product-detail-page .smart_go__section .wal ._smart {
  margin-top: 2.22rem;
}
.k-product-detail-page .smart_go__section .wal ._smart .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k-product-detail-page .smart_go__section .wal ._smart .smarts {
  width: 6.78rem;
  margin-top: 0.97rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 0.45rem;
  -webkit-column-gap: 0.78rem;
     -moz-column-gap: 0.78rem;
          column-gap: 0.78rem;
}
.k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item {
  width: calc((100% - 0.78rem) / 2);
}
.k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item .img {
  width: 0.5rem;
  height: 0.5rem;
}
.k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item .text .name {
  font-size: 0.24rem;
  line-height: 0.32rem;
  margin-top: 0.23rem;
}
.k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item .text .desc {
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
  margin-top: 0.16rem;
}
.k-product-detail-page .smart_go__section .wal ._app {
  margin-top: 2.42rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.k-product-detail-page .smart_go__section .wal ._app ._left {
  width: 8.6rem;
  height: 8.6rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.k-product-detail-page .smart_go__section .wal ._app ._left .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.k-product-detail-page .smart_go__section .wal ._app ._right {
  width: 4.8rem;
  margin-left: auto;
  padding-top: 2.72rem;
}
.k-product-detail-page .smart_go__section .wal ._app ._right .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k-product-detail-page .smart_go__section .wal ._app ._right .desc {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k-product-detail-page .feature-focus-section-title {
  background: #000;
  padding-top: 3.04rem;
}
.k-product-detail-page .feature-focus-section-title .stitle {
  font-size: 0.72rem;
  line-height: 0.96rem;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .feature-focus-section-title {
    padding-top: 2.4rem;
  }
  .k-product-detail-page .feature-focus-section-title .stitle {
    text-align: center;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.k-product-detail-page .feature-focus-section {
  background: #000;
  height: 10.78rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .feature-focus-section {
    height: 100vh;
    overflow: hidden;
  }
}
.k-product-detail-page .feature-focus-section .type-area {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box {
  width: calc((100% - 0.2rem) / 3);
  height: 7.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .feature-focus-section .type-area .flex-box .card-box {
    width: 5rem;
  }
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:first-child {
  position: absolute;
  left: 0;
  top: 1.5rem;
  margin-right: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:first-child {
    left: -4.4rem;
  }
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:last-child {
  position: absolute;
  right: 0;
  top: 1.5rem;
  margin-left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:last-child {
    right: -4.4rem;
  }
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) {
  position: absolute;
  top: 1.5rem;
  left: auto;
  right: auto;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .bg-img {
  position: relative;
  height: auto;
  min-height: 100%;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal {
  height: 100%;
  position: relative;
  color: #fff;
  text-align: center;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 {
  font-size: 0.42rem;
  line-height: 0.63rem;
  padding-top: 1.6rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 {
    padding-top: 2.14rem;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 br {
    display: none;
  }
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .h2 .color {
  opacity: 0.4;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box:nth-child(2) .content-box .wal .desc {
  margin-top: 0.36rem;
  font-size: 0.32rem;
  line-height: 0.42rem;
  opacity: 0;
}
.k-product-detail-page .feature-focus-section .type-area .flex-box .card-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.k-product-detail-page .product-color-type {
  padding: 1rem 0.1rem 0 0.1rem;
}
.k-product-detail-page .product-color-type .product-color-container {
  border-radius: 0.1rem;
  background: #d8d8d8;
  padding-top: 1.24rem;
  padding-bottom: 0.94rem;
  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;
}
.k-product-detail-page .product-color-type .product-color-container .stitle {
  text-align: center;
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: #1f1f1f;
}
.k-product-detail-page .product-color-type .product-color-container .img-box {
  margin-top: 1.15rem;
  width: 15.63rem;
  height: 7.33rem;
}
.k-product-detail-page .product-color-type .product-color-container .classify {
  margin-top: 0.22rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}
.k-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  padding: 0.1rem;
  background: #fff;
  border-radius: 0.28rem;
}
.k-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--p-color);
  cursor: pointer;
  position: relative;
}
.k-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
  content: "";
  display: block;
  border: 0.02rem solid #1f1f1f;
  border-top: none;
  border-right: none;
  width: 0.15rem;
  height: 0.09rem;
  position: absolute;
  left: 0.1rem;
  top: 0.09rem;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper {
    padding-top: 2.33rem;
    padding-bottom: 0;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main {
    margin-top: 0.6rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
    min-height: auto;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li {
    width: 100%;
    margin-right: 0.4rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
    border-radius: 0.16rem;
    position: relative;
    width: 100%;
    padding-top: calc((2.0895522388) * 100%);
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
    padding: 0.57rem 0.49rem 0.6rem;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top {
    text-align: center;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .name {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .desc {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .text {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
    max-width: 100%;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.88rem;
    row-gap: 0.42rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .val {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .key {
    margin-top: 0.06rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.6;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:nth-child(3) .content_con ._bottom {
    gap: 0.6rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:nth-child(4) .content_con ._bottom {
    gap: 0;
    row-gap: 0.42rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:nth-child(4) .content_con ._bottom .adv_item {
    width: 50%;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .decorate_img {
    position: absolute;
    right: 2.5rem;
    bottom: 5.42rem;
    width: 3.7rem;
    height: 2.87rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow {
    margin-top: 1.34rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev,
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev .svg,
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next .svg {
    width: 0.28rem;
    height: 0.88rem;
  }
  .k-product-detail-page .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
    margin-left: 0.2rem;
  }
  .k-product-detail-page .portable-sofa-section {
    min-height: 18.92rem;
    padding-top: 2.4rem;
  }
  .k-product-detail-page .portable-sofa-section .left-img {
    position: absolute;
    left: 0;
    bottom: 5.92rem;
    width: 7.5rem;
    height: 7.41rem;
    z-index: 0;
  }
  .k-product-detail-page .portable-sofa-section .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;
    color: #fff;
    position: relative;
    z-index: 1;
  }
  .k-product-detail-page .portable-sofa-section .wal .stitle {
    text-align: center;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
  .k-product-detail-page .portable-sofa-section .wal .data {
    margin-top: 0.93rem;
  }
  .k-product-detail-page .portable-sofa-section .wal .right_content {
    margin-top: 7.52rem;
    width: 100%;
    margin-left: unset;
    text-align: center;
  }
  .k-product-detail-page .portable-sofa-section .wal .right_content .title {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .k-product-detail-page .portable-sofa-section .wal .right_content .desc {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .k-product-detail-page .portable-sofa-section .wal .right_content .text {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .k-product-detail-page .team__section {
    width: 100%;
    height: 10.8rem;
    padding: 0 0.1rem;
    background: rgb(0, 0, 0);
  }
  .k-product-detail-page .team__section .team__section-container {
    background: #d8d8d8;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper {
    height: 100%;
    padding-top: 6.82rem;
    padding-bottom: 1.46rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-bg {
    width: 100%;
    height: 5.6rem;
    left: unset;
    right: 0;
    z-index: 1;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-bg img {
    object-fit: cover;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    color: #000;
    padding-bottom: 0;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top {
    text-align: center;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .title {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .desc {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .k-product-detail-page .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .context {
    max-width: unset;
    font-size: 0.26rem;
    line-height: 0.34rem;
    margin-top: 0.36rem;
  }
  .k-product-detail-page .smart_go__section {
    background: #000;
    position: relative;
    color: #fff;
    min-height: unset;
    position: relative;
  }
  .k-product-detail-page .smart_go__section .left-img {
    position: static;
    width: 100%;
    height: 13.23rem;
    z-index: 0;
  }
  .k-product-detail-page .smart_go__section .wal {
    position: static;
    z-index: 1;
    padding-top: 0;
  }
  .k-product-detail-page .smart_go__section .wal .stitle {
    width: 100%;
    position: absolute;
    top: 2.4rem;
    left: 0;
    font-size: 0.64rem;
    line-height: 0.85rem;
    text-align: center;
  }
  .k-product-detail-page .smart_go__section .wal ._smart {
    margin-top: 0;
    text-align: center;
  }
  .k-product-detail-page .smart_go__section .wal ._smart .title {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .k-product-detail-page .smart_go__section .wal ._smart .smarts {
    width: 100%;
    padding: 0 0.25rem;
    margin-top: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    row-gap: 0.95rem;
    -webkit-column-gap: 0.95rem;
       -moz-column-gap: 0.95rem;
            column-gap: 0.95rem;
  }
  .k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item {
    width: 2.6rem;
  }
  .k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item .img {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 auto;
  }
  .k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item .text .name {
    font-size: 0.36rem;
    line-height: 0.32rem;
    margin-top: 0.48rem;
  }
  .k-product-detail-page .smart_go__section .wal ._smart .smarts .smart_item .text .desc {
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
    margin-top: 0.24rem;
  }
  .k-product-detail-page .smart_go__section .wal ._app {
    margin-top: 2.4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .k-product-detail-page .smart_go__section .wal ._app ._left {
    width: 100%;
    height: 6.7rem;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .k-product-detail-page .smart_go__section .wal ._app ._left .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .k-product-detail-page .smart_go__section .wal ._app ._right {
    width: 100%;
    margin-left: unset;
    padding-top: 0.69rem;
  }
  .k-product-detail-page .smart_go__section .wal ._app ._right .title {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .k-product-detail-page .smart_go__section .wal ._app ._right .desc {
    margin-top: 0.36rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .k-product-detail-page .product-color-type {
    padding: 1.8rem 0.1rem 0 0.1rem;
  }
  .k-product-detail-page .product-color-type .product-color-container {
    border-radius: 0.1rem;
    background: #d8d8d8;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .k-product-detail-page .product-color-type .product-color-container .stitle {
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.64rem;
    color: #1f1f1f;
  }
  .k-product-detail-page .product-color-type .product-color-container .img-box {
    margin-top: 2.77rem;
    width: 7.3rem;
    height: 3.42rem;
  }
  .k-product-detail-page .product-color-type .product-color-container .classify {
    margin-top: 3.12rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.6rem;
  }
  .k-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.15rem;
    padding: 0.15rem;
    background: #fff;
    border-radius: 0.42rem;
  }
  .k-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 50%;
    background: var(--p-color);
    cursor: pointer;
    position: relative;
  }
  .k-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
    content: "";
    display: block;
    border: 0.02rem solid #1f1f1f;
    border-top: none;
    border-right: none;
    width: 0.24rem;
    height: 0.15rem;
    position: absolute;
    left: 0.14rem;
    top: 0.12rem;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.k-product-detail-page._kzlite .banner-section .wal .content-box .p_type {
  height: 1.3rem;
}
.k-product-detail-page._kzlite .card-list-section .wal .flex-wrap .card-li .bg-img-box .bg-img {
  bottom: 0;
}
.k-product-detail-page._kzlite .kzlite_battery_section {
  width: 100%;
  height: 100vh;
  padding: 0 0.1rem;
  background: rgb(0, 0, 0);
}
.k-product-detail-page._kzlite .kzlite_battery_section .team__section-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper {
  height: 100%;
  padding-top: 1.53rem;
  padding-bottom: 0.7rem;
}
.k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-bg {
  width: 100%;
  height: 100%;
  left: unset;
  right: 0;
  z-index: 1;
}
.k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-bg img {
  object-fit: contain;
}
.k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: #ffffff;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .desc {
  max-width: 4.12rem;
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .decorate_img {
  right: 5.19rem;
  top: 3.44rem;
}
.k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light {
  position: absolute;
  left: calc(50% - 0.75rem);
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light .val {
  font-size: 0.64rem;
  line-height: 0.85rem;
  background: -webkit-linear-gradient(top, #ECECEC 0%, #5B5B5B 100%);
  background: linear-gradient(180deg, #ECECEC 0%, #5B5B5B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light .val .unit {
  font-size: 0.32rem;
}
.k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light .key {
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.k-product-detail-page._kzlite .team__section {
  height: 9.2rem;
}
.k-product-detail-page._kzlite .team__section .team__section-container .team__section-wrapper .team__section-bg {
  width: 100%;
  height: 100%;
}
.k-product-detail-page._kzlite .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .p_type {
  height: 1.35rem;
  width: auto;
  margin-bottom: 1.16rem;
}
.k-product-detail-page._kzlite .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .context {
  opacity: 0.7;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .k-product-detail-page._kzlite .kzlite_battery_section {
    width: 100%;
    height: 16.04rem;
    padding: 0 0.1rem;
  }
  .k-product-detail-page._kzlite .kzlite_battery_section .team__section-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper {
    height: 100%;
    padding-top: 1.6rem;
    padding-bottom: 1.46rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-bg {
    width: 100%;
    height: 100%;
    left: unset;
    right: 0;
    z-index: 1;
  }
  .k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-bg img {
    object-fit: cover;
  }
  .k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
    padding-bottom: 0;
  }
  .k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .title {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .k-product-detail-page._kzlite .kzlite_battery_section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .desc {
    max-width: 5.82rem;
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .decorate_img {
    right: auto;
    left: 0.5rem;
    top: 5.7rem;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:nth-child(2) .content_con ._bottom {
    gap: 0.9rem;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:nth-child(2) .content_con ._bottom .adv_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1.3rem;
       -moz-column-gap: 1.3rem;
            column-gap: 1.3rem;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:nth-child(2) .content_con ._bottom .adv_item :nth-child(odd) {
    width: 1rem;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:nth-child(2) .content_con ._bottom .adv_item :nth-child(even) {
    width: 1.33rem;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light {
    position: absolute;
    left: 50%;
    top: 3.26rem;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light .val {
    font-size: 0.84rem;
    line-height: 1.11rem;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light .val .unit {
    font-size: 0.48rem;
  }
  .k-product-detail-page._kzlite .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._light .key {
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
    text-align: center;
  }
  .k-product-detail-page._kzlite .team__section {
    height: 13.6rem;
  }
  .k-product-detail-page._kzlite .team__section .team__section-container .team__section-wrapper {
    padding: 7.14rem 0.6rem 0;
  }
  .k-product-detail-page._kzlite .team__section .team__section-container .team__section-wrapper .team__section-bg {
    width: 100%;
    height: 100%;
  }
  .k-product-detail-page._kzlite .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .p_type {
    height: 1.35rem;
    width: auto;
    margin-bottom: 1.16rem;
  }
  .k-product-detail-page._kzlite .team__section .team__section-container .team__section-wrapper .team__section-content .team__section-content_top .context {
    opacity: 0.7;
    padding-bottom: 0.4rem;
  }
}

.y-product-detail-page .banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.y-product-detail-page .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.y-product-detail-page .banner-section .wal {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .banner-section .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.y-product-detail-page .banner-section .wal .content-box {
  color: #000000;
  padding-bottom: 0.23rem;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .banner-section .wal .content-box {
    padding-bottom: 0;
    padding-top: 2.95rem;
  }
}
.y-product-detail-page .banner-section .wal .content-box .p_type {
  width: auto;
  height: 1.64rem;
}
.y-product-detail-page .banner-section .wal .content-box .h1 {
  margin-top: 0.3rem;
  font-size: 0.56rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .banner-section .wal .content-box .h1 {
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.y-product-detail-page .banner-section .wal .content-box .btn {
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .banner-section .wal .content-box .btn {
    margin-top: 0.64rem;
  }
}
.y-product-detail-page .card-list-section {
  position: relative;
  z-index: 4;
}
.y-product-detail-page .card-list-section .wal {
  padding-top: 2rem;
  padding-bottom: 1.2rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .card-list-section .wal {
    padding-top: 2.4rem;
    padding-bottom: 1.2rem;
  }
}
.y-product-detail-page .card-list-section .wal .flex-wrap {
  display: -ms-grid;
  display: grid;
  gap: 0.1rem;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .card-list-section .wal .flex-wrap {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
  }
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li {
  --bg-color: #F4F4F5FF;
  --color: #1F1F1FFF;
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: var(--bg-color);
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1) * 100%);
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li {
    border-radius: 0.16rem;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li.span-row {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li.span-row .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.4328358209) * 100%);
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li.span-row .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li.span-column {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li.span-column .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1) * 100%);
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li.span-column .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li .bg-img-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li .bg-img-box .bg-img {
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(1) .bg-img-box {
  width: 100%;
  height: 2.36rem;
  right: 0;
  bottom: 0;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(2) .bg-img-box {
  width: 100%;
  height: 3.09rem;
  right: 0;
  bottom: -0.2rem;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((2) * 100%);
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) .bg-img-box {
  width: 2.16rem;
  height: 4.86rem;
  right: 0.78rem;
  bottom: -0.2rem;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(4) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(4) .bg-img-box {
  width: 3.06rem;
  height: 2.79rem;
  right: 0;
  bottom: 0;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(5) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(5) .bg-img-box {
  width: 3.23rem;
  height: 1.64rem;
  right: 0.25rem;
  bottom: 0.38rem;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.5) * 100%);
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) .bg-img-box {
  width: 5rem;
  height: 3.3rem;
  right: 0.36rem;
  bottom: -0.2rem;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(1) .bg-img-box {
    width: 100%;
    height: 4.29rem;
    right: 0;
    bottom: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(2) .bg-img-box {
    width: 100%;
    height: 5.62rem;
    right: 0;
    bottom: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.4328358209) * 100%);
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(3) .bg-img-box {
    width: 2.98rem;
    height: 6.7rem;
    right: 1.86rem;
    bottom: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(4) .bg-img-box {
    width: 5.8rem;
    height: 5.29rem;
    right: 0;
    bottom: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(5) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5/6;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(5) .bg-img-box {
    width: 5.91rem;
    height: 3.03rem;
    right: 0.39rem;
    bottom: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6/7;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1) * 100%);
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:nth-child(6) .bg-img-box {
    width: 5.9rem;
    height: 3.89rem;
    right: 0.39rem;
    bottom: 0;
  }
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box {
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--color);
  padding: 0.3rem;
  left: 0;
  top: 0;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box {
    padding: 0.3rem;
  }
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .title {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .title {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
}
.y-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .infor-txt {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li .content-box .infor-txt {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .y-product-detail-page .card-list-section .wal .flex-wrap .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.y-product-detail-page .mileage__section {
  overflow: hidden;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper {
  padding-top: 1.2rem;
  padding-bottom: 2.4rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
  font-size: 0.96rem;
  line-height: 0.96rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-head .title2 {
  font-size: 0.56rem;
  line-height: 0.96rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main {
  margin-top: 0.84rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  min-height: 7.2rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-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;
  width: 12.8rem;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.1rem;
  position: relative;
  background: #f4f4f5;
  border-radius: 0.1rem;
  overflow: hidden;
  color: #1f1f1f;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li[data-color=dark] {
  color: #000000;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:last-child {
  margin-right: 0;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem;
  width: 5.65rem;
  height: 100%;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .title1 {
  font-size: 0.32rem;
  line-height: 0.42rem;
  opacity: 0.4;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .title2 {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
@media screen and (min-width: 800px) {
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .text br {
    display: none;
  }
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom {
  width: 100%;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 {
  margin-top: 0.32rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data {
  background: white;
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.28rem 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data .item .val {
  font-size: 0.28rem;
  line-height: 0.37rem;
  white-space: nowrap;
  font-family: var(--sk-font-Medium);
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data .item .key {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .tag {
  margin-top: 0.16rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.43rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 .item {
  width: 0.8rem;
  text-align: center;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 .item .icon {
  width: 0.4rem;
  height: 0.4rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 .item .key {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.6rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item {
  width: 0.72rem;
  text-align: center;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .h {
  font-family: var(--sk-font-Medium);
  font-size: 0.28rem;
  line-height: 0.37rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .type {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.6;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .tr {
  margin-top: 0.1rem;
  width: 0;
  height: 0;
  border-left: 0.05rem solid transparent;
  /* 左侧透明 */
  border-right: 0.05rem solid transparent;
  /* 右侧透明 */
  border-top: 0.1rem solid black;
  /* 顶部黑色 */
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .text {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area4 {
  margin-top: 1.87rem;
  margin-left: 1.59rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area4 .decorate_img {
  width: 3rem;
  height: 0.54rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area4 .text {
  width: 3rem;
  margin-top: 0.27rem;
  font-size: 0.2rem;
  line-height: 0.27rem;
  text-align: center;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .img {
  width: 5.68rem;
  height: 6.88rem;
  right: 0.75rem;
  bottom: 0.16rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .img {
  width: 8.91rem;
  height: 6.24rem;
  right: 0;
  bottom: 0;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .img {
  width: 7.53rem;
  height: 6.8rem;
  right: 0.74rem;
  bottom: 0;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.04rem;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .prev,
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .next {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.08rem;
  background-color: var(--c-bg-1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .prev:hover,
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .next:hover {
  background-color: var(--c-bg-hover-1);
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .prev .svg,
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .next .svg {
  width: 0.2rem;
  height: 0.18rem;
  object-fit: contain;
}
.y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .next {
  margin-left: 0.1rem;
}
.y-product-detail-page .space__section {
  padding: 2rem 0 2.58rem 0;
  background: -webkit-linear-gradient(top, #E6E7EB 0%, #B6B7BE 100%);
  background: linear-gradient(180deg, #E6E7EB 0%, #B6B7BE 100%);
  color: #1F1F1F;
  position: relative;
  overflow: hidden;
}
.y-product-detail-page .space__section .title_box {
  position: absolute;
  top: 2.58rem;
  left: 2rem;
}
.y-product-detail-page .space__section .title_box .title {
  font-size: 0.96rem;
  line-height: 0.96rem;
}
.y-product-detail-page .space__section .title_box .title2 {
  font-size: 0.56rem;
  line-height: 0.96rem;
}
.y-product-detail-page .space__section .adv_list .item {
  position: relative;
}
.y-product-detail-page .space__section .adv_list .item .left_content {
  position: absolute;
}
.y-product-detail-page .space__section .adv_list .item .left_content .name {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.y-product-detail-page .space__section .adv_list .item .left_content .text {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
@media screen and (min-width: 800px) {
  .y-product-detail-page .space__section .adv_list .item .left_content .text br {
    display: none;
  }
}
.y-product-detail-page .space__section .adv_list .item .right_img {
  position: absolute;
}
.y-product-detail-page .space__section .adv_list .item .right_img .anchor-img {
  object-fit: contain;
}
.y-product-detail-page .space__section .adv_list .item .right_img .anchor {
  position: absolute;
}
.y-product-detail-page .space__section .adv_list .item .right_img .anchor .line {
  display: block;
}
.y-product-detail-page .space__section .adv_list .item .right_img .anchor .data_con {
  position: absolute;
  white-space: nowrap;
}
.y-product-detail-page .space__section .adv_list .item .right_img .anchor .data_con .data {
  font-family: var(--sk-font-Medium);
  font-size: 0.48rem;
  line-height: 0.56rem;
}
.y-product-detail-page .space__section .adv_list .item .right_img .anchor .data_con .text {
  margin-top: 0.1rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .space__section .adv_list .item.wheel_base {
  height: 15.07rem;
}
.y-product-detail-page .space__section .adv_list .item.wheel_base .left_content {
  width: 4rem;
  left: 2rem;
  top: 9.16rem;
}
.y-product-detail-page .space__section .adv_list .item.wheel_base .right_img {
  width: 11.62rem;
  height: 14.08rem;
  right: 0.33rem;
  top: 0;
}
.y-product-detail-page .space__section .adv_list .item.wheel_base .right_img .anchor {
  top: 7.96rem;
  left: 2.36rem;
}
.y-product-detail-page .space__section .adv_list .item.wheel_base .right_img .anchor .line {
  width: 7.19rem;
  height: 6.71rem;
}
.y-product-detail-page .space__section .adv_list .item.wheel_base .right_img .anchor .data_con {
  bottom: 0.66rem;
  left: 0.37rem;
}
.y-product-detail-page .space__section .adv_list .item.pedal {
  height: 13.46rem;
}
.y-product-detail-page .space__section .adv_list .item.pedal .left_content {
  width: 4.12rem;
  right: 2.23rem;
  top: 4.43rem;
}
.y-product-detail-page .space__section .adv_list .item.pedal .right_img {
  width: 13.22rem;
  height: 15.46rem;
  left: -2.53rem;
  top: 0;
}
.y-product-detail-page .space__section .adv_list .item.pedal .right_img .anchor {
  top: 9.18rem;
  left: 7.69rem;
}
.y-product-detail-page .space__section .adv_list .item.pedal .right_img .anchor .line {
  width: 8.41rem;
  height: 0.01rem;
}
.y-product-detail-page .space__section .adv_list .item.pedal .right_img .anchor .data_con {
  bottom: 0.24rem;
  right: 0;
  text-align: right;
}
.y-product-detail-page .space__section .adv_list .item.seat_cask {
  height: 9.96rem;
}
.y-product-detail-page .space__section .adv_list .item.seat_cask .left_content {
  width: 4.12rem;
  left: 2rem;
  top: 1.6rem;
}
.y-product-detail-page .space__section .adv_list .item.seat_cask .right_img {
  width: 13.12rem;
  height: 6.71rem;
  right: 0;
  top: 3.24rem;
}
.y-product-detail-page .space__section .adv_list .item.seat_cask .right_img .anchor {
  top: 3.07rem;
  right: 8.4rem;
}
.y-product-detail-page .space__section .adv_list .item.seat_cask .right_img .anchor .line {
  width: 8.73rem;
  height: 0.01rem;
}
.y-product-detail-page .space__section .adv_list .item.seat_cask .right_img .anchor .data_con {
  bottom: 0.21rem;
  left: 0;
}
.y-product-detail-page .sofa__section {
  padding: 2.4rem 0;
}
.y-product-detail-page .sofa__section .wal .title {
  text-align: center;
  font-size: 0.96rem;
  line-height: 0.96rem;
}
.y-product-detail-page .sofa__section .wal .title2 {
  text-align: center;
  font-size: 0.56rem;
  line-height: 0.96rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.1rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li {
  width: calc((100% - 0.1rem) / 2);
  background: #f4f4f5;
  border-radius: 0.1rem;
  overflow: hidden;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.8476821192) * 100%);
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .bg-img-box {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #1F1F1F;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._top {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._top .ctitle1 {
  opacity: 0.4;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._bottom {
  min-height: 3.87rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._bottom .adv_item:not(:last-child) {
  margin-bottom: 0.3rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._bottom .adv_item .name {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._bottom .adv_item .text {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.type1 .p_wrapper .bg-img-box {
  width: 4.76rem;
  height: 3.73rem;
  right: 0;
  bottom: 0;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.type2 .p_wrapper .bg-img-box {
  width: 5.16rem;
  height: 5.93rem;
  right: 0;
  bottom: 0.5rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide {
  width: 100%;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.4210526316) * 100%);
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box {
  width: 6.86rem;
  margin-left: auto;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-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;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._top {
  text-align: center;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right {
  width: 100%;
  height: 3.8rem;
  margin-top: 0.39rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.1rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item {
  height: 1.85rem;
  width: 2.9rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.2rem 0.3rem;
  --text-color: #fff;
  color: var(--text-color);
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item:nth-child(3) {
  height: 3.8rem;
  width: 2rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item:nth-child(3) .text {
  text-align: center;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .name {
  position: relative;
  z-index: 1;
  font-size: 0.18rem;
  line-height: 0.24rem;
  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;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .name .num {
  font-size: 1.08rem;
  line-height: 0.96rem;
  font-family: var(--sk-font-Num);
  position: relative;
  top: -0.15rem;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .text {
  position: relative;
  z-index: 1;
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: right;
}
.y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .bg-img-box {
  width: 8.32rem;
  height: 100%;
  right: unset;
  bottom: unset;
  left: 0;
  top: -0.5rem;
}
.y-product-detail-page .power__section {
  position: relative;
  overflow: hidden;
}
.y-product-detail-page .power__section .title_box {
  position: absolute;
  top: 3.71rem;
  left: 2rem;
  z-index: 1;
}
.y-product-detail-page .power__section .title_box .title {
  font-size: 0.96rem;
  line-height: 0.96rem;
}
.y-product-detail-page .power__section .title_box .title2 {
  font-size: 0.56rem;
  line-height: 0.96rem;
}
.y-product-detail-page .power__section ._kw {
  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: 13.11rem;
  background: -webkit-linear-gradient(top, #E6E7EB 0%, rgba(182, 183, 190, 0) 99%);
  background: linear-gradient(180deg, #E6E7EB 0%, rgba(182, 183, 190, 0) 99%);
}
.y-product-detail-page .power__section ._kw .right_img {
  position: relative;
  width: 17.17rem;
  height: 9.97rem;
  margin-left: auto;
}
.y-product-detail-page .power__section ._kw .right_img .anchor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.y-product-detail-page .power__section ._kw .right_img .anchor {
  position: absolute;
  right: 8.53rem;
  top: 5.27rem;
  white-space: nowrap;
}
.y-product-detail-page .power__section ._kw .right_img .anchor .line {
  width: 8.67rem;
  height: 2.97rem;
  display: block;
}
.y-product-detail-page .power__section ._kw .right_img .anchor .data_con {
  position: absolute;
  bottom: 0.21rem;
  left: 0;
}
.y-product-detail-page .power__section ._kw .right_img .anchor .data_con .data {
  font-family: var(--sk-font-Medium);
  font-size: 0.48rem;
  line-height: 0.56rem;
}
.y-product-detail-page .power__section ._kw .right_img .anchor .data_con .text {
  margin-top: 0.1rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .power__section ._kw .right_img .anchor .tag_txt {
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  font-size: 0.14rem;
  line-height: 0.19rem;
}
.y-product-detail-page .power__section ._kw .em_title {
  margin-top: 1.9rem;
}
.y-product-detail-page .power__section ._kw .em_title .title {
  text-align: center;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.y-product-detail-page .power__section ._kw .em_title .decs {
  margin-top: 0.16rem;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.y-product-detail-page .swiper-comparison-section {
  padding: 0.1rem;
  position: relative;
  height: 400vh;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section {
    height: 100vh;
  }
}
.y-product-detail-page .swiper-comparison-section .swiper-comparison-box {
  overflow: hidden;
  width: calc(64% - 0.05rem);
  height: calc(100vh - 0.2rem);
  border-radius: 0.1rem;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .swiper-comparison-box {
    -webkit-transform: translateY(-44.9507389163vh);
        -ms-transform: translateY(-44.9507389163vh);
            transform: translateY(-44.9507389163vh);
    width: 100%;
    height: 44.9507389163vh;
  }
}
.y-product-detail-page .swiper-comparison-section .swiper-comparison-box .image-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
}
.y-product-detail-page .swiper-comparison-section .swiper-comparison-box .image-layer .layer-content {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .swiper-comparison-box .image-layer .layer-content {
    height: 44.9507389163vh;
  }
}
.y-product-detail-page .swiper-comparison-section .swiper-comparison-box .image-layer .layer-content .content-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.y-product-detail-page .swiper-comparison-section .comparison-content {
  position: -webkit-sticky;
  position: sticky;
  top: 0.1rem;
  bottom: 0.1rem;
  float: right;
  width: calc(36% - 0.05rem);
  height: calc(100vh - 0.2rem);
  border-radius: 0.1rem;
  background: #E4E4E6;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content {
    width: 100%;
    bottom: 44.9507389163vh;
    background: transparent;
  }
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul {
  height: 100%;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content .content-ul {
    position: relative;
    height: 53.2019704433vh;
    background: #E4E4E6;
    border-radius: 0.16rem;
  }
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.4rem;
  padding-bottom: calc(23% + 0.4rem);
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.4rem;
  }
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li .big_txt {
  font-size: 1.8rem;
  line-height: 2.39rem;
  color: rgba(31, 31, 31, 0.4);
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li .big_txt::first-letter {
  color: #1f1f1f;
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li .title {
  margin-top: 1.94rem;
  font-size: 0.32rem;
  line-height: 0.42rem;
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li .title {
    margin-top: 0.43rem;
    font-size: 0.4rem;
    line-height: 0.53rem;
    text-align: center;
  }
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li .infor-txt {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: rgba(31, 31, 31, 0.6980392157);
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li .infor-txt {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    text-align: center;
    padding: 0 0.6rem;
  }
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li.show {
  z-index: 10;
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li.show .big_txt {
  opacity: 1;
  visibility: visible;
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li.show .title {
  opacity: 1;
  visibility: visible;
}
.y-product-detail-page .swiper-comparison-section .comparison-content .content-ul .content-li.show .infor-txt {
  opacity: 1;
  visibility: visible;
}
.y-product-detail-page .swiper-comparison-section .comparison-content .pagination-box {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  background: #FFFFFF;
  padding: 0.08rem 0.1rem;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content .pagination-box {
    bottom: auto;
    top: 53.2019704433vh;
    left: 50%;
    -webkit-transform: translate(-50%, calc(-100% - 0.3rem));
        -ms-transform: translate(-50%, calc(-100% - 0.3rem));
            transform: translate(-50%, calc(-100% - 0.3rem));
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
  }
}
.y-product-detail-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li {
  background: rgba(31, 31, 31, 0.15);
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.04rem;
  margin-right: 0.08rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
    margin-right: 0.1rem;
  }
}
.y-product-detail-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li:last-child {
  margin-right: 0;
}
.y-product-detail-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li.on {
  background: var(--sk-global-color);
  width: 0.33rem;
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .swiper-comparison-section .comparison-content .pagination-box .pagination-li.on {
    width: 0.52rem;
  }
}
.y-product-detail-page .smart__section {
  padding-top: 2.28rem;
  padding-bottom: 2.68rem;
  overflow: hidden;
}
.y-product-detail-page .smart__section .__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.y-product-detail-page .smart__section .__phone ._left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 2rem;
  padding-top: 0.6rem;
}
.y-product-detail-page .smart__section .__phone ._left .title {
  font-size: 0.96rem;
  line-height: 0.96rem;
}
.y-product-detail-page .smart__section .__phone ._left .title2 {
  font-size: 0.56rem;
  line-height: 0.96rem;
}
.y-product-detail-page .smart__section .__phone ._left .p_advs {
  margin-top: 1.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.38rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item {
  width: 2.91rem;
}
.y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .icon {
  max-width: 0.48rem;
  max-height: 0.48rem;
  margin-bottom: 0.35rem;
}
.y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .tit01,
.y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .tit02 {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .tit02 {
  color: rgba(31, 31, 31, 0.4);
}
.y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .txt {
  margin-top: 0.53rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.y-product-detail-page .smart__section .__phone ._right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 6.6rem;
  height: 10.66rem;
}
.y-product-detail-page .smart__section .__driving {
  margin-top: 2.45rem;
}
.y-product-detail-page .smart__section .__driving .wal .title,
.y-product-detail-page .smart__section .__driving .wal .title2 {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.y-product-detail-page .smart__section .__driving .wal .title2 {
  color: rgba(31, 31, 31, 0.4);
}
.y-product-detail-page .smart__section .__driving .wal .d_advs {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item {
  width: calc((100% - 0.3rem) / 4);
  background: #f4f4f5;
  border-radius: 0.1rem;
  overflow: hidden;
}
.y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1) * 100%);
}
.y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.3rem 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content .icon {
  position: static;
  max-width: 0.5rem;
  max-height: 0.5rem;
}
.y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content .btm_con .desc1 {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content .btm_con .desc2 {
  min-height: 0.42rem;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: rgba(31, 31, 31, 0.6980392157);
}
.y-product-detail-page .OTA__section {
  padding-top: 1.85rem;
  position: relative;
  overflow: hidden;
}
.y-product-detail-page .OTA__section .__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.y-product-detail-page .OTA__section .__bg .bg_block {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.y-product-detail-page .OTA__section .bg_block {
  width: 100%;
  background: -webkit-linear-gradient(top, #F4F4F5 5%, #E9E8ED 99%);
  background: linear-gradient(180deg, #F4F4F5 5%, #E9E8ED 99%);
}
.y-product-detail-page .OTA__section .bg_img {
  width: 100%;
  height: auto;
}
.y-product-detail-page .OTA__section .__update {
  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;
}
.y-product-detail-page .OTA__section .__update .left_cont {
  width: 6.5rem;
  padding-left: 2rem;
  margin-top: 2.09rem;
}
.y-product-detail-page .OTA__section .__update .left_cont .title,
.y-product-detail-page .OTA__section .__update .left_cont .title2 {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.y-product-detail-page .OTA__section .__update .left_cont .title2 {
  color: rgba(31, 31, 31, 0.4);
}
.y-product-detail-page .OTA__section .__update .left_cont .txt {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .OTA__section .__update .mid_img {
  margin-right: 0.75rem;
  width: 3.26rem;
  height: 8.08rem;
}
.y-product-detail-page .OTA__section .__update .right_img {
  margin-top: 1.15rem;
  margin-right: 1.65rem;
  width: 4rem;
  height: 4.8rem;
}
.y-product-detail-page .OTA__section .__screen {
  margin-top: 2.45rem;
}
.y-product-detail-page .OTA__section .__screen .wal .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
  text-align: center;
}
.y-product-detail-page .OTA__section .__screen .wal .desc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: center;
  opacity: 0.7;
}
.y-product-detail-page .OTA__section .__screen .wal .sc_advs {
  margin: 0 auto;
  margin-top: 0.8rem;
  width: 7.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.y-product-detail-page .OTA__section .__screen .wal .sc_advs .sc_adv_item {
  width: calc((100% - 0.2rem) / 3);
  height: 0.8rem;
  background: white;
  border-radius: 0.1rem;
  overflow: hidden;
  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;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .OTA__section .car_img {
  margin-top: 0.7rem;
  width: 100%;
  height: 7.12rem;
}
.y-product-detail-page .safe__section {
  overflow: hidden;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper {
  padding-top: 2.4rem;
  padding-bottom: 2.85rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
  font-size: 0.96rem;
  line-height: 0.96rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-head .title2 {
  font-size: 0.56rem;
  line-height: 0.96rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main {
  margin-top: 0.84rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  min-height: 7.2rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-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;
  width: 12.8rem;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.1rem;
  position: relative;
  background: #f4f4f5;
  border-radius: 0.1rem;
  overflow: hidden;
  color: #1f1f1f;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li[data-color=dark] {
  color: #ffffff;
  background: #000;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:last-child {
  margin-right: 0;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem;
  width: 100%;
  height: 100%;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .ctitle1 {
  font-size: 0.32rem;
  line-height: 0.42rem;
  opacity: 0.4;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .ctitle2 {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .ctext {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._left {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 4.8rem;
  margin-right: 1rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item .name {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (min-width: 800px) {
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item .name br {
    display: none;
  }
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item .desc {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.4;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item .tag {
  margin-top: 0.17rem;
  font-size: 0.14rem;
  line-height: 0.19rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom {
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img {
  position: relative;
  width: 3.8rem;
  height: 3.8rem;
  position: relative;
  margin-left: 0.23rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor {
  position: absolute;
  left: 2.16rem;
  top: 2.27rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .line {
  width: 2.77rem;
  height: 0.01rem;
  display: block;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .data_con {
  position: absolute;
  bottom: 0.22rem;
  right: 0;
  text-align: right;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .data_con .data {
  font-family: var(--sk-font-Medium);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .data_con .text {
  margin-top: 0.03rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img {
  position: relative;
  width: 4rem;
  height: 3.73rem;
  position: relative;
  margin-top: 0.08rem;
  margin-bottom: 0.32rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor {
  position: absolute;
  right: 2.77rem;
  top: 2.19rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .line {
  width: 2.77rem;
  height: 0.01rem;
  display: block;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .data_con {
  position: absolute;
  bottom: 0.22rem;
  left: 0;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .data_con .data {
  font-family: var(--sk-font-Medium);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .data_con .text {
  margin-top: 0.03rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._top .ctext {
  width: 4.8rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom {
  margin-top: 0.68rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.1rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__left,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__right {
  width: calc((100% - 0.1rem) / 2);
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__left img,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__right img {
  width: 100%;
  height: 3.43rem;
  object-fit: contain;
  border-radius: 0.1rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__left .name,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__right .name {
  margin-top: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  text-align: center;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 {
  background: #000;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .bg_img {
  width: 5.24rem;
  height: 7.2rem;
  position: absolute;
  right: 0.86rem;
  top: 0;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._top .ctext {
  width: 4.8rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom {
  margin-top: 0.88rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right {
  width: 2.4rem;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left img,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right img {
  width: 100%;
  height: 2.68rem;
  object-fit: contain;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left .title,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right .title {
  position: absolute;
  top: 0.14rem;
  left: 0;
  width: 100%;
  font-size: 0.18rem;
  line-height: 0.24rem;
  text-align: center;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left .name,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right .name {
  margin-top: 0.4rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: center;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left .tag,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right .tag {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  text-align: center;
  opacity: 0.6;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .content_con {
  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;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con {
  width: 5.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.08rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom {
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .bg_img,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .bg_img {
  width: 100%;
  height: 5.6rem;
  object-fit: cover;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .cont_con,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .cont_con {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4rem;
  padding: 0.3rem 0.3rem 0.53rem;
  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;
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: #fff;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .cont_con .data .val,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .cont_con .data .val {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .cont_con .data .text,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .cont_con .data .text {
  margin-top: 0.06rem;
  opacity: 0.6;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .bg_img {
  height: 4rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .bg_img {
  height: 4.41rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.04rem;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .prev,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .next {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.08rem;
  background-color: var(--c-bg-1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .prev:hover,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .next:hover {
  background-color: var(--c-bg-hover-1);
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .prev .svg,
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .next .svg {
  width: 0.2rem;
  height: 0.18rem;
  object-fit: contain;
}
.y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .next {
  margin-left: 0.1rem;
}
.y-product-detail-page .structure__section {
  overflow: hidden;
}
.y-product-detail-page .structure__section .container1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.y-product-detail-page .structure__section .container1 .bg_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 9.64rem;
}
.y-product-detail-page .structure__section .container1 .content {
  width: 8.4rem;
  padding-left: 2rem;
}
.y-product-detail-page .structure__section .container1 .content .title_box {
  margin-top: 0.8rem;
}
.y-product-detail-page .structure__section .container1 .content .title_box .ctitle1 {
  font-size: 0.42rem;
  line-height: 0.56rem;
  opacity: 0.4;
}
.y-product-detail-page .structure__section .container1 .content .title_box .ctitle2 {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.y-product-detail-page .structure__section .container1 .content .title_box .ctext {
  width: 4.8rem;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.y-product-detail-page .structure__section .container1 .content .area {
  margin-top: 2.04rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.y-product-detail-page .structure__section .container1 .content .area .item .data {
  font-size: 0.48rem;
  line-height: 0.56rem;
  font-family: var(--sk-font-Medium);
}
.y-product-detail-page .structure__section .container1 .content .area .item .data .other {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .structure__section .container1 .content .area .item .desc {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.y-product-detail-page .structure__section .container1 .content .area .item .name {
  margin-top: 0.36rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.y-product-detail-page .structure__section .container1 .img {
  width: 10.59rem;
  height: 10.5rem;
  margin-right: 0.21rem;
}
.y-product-detail-page .structure__section .container2 {
  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;
  position: relative;
  padding-top: 1.77rem;
}
.y-product-detail-page .structure__section .container2 .content {
  width: 9.23rem;
  padding-left: 2.09rem;
}
.y-product-detail-page .structure__section .container2 .content .title_box {
  margin-top: 1.9rem;
}
.y-product-detail-page .structure__section .container2 .content .title_box .ctitle1 {
  font-size: 0.42rem;
  line-height: 0.56rem;
  opacity: 0.4;
}
.y-product-detail-page .structure__section .container2 .content .title_box .ctitle2 {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.y-product-detail-page .structure__section .container2 .content .title_box .ctext {
  width: 4.8rem;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.y-product-detail-page .structure__section .container2 .content .area {
  margin-top: 1.63rem;
  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.55rem;
}
.y-product-detail-page .structure__section .container2 .content .area .item .desc {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.y-product-detail-page .structure__section .container2 .content .area .item .name {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.y-product-detail-page .structure__section .container2 .img {
  width: 9.64rem;
  height: 10.14rem;
  margin-left: 0.33rem;
}
.y-product-detail-page .product-color-type {
  padding: 1.27rem 0.1rem 0 0.1rem;
}
.y-product-detail-page .product-color-type .product-color-container {
  border-radius: 0.1rem;
  background: #d8d8d8;
  padding-top: 1.24rem;
  padding-bottom: 0.94rem;
  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;
}
.y-product-detail-page .product-color-type .product-color-container .stitle {
  text-align: center;
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: #1f1f1f;
}
.y-product-detail-page .product-color-type .product-color-container .img-box {
  margin-top: 0.69rem;
  width: 8.19rem;
  height: 7.75rem;
}
.y-product-detail-page .product-color-type .product-color-container .classify {
  margin-top: 0.27rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}
.y-product-detail-page .product-color-type .product-color-container .classify .classify_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;
}
.y-product-detail-page .product-color-type .product-color-container .classify .classify_item .title {
  font-size: 0.18rem;
  line-height: 0.24rem;
  margin-right: 0.1rem;
}
.y-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  padding: 0.1rem;
  background: #fff;
  border-radius: 0.28rem;
}
.y-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--p-color);
  cursor: pointer;
  position: relative;
}
.y-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
  content: "";
  display: block;
  border: 0.02rem solid #1f1f1f;
  border-top: none;
  border-right: none;
  width: 0.15rem;
  height: 0.09rem;
  position: absolute;
  left: 0.1rem;
  top: 0.09rem;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .y-product-detail-page .mileage__section {
    overflow: hidden;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper {
    padding-top: 1.2rem;
    padding-bottom: 2.4;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
    font-size: 0.96rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-head .title2 {
    font-size: 0.56rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main {
    margin-top: 0.6rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
    min-height: 14rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li {
    width: 100%;
    margin-right: 0.4rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.57rem 0.3rem 0.6rem;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-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;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top {
    text-align: center;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .title1 {
    font-size: 0.4rem;
    line-height: 0.53rem;
    opacity: 0.4;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .title2 {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .text {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
    padding: 0 0.2rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 {
    margin-top: 0;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data {
    background: white;
    border-radius: 0.1rem;
    overflow: hidden;
    padding: 0.32rem 0.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data .item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data .item .val {
    font-size: 0.36rem;
    line-height: 0.48rem;
    white-space: nowrap;
    font-family: var(--sk-font-Medium);
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .data .item .key {
    margin-top: 0.06rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area1 .tag {
    margin-top: 0.2rem;
    font-size: 0.2rem;
    line-height: 0.27rem;
    text-align: center;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 {
    margin-top: 0.87rem;
    padding: 0 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-column-gap: 0.6rem;
       -moz-column-gap: 0.6rem;
            column-gap: 0.6rem;
    row-gap: 0.38rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 .item {
    width: 0.96rem;
    text-align: center;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 .item .icon {
    width: 0.56rem;
    height: 0.56rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area2 .item .key {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 {
    margin-top: 0;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
    padding: 0 0.5rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item {
    width: 1.08rem;
    text-align: center;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .h {
    font-size: 0.56rem;
    line-height: 0.74rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .type {
    margin-top: 0.06rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.6;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .tr {
    margin-top: 0.38rem;
    width: 0;
    height: 0;
    border-left: 0.1rem solid transparent;
    /* 左侧透明 */
    border-right: 0.1rem solid transparent;
    /* 右侧透明 */
    border-top: 0.18rem solid black;
    /* 顶部黑色 */
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area3 .item .text {
    margin-top: 0.25rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area4 {
    margin-top: 1.34rem;
    margin-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area4 .decorate_img {
    width: 3.75rem;
    height: 0.68rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .area4 .text {
    margin-top: 0.27rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    text-align: center;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .img {
    width: 4.41rem;
    height: 4.84rem;
    right: 50%;
    top: 2.79rem;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    bottom: unset;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .img {
    width: 100%;
    height: 5.2rem;
    right: 0;
    bottom: unset;
    top: 3.86rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 ._top .text {
    padding: 0 0.3rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con {
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .img {
    width: 100%;
    height: 9.23rem;
    right: 0;
    bottom: 0;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow {
    margin-top: 1.34rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .prev,
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .next {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .prev .svg,
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .next .svg {
    width: 0.28rem;
    height: 0.88rem;
  }
  .y-product-detail-page .mileage__section .innovation_lab__section-wrapper .-arrow .next {
    margin-left: 0.2rem;
  }
  .y-product-detail-page .space__section {
    padding: 2.4rem 0 2.65rem 0;
    background: -webkit-linear-gradient(top, #E6E7EB 0%, #B6B7BE 100%);
    background: linear-gradient(180deg, #E6E7EB 0%, #B6B7BE 100%);
    color: #1F1F1F;
    position: relative;
    overflow: hidden;
  }
  .y-product-detail-page .space__section .title_box {
    position: static;
    text-align: center;
  }
  .y-product-detail-page .space__section .title_box .title {
    font-size: 0.96rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .space__section .title_box .title2 {
    font-size: 0.56rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .space__section .adv_list .item {
    position: relative;
  }
  .y-product-detail-page .space__section .adv_list .item .left_content {
    position: absolute;
  }
  .y-product-detail-page .space__section .adv_list .item .left_content .name {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .y-product-detail-page .space__section .adv_list .item .left_content .text {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .y-product-detail-page .space__section .adv_list .item .right_img {
    position: absolute;
  }
  .y-product-detail-page .space__section .adv_list .item .right_img .anchor-img {
    object-fit: contain;
  }
  .y-product-detail-page .space__section .adv_list .item .right_img .anchor {
    position: absolute;
  }
  .y-product-detail-page .space__section .adv_list .item .right_img .anchor .line {
    display: block;
  }
  .y-product-detail-page .space__section .adv_list .item .right_img .anchor .data_con {
    position: absolute;
  }
  .y-product-detail-page .space__section .adv_list .item .right_img .anchor .data_con .data {
    font-family: var(--sk-font-Medium);
    font-size: 0.56rem;
    line-height: 0.56rem;
  }
  .y-product-detail-page .space__section .adv_list .item .right_img .anchor .data_con .text {
    margin-top: 0.2rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .space__section .adv_list .item.wheel_base {
    height: 13.71rem;
  }
  .y-product-detail-page .space__section .adv_list .item.wheel_base .left_content {
    width: calc(100% - 0.8rem);
    left: 0.4rem;
    top: 1.08rem;
  }
  .y-product-detail-page .space__section .adv_list .item.wheel_base .right_img {
    width: 6.7rem;
    height: 9.44rem;
    right: 0;
    top: 2.83rem;
  }
  .y-product-detail-page .space__section .adv_list .item.wheel_base .right_img .anchor {
    top: 5.35rem;
    left: 1.52rem;
  }
  .y-product-detail-page .space__section .adv_list .item.wheel_base .right_img .anchor .line {
    width: 4.79rem;
    height: 5.52rem;
  }
  .y-product-detail-page .space__section .adv_list .item.wheel_base .right_img .anchor .data_con {
    bottom: 0.95rem;
    left: 0.3rem;
  }
  .y-product-detail-page .space__section .adv_list .item.pedal {
    height: 14rem;
  }
  .y-product-detail-page .space__section .adv_list .item.pedal .left_content {
    width: calc(100% - 0.8rem);
    right: 0.4rem;
    top: 1rem;
    text-align: right;
  }
  .y-product-detail-page .space__section .adv_list .item.pedal .right_img {
    width: 7.1rem;
    height: 10.71rem;
    left: 0;
    top: 3rem;
  }
  .y-product-detail-page .space__section .adv_list .item.pedal .right_img .anchor {
    top: 5.38rem;
    left: 5.15rem;
  }
  .y-product-detail-page .space__section .adv_list .item.pedal .right_img .anchor .line {
    width: 0.01rem;
    height: 5.52rem;
  }
  .y-product-detail-page .space__section .adv_list .item.pedal .right_img .anchor .data_con {
    bottom: 0.32rem;
    right: 0.3rem;
    text-align: right;
  }
  .y-product-detail-page .space__section .adv_list .item.seat_cask {
    height: 12rem;
  }
  .y-product-detail-page .space__section .adv_list .item.seat_cask .left_content {
    width: calc(100% - 0.8rem);
    left: 0.4rem;
    top: 1rem;
  }
  .y-product-detail-page .space__section .adv_list .item.seat_cask .right_img {
    width: 100%;
    height: 5.23rem;
    right: 0;
    top: 3.24rem;
  }
  .y-product-detail-page .space__section .adv_list .item.seat_cask .right_img .anchor {
    top: 3.53rem;
    right: 4.4rem;
  }
  .y-product-detail-page .space__section .adv_list .item.seat_cask .right_img .anchor .line {
    width: 0.01rem;
    height: 4.61rem;
  }
  .y-product-detail-page .space__section .adv_list .item.seat_cask .right_img .anchor .data_con {
    bottom: 0.3rem;
    left: 0.3rem;
  }
  .y-product-detail-page .sofa__section {
    padding: 2.4rem 0 1.8rem;
  }
  .y-product-detail-page .sofa__section .wal .title {
    text-align: center;
    font-size: 0.96rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .sofa__section .wal .title2 {
    text-align: center;
    font-size: 0.56rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap {
    margin-top: 0.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.4rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li {
    width: 100%;
    background: #f4f4f5;
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.6119402985) * 100%);
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .bg-img-box {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .bg-img-box .bg-img {
    object-fit: contain;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0.3rem;
    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: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    color: #1F1F1F;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._top {
    font-size: 0.4rem;
    line-height: 0.53rem;
    margin-bottom: 1rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._top .ctitle1 {
    opacity: 0.4;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._bottom .adv_item:not(:last-child) {
    margin-bottom: 0.3rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._bottom .adv_item .name {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li .p_wrapper .content-box ._bottom .adv_item .text {
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.type1 .p_wrapper .bg-img-box {
    width: 4.74rem;
    height: 3.73rem;
    right: 0;
    bottom: 0;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.type2 .p_wrapper .bg-img-box {
    width: 100%;
    height: 7.69rem;
    right: 0;
    bottom: 1rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide {
    width: 100%;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.9104477612) * 100%);
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box {
    -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;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right {
    padding: 0.6rem 0.55rem;
    height: 5.39rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.1rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item {
    height: 1.85rem;
    width: 2.9rem;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.2rem;
    --text-color: #fff;
    color: var(--text-color);
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item:nth-child(3) {
    height: 3.8rem;
    width: 2rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .name {
    position: relative;
    z-index: 1;
    font-size: 0.18rem;
    line-height: 0.24rem;
    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;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .name .num {
    font-size: 1.08rem;
    line-height: 0.96rem;
    font-family: var(--sk-font-Num);
    position: relative;
    top: -0.15rem;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .content-box ._right .Level_item .text {
    position: relative;
    z-index: 1;
    font-size: 0.24rem;
    line-height: 0.32rem;
    text-align: right;
  }
  .y-product-detail-page .sofa__section .wal .flex-wrap .card-li.isWide .p_wrapper .bg-img-box {
    width: 100%;
    height: 5.37rem;
    right: 0;
    bottom: unset;
    top: 1.6rem;
  }
  .y-product-detail-page .power__section .title_box {
    position: static;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    text-align: center;
  }
  .y-product-detail-page .power__section .title_box .title {
    font-size: 0.96rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .power__section .title_box .title2 {
    font-size: 0.56rem;
    line-height: 0.96rem;
  }
  .y-product-detail-page .power__section ._kw {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 11rem;
    background: -webkit-linear-gradient(top, #E6E7EB 0%, rgba(182, 183, 190, 0) 99%);
    background: linear-gradient(180deg, #E6E7EB 0%, rgba(182, 183, 190, 0) 99%);
  }
  .y-product-detail-page .power__section ._kw .right_img {
    position: relative;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .y-product-detail-page .power__section ._kw .right_img .anchor {
    position: absolute;
    right: 4.3rem;
    top: 2.5rem;
  }
  .y-product-detail-page .power__section ._kw .right_img .anchor .line {
    width: 0.01rem;
    height: 3.72rem;
    display: block;
  }
  .y-product-detail-page .power__section ._kw .right_img .anchor .data_con {
    position: absolute;
    bottom: 0.83rem;
    left: 0.3rem;
  }
  .y-product-detail-page .power__section ._kw .right_img .anchor .data_con .data {
    font-family: var(--sk-font-Medium);
    font-size: 0.56rem;
    line-height: 0.56rem;
  }
  .y-product-detail-page .power__section ._kw .right_img .anchor .data_con .text {
    margin-top: 0.19rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .power__section ._kw .right_img .anchor .tag_txt {
    position: absolute;
    top: unset;
    bottom: 0.3rem;
    left: 0.3rem;
    font-size: 0.2rem;
    line-height: 0.27rem;
  }
  .y-product-detail-page .power__section ._kw .em_title {
    margin-top: 0;
    margin-bottom: 0.6rem;
  }
  .y-product-detail-page .power__section ._kw .em_title .title {
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .y-product-detail-page .power__section ._kw .em_title .decs {
    margin-top: 0.24rem;
    text-align: center;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .y-product-detail-page .smart__section {
    padding-top: 2.4rem;
    padding-bottom: 2.02rem;
  }
  .y-product-detail-page .smart__section .__phone {
    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;
  }
  .y-product-detail-page .smart__section .__phone ._left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    padding-top: 0;
    text-align: center;
  }
  .y-product-detail-page .smart__section .__phone ._left .p_advs {
    margin-top: 1.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
    padding: 0 0.5rem;
  }
  .y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item {
    width: 100%;
  }
  .y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .icon {
    max-width: 0.7rem;
    max-height: 0.7rem;
    margin-bottom: 0.32rem;
  }
  .y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .tit01,
  .y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .tit02 {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .y-product-detail-page .smart__section .__phone ._left .p_advs .p_adv_item .txt {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .y-product-detail-page .smart__section .__phone ._right {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 6.6rem;
    height: 10.66rem;
    margin: 0 auto;
    margin-top: 1.24rem;
  }
  .y-product-detail-page .smart__section .__driving {
    margin-top: 1.8rem;
  }
  .y-product-detail-page .smart__section .__driving .wal .title,
  .y-product-detail-page .smart__section .__driving .wal .title2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    text-align: center;
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs {
    margin-top: 0.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.1rem;
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item {
    width: 100%;
    background: #f4f4f5;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((0.5552238806) * 100%);
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.53rem 0.3rem 0.3rem;
    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;
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content .icon {
    position: static;
    max-width: 0.7rem;
    max-height: 0.7rem;
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content .btm_con .desc1 {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .y-product-detail-page .smart__section .__driving .wal .d_advs .d_adv_item .con_wrapper .content .btm_con .desc2 {
    min-height: unset;
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .y-product-detail-page .OTA__section {
    padding-top: 1.78rem;
  }
  .y-product-detail-page .OTA__section .__update {
    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;
  }
  .y-product-detail-page .OTA__section .__update .left_cont {
    width: 100%;
    padding-left: unset;
    padding: 0 0.5rem;
    margin-top: 0;
    text-align: center;
  }
  .y-product-detail-page .OTA__section .__update .left_cont .title,
  .y-product-detail-page .OTA__section .__update .left_cont .title2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .y-product-detail-page .OTA__section .__update .left_cont .txt {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .y-product-detail-page .OTA__section .__update .mid_img {
    position: absolute;
    left: 0.89rem;
    top: 5.39rem;
    width: 1.32rem;
    height: 3.27rem;
  }
  .y-product-detail-page .OTA__section .__update .right_img {
    margin-top: 0.9rem;
    margin-right: 0.41rem;
    margin-left: auto;
    width: 4.74rem;
    height: 5.61rem;
  }
  .y-product-detail-page .OTA__section .__screen {
    margin-top: 1.68rem;
  }
  .y-product-detail-page .OTA__section .__screen .wal .title {
    font-size: 0.48rem;
    line-height: 0.56rem;
    text-align: center;
  }
  .y-product-detail-page .OTA__section .__screen .wal .desc {
    margin-top: 0.24rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    text-align: center;
    opacity: 0.7;
  }
  .y-product-detail-page .OTA__section .__screen .wal .sc_advs {
    margin: 0 auto;
    margin-top: 0.6rem;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.1rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .y-product-detail-page .OTA__section .__screen .wal .sc_advs .sc_adv_item {
    width: 3rem;
    height: 1rem;
    border-radius: 0.16rem;
    overflow: hidden;
    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;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .y-product-detail-page .OTA__section .car_img {
    margin-top: 1.44rem;
    width: 100%;
    height: 5.49rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper {
    padding-top: 2.4rem;
    padding-bottom: 0.44rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main {
    margin-top: 0.6rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
    min-height: 14rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li {
    width: 100%;
    margin-right: 0.4rem;
    border-radius: 0.16rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.58rem 0.3rem;
    width: 100%;
    height: 100%;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .ctitle1 {
    font-size: 0.4rem;
    line-height: 0.53rem;
    opacity: 0.4;
    text-align: center;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .ctitle2 {
    font-size: 0.4rem;
    line-height: 0.53rem;
    text-align: center;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con .ctext {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
    text-align: center;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._left {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 100%;
    margin-right: 0;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right {
    width: 100%;
    padding: 0 0.68rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6rem;
    position: absolute;
    bottom: 0.82rem;
    left: 0;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    text-align: center;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item .name {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item .desc {
    margin-top: 0.06rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.4;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._top ._right .item .tag {
    margin-top: 0.2rem;
    font-size: 0.2rem;
    line-height: 0.27rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom {
    margin-top: 0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img {
    position: relative;
    width: 3.34rem;
    height: 3.34rem;
    position: relative;
    margin-left: 0;
    margin-bottom: 0;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor {
    position: absolute;
    left: 2rem;
    top: 2.1rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .line {
    width: 4.1rem;
    height: 0.01rem;
    display: block;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .data_con {
    position: absolute;
    bottom: 0.2rem;
    right: 0;
    text-align: right;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .data_con .data {
    font-family: var(--sk-font-Medium);
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .left_img .anchor .data_con .text {
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img {
    position: relative;
    width: 3.24rem;
    height: 2.94rem;
    position: relative;
    margin-top: 0.5rem;
    margin-bottom: 0;
    margin-left: auto;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor {
    position: absolute;
    right: 2.28rem;
    top: 2rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .line {
    width: 3.82rem;
    height: 0.01rem;
    display: block;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .data_con {
    position: absolute;
    bottom: 0.2rem;
    left: 0;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .data_con .data {
    font-family: var(--sk-font-Medium);
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type1 .content_con ._bottom .right_img .anchor .data_con .text {
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._top .ctext {
    width: 100%;
    padding: 0 0.11rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom {
    margin-top: 1.17rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__left,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__right {
    width: 100%;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__left img,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__right img {
    width: 100%;
    height: 3.51rem;
    object-fit: contain;
    border-radius: 0.16rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__left .name,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type2 .content_con ._bottom .__right .name {
    margin-top: 0.23rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    text-align: center;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .bg_img {
    width: 100%;
    height: 6.11rem;
    position: absolute;
    right: 0;
    top: 2.89rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con {
    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;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._top .ctext {
    width: 100%;
    padding: 0 0.1rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom {
    margin-top: 0.88rem;
    padding-bottom: 0.27rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.1rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right {
    width: 2.7rem;
    position: relative;
    border-radius: 0.16rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left img,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right img {
    width: 100%;
    height: 3rem;
    object-fit: contain;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left .title,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right .title {
    position: absolute;
    top: 0.23rem;
    left: 0;
    width: 100%;
    font-size: 0.24rem;
    line-height: 0.32rem;
    text-align: center;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left .name,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right .name {
    margin-top: 0.3rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
    text-align: center;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__left .tag,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type3 .content_con ._bottom .__right .tag {
    margin-top: 0.06rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    text-align: center;
    opacity: 0.6;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 ._top .ctext {
    padding: 0 0.1rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .content_con {
    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;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    padding-bottom: 0;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom {
    width: 100%;
    position: relative;
    border-radius: 0.16rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .bg_img,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .bg_img {
    width: 100%;
    height: 3.5rem;
    object-fit: cover;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .cont_con,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .cont_con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3.5rem;
    padding: 0.3rem 0.3rem;
    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;
    font-size: 0.26rem;
    line-height: 0.34rem;
    color: #fff;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .cont_con .data .val,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .cont_con .data .val {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .cont_con .data .text,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .cont_con .data .text {
    font-size: 0.24rem;
    line-height: 0.32rem;
    margin-top: 0.06rem;
    opacity: 0.6;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom {
    margin-top: 0.4rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .left_content_con ._bottom .bg_img {
    height: 3.5rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom {
    margin-top: 0.2rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li.type4 .right_content_con ._bottom .bg_img {
    height: 3.83rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow {
    margin-top: 1.34rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .prev,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .next {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .prev .svg,
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .next .svg {
    width: 0.28rem;
    height: 0.88rem;
  }
  .y-product-detail-page .safe__section .innovation_lab__section-wrapper .-arrow .next {
    margin-left: 0.2rem;
  }
  .y-product-detail-page .structure__section .container1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    height: 14.93rem;
  }
  .y-product-detail-page .structure__section .container1 .bg_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .y-product-detail-page .structure__section .container1 .content {
    width: 100%;
    height: 100%;
    padding-left: 0;
    padding: 1.56rem 0.4rem 1.96rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .y-product-detail-page .structure__section .container1 .content .title_box {
    margin-top: 0;
  }
  .y-product-detail-page .structure__section .container1 .content .title_box .ctitle1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    opacity: 0.4;
  }
  .y-product-detail-page .structure__section .container1 .content .title_box .ctitle2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .y-product-detail-page .structure__section .container1 .content .title_box .ctext {
    width: 4.25rem;
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .y-product-detail-page .structure__section .container1 .content .area {
    margin-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  .y-product-detail-page .structure__section .container1 .content .area .item .data {
    font-size: 0.48rem;
    line-height: 0.56rem;
    font-family: var(--sk-font-Medium);
  }
  .y-product-detail-page .structure__section .container1 .content .area .item .data .other {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .structure__section .container1 .content .area .item .desc {
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .y-product-detail-page .structure__section .container1 .content .area .item .name {
    margin-top: 0.25rem;
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
  .y-product-detail-page .structure__section .container1 .img {
    width: 100%;
    height: 7.82rem;
    margin-right: 0;
    position: absolute;
    right: 0;
    top: 2.68rem;
  }
  .y-product-detail-page .structure__section .container2 {
    height: 16.85rem;
    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;
    position: relative;
    padding-top: 0;
  }
  .y-product-detail-page .structure__section .container2 .content {
    width: 100%;
    padding-left: 0;
    padding: 1.95rem 0.4rem 0.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .y-product-detail-page .structure__section .container2 .content .title_box {
    margin-top: 0;
  }
  .y-product-detail-page .structure__section .container2 .content .title_box .ctitle1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
    opacity: 0.4;
  }
  .y-product-detail-page .structure__section .container2 .content .title_box .ctitle2 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .y-product-detail-page .structure__section .container2 .content .area {
    margin-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.42rem;
  }
  .y-product-detail-page .structure__section .container2 .content .area .item .desc {
    margin-top: 0.1rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .y-product-detail-page .structure__section .container2 .content .area .item .name {
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .y-product-detail-page .structure__section .container2 .img {
    width: 100%;
    height: 11.48rem;
    margin-left: 0;
    position: absolute;
    left: 0;
    top: 0.25rem;
  }
  .y-product-detail-page .product-color-type {
    padding: 1.8rem 0.1rem 0 0.1rem;
  }
  .y-product-detail-page .product-color-type .product-color-container {
    border-radius: 0.1rem;
    background: #d8d8d8;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .y-product-detail-page .product-color-type .product-color-container .stitle {
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.64rem;
    color: #1f1f1f;
  }
  .y-product-detail-page .product-color-type .product-color-container .img-box {
    margin-top: 1.6rem;
    width: 6.66rem;
    height: 6.32rem;
  }
  .y-product-detail-page .product-color-type .product-color-container .classify {
    margin-top: 0.87rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.6rem;
  }
  .y-product-detail-page .product-color-type .product-color-container .classify .classify_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.2rem;
  }
  .y-product-detail-page .product-color-type .product-color-container .classify .classify_item .title {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .y-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.15rem;
    padding: 0.15rem;
    background: #fff;
    border-radius: 0.42rem;
  }
  .y-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 50%;
    background: var(--p-color);
    cursor: pointer;
    position: relative;
  }
  .y-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
    content: "";
    display: block;
    border: 0.02rem solid #1f1f1f;
    border-top: none;
    border-right: none;
    width: 0.24rem;
    height: 0.15rem;
    position: absolute;
    left: 0.14rem;
    top: 0.12rem;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.k95c-product-detail-page .banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.k95c-product-detail-page .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.k95c-product-detail-page .banner-section .wal {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .banner-section .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.k95c-product-detail-page .banner-section .wal .content-box {
  color: #000000;
  padding-bottom: 0.23rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .banner-section .wal .content-box {
    padding-bottom: 0;
    padding-top: 2.95rem;
  }
}
.k95c-product-detail-page .banner-section .wal .content-box .p_type {
  width: auto;
  height: 1.12rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .banner-section .wal .content-box .p_type {
    width: 100%;
    height: auto;
  }
}
.k95c-product-detail-page .banner-section .wal .content-box .h1 {
  margin-top: 0.3rem;
  font-size: 0.56rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .banner-section .wal .content-box .h1 {
    margin-top: 0.5rem;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
}
.k95c-product-detail-page .banner-section .wal .content-box .btn {
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .banner-section .wal .content-box .btn {
    margin-top: 0.64rem;
  }
}
.k95c-product-detail-page .card_list_section {
  background: #000000;
  padding-top: 1rem;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section {
    padding-top: 1.2rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl {
  padding-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1.2rem;
    gap: 1.2rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .power {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .power .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list {
  width: 100%;
  margin-top: 0.48rem;
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li {
  --bg-color: rgb(0, 0, 0);
  --color: #ffffff;
  display: block;
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: var(--bg-color);
  color: var(--color);
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li {
    border-radius: 0.16rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1) * 100%);
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .bg-img-box .bg-img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 2.3rem;
  height: 100%;
  color: var(--color);
  padding-right: 0.62rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box {
    min-width: 2.17rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box .kv_box .item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box .kv_box .item .key {
  font-size: 0.48rem;
  line-height: 0.67rem;
  font-family: var(--sk-font-Num);
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box .kv_box .item .key .unit {
  font-size: 0.32rem;
  line-height: 0.67rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box .kv_box .item .key {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box .kv_box .item .key .unit {
    line-height: 0.64rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box .kv_box .item .value {
  font-size: 0.18rem;
  line-height: 0.24rem;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li .content-box .kv_box .item .value {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
@media screen and (min-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .power .card_list .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list {
  width: 100%;
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list {
    gap: 0.2rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li {
  --bg-color: rgb(0, 0, 0);
  --color: #ffffff;
  display: block;
  width: calc((100% - 0.1rem) / 2);
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: var(--bg-color);
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li {
    width: calc((100% - 0.2rem) / 2);
    border-radius: 0.16rem;
  }
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1) * 100%);
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(3) {
  width: 100%;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(3) .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.5) * 100%);
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(3) .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li .bg-img-box .bg-img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li .content-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.3rem;
  color: var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li .content-box .info_text {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(2) .content-box {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(3) .content-box {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li .content-box .info_text {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(1) .content-box .info_text {
    max-width: 1.3rem;
  }
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(2) .content-box .info_text {
    max-width: 0.96rem;
  }
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:nth-child(3) .content-box .info_text {
    max-width: 2rem;
  }
}
@media screen and (min-width: 800px) {
  .k95c-product-detail-page .card_list_section .power_driveControl .drive .card_list .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k95c-product-detail-page .card_list_section .batteryLife {
  padding-top: 1rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife {
    padding-top: 1.2rem;
  }
}
.k95c-product-detail-page .card_list_section .batteryLife .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list {
  width: 100%;
  margin-top: 0.48rem;
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li {
  --bg-color: rgb(0, 0, 0);
  --color: #ffffff;
  display: block;
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: var(--bg-color);
  color: var(--color);
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li {
    border-radius: 0.16rem;
  }
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.4453947368) * 100%);
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((0.776119403) * 100%);
  }
  .k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .bg-img-box .bg-img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .content-box {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 2.96rem;
  height: 100%;
  color: var(--color);
  padding-right: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .content-box {
    padding-right: 0.5rem;
    min-width: 2.66rem;
  }
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .content-box .kv_box .item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .content-box .kv_box .item .key {
  font-size: 0.48rem;
  line-height: 0.67rem;
  font-family: var(--sk-font-Num);
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .content-box .kv_box .item .key {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .content-box .kv_box .item .value {
  font-size: 0.18rem;
  line-height: 0.24rem;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li .content-box .kv_box .item .value {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
@media screen and (min-width: 800px) {
  .k95c-product-detail-page .card_list_section .batteryLife .card_list .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k95c-product-detail-page .card_list_section .smart {
  padding-top: 1rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart {
    padding-top: 1.2rem;
  }
}
.k95c-product-detail-page .card_list_section .smart .title {
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.k95c-product-detail-page .card_list_section .smart .card_list {
  width: 100%;
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .card_list {
    gap: 0.2rem;
  }
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li {
  --bg-color: rgb(0, 0, 0);
  --color: #ffffff;
  display: block;
  width: calc((100% - 0.2rem) / 3);
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  background: var(--bg-color);
  color: var(--color);
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li {
    width: calc((100% - 0.2rem) / 2);
    border-radius: 0.16rem;
  }
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.744) * 100%);
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1) * 100%);
  }
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li .bg-img-box .bg-img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li .content-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li .content-box .info_text {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li .content-box .info_text {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(1), .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(4) {
  width: calc((100% - 0.2rem) / 3 * 2);
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(1) .p_wrapper, .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(4) .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.3683168317) * 100%);
}
.k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(1) .p_wrapper img, .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(4) .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(1), .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(4) {
    width: 100%;
  }
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(1) .p_wrapper, .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(4) .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((0.4925373134) * 100%);
  }
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(1) .p_wrapper img, .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(4) .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li {
    text-align: right;
  }
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li:nth-child(2) .content-box {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
@media screen and (min-width: 800px) {
  .k95c-product-detail-page .card_list_section .smart .card_list .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k95c-product-detail-page .batteryLife_section {
  position: relative;
  background-color: #000000;
  padding-bottom: 2.66rem;
}
.k95c-product-detail-page .batteryLife_section .bg-img {
  width: 100%;
  height: auto;
}
.k95c-product-detail-page .batteryLife_section .content {
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 7.51rem;
  padding-top: 3.2rem;
}
.k95c-product-detail-page .batteryLife_section .content .stitle {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k95c-product-detail-page .batteryLife_section .content .desc {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.k95c-product-detail-page .batteryLife_section .content .kv_box1 {
  margin-top: 1.41rem;
}
.k95c-product-detail-page .batteryLife_section .content .kv_box1 .item:not(:last-child) {
  margin-bottom: 0.6rem;
}
.k95c-product-detail-page .batteryLife_section .content .kv_box1 .item .key {
  font-size: 0.84rem;
  line-height: 1.18rem;
  font-family: var(--sk-font-Num);
}
.k95c-product-detail-page .batteryLife_section .content .kv_box1 .item .value {
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k95c-product-detail-page .batteryLife_section .content .kv_box2 {
  margin-top: 4.09rem;
}
.k95c-product-detail-page .batteryLife_section .content .kv_box2 .item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.k95c-product-detail-page .batteryLife_section .content .kv_box2 .item .key {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .batteryLife_section .content .kv_box2 .item .value {
  font-size: 0.16rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k95c-product-detail-page .batteryLife_section .card {
  width: 100%;
  margin-top: -0.5rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.4736842105) * 100%);
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.62rem 0.61rem;
  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;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .ctitle {
  margin-top: 0.48rem;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .desc {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  max-width: 3.58rem;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .kv_box {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .kv_box .item .key {
  font-size: 0.48rem;
  line-height: 0.67rem;
  font-family: var(--sk-font-Num);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .kv_box .item .key .unit {
  font-size: 0.24rem;
  line-height: 0.48rem;
}
.k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .kv_box .item .value {
  font-size: 0.18rem;
  line-height: 0.24rem;
  opacity: 0.7;
}
.k95c-product-detail-page .driving_control {
  position: relative;
  background-color: #000000;
  padding-bottom: 2.4rem;
}
.k95c-product-detail-page .driving_control .bg-img {
  width: 100%;
  height: auto;
}
.k95c-product-detail-page .driving_control .content {
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  padding-top: 2.61rem;
  padding-left: 2rem;
}
.k95c-product-detail-page .driving_control .content .stitle {
  font-size: 0.64rem;
  line-height: 0.85rem;
}
.k95c-product-detail-page .driving_control .content .adv_title {
  margin-top: 4.26rem;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k95c-product-detail-page .driving_control .content .adv_desc {
  max-width: 3.38rem;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.k95c-product-detail-page .driving_control .content .adv_list {
  margin-top: 0.71rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.k95c-product-detail-page .driving_control .content .adv_list .adv_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.k95c-product-detail-page .driving_control .content .adv_list .adv_item .icon {
  width: 0.62rem;
  height: 0.62rem;
}
.k95c-product-detail-page .driving_control .content .adv_list .adv_item .name {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.k95c-product-detail-page .driving_control .card_list {
  margin-top: -1.43rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.k95c-product-detail-page .driving_control .card_list .card {
  width: calc((100% - 0.1rem) / 2);
  border-radius: 0.1rem;
  overflow: hidden;
  --color: #1F1F1F;
  color: var(--color);
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1) * 100%);
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.45rem 0.45rem 0.47rem 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box .ctype {
  margin-top: 0.93rem;
  font-size: 1.28rem;
  line-height: 1.7rem;
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box .cname {
  margin-top: auto;
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box .cdesc {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.k95c-product-detail-page .driving_control .card_list .card:nth-child(2n) .p_wrapper .content-box .ctype {
  text-align: right;
}
.k95c-product-detail-page .driving_control .innovation_lab__section {
  background: #000000;
  overflow: hidden;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper {
  padding-top: 2.51rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
  font-size: 0.72rem;
  line-height: 0.96rem;
  color: white;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main {
  margin-top: 0.64rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  min-height: 7.2rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-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;
  width: 12.8rem;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.1rem;
  position: relative;
  background: #181819;
  border-radius: 0.1rem;
  overflow: hidden;
  color: #FFFFFF;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li[data-color=dark] {
  color: #000000;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:last-child {
  margin-right: 0;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem 0.4rem 0.6rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .name {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .desc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .text {
  margin-top: 0.32rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
  max-width: 5rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._middle {
  margin-top: 0.6rem;
  font-size: 0.96rem;
  line-height: 1.27rem;
  padding-right: 1.29rem;
  text-align: center;
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.8rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .val {
  font-size: 0.48rem;
  line-height: 0.67rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .val .unit {
  font-size: 0.32rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .key {
  font-size: 0.18rem;
  line-height: 0.24rem;
  opacity: 0.7;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.8rem;
  color: #ffffff;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs .adv_item .icon {
  width: 0.62rem;
  height: 0.62rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs .adv_item .name {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs .adv_item .desc {
  max-width: 2.74rem;
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li:first-child .content_con ._bottom {
  color: #1F1F1F;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.04rem;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev,
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.08rem;
  background-color: var(--c-bg-1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev:hover,
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next:hover {
  background-color: var(--c-bg-hover-1);
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev .svg,
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next .svg {
  width: 0.2rem;
  height: 0.18rem;
  object-fit: contain;
}
.k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
  margin-left: 0.1rem;
}
.k95c-product-detail-page .smart_screen_section {
  background: #000;
}
.k95c-product-detail-page .smart_screen_section .comparison-section {
  padding: 0 0.1rem;
  background: #000000;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box {
  position: relative;
  height: calc(200vh - 0.2rem);
  overflow: hidden;
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0.16rem;
  }
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer {
  position: absolute;
  width: 100%;
  height: calc(100vh - 0.2rem);
  top: 0;
  left: 0;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer {
    position: relative;
    border-radius: 0.16rem;
  }
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer:first-child {
    height: 18.54rem;
  }
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer:first-child .layer-content {
    height: 18.54rem;
  }
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer:last-child {
    height: 16.04rem;
    margin-top: 0.1rem;
  }
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer:last-child .layer-content {
    height: 16.04rem;
  }
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none;
  transition: none;
  --color: #ffffff;
  --background: #0C0A09FF;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content._isWhite {
  --color: #1F1F1FFF;
  --background: #D8D8D8FF;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content {
  background: var(--background);
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box {
  position: relative;
  height: 100%;
  width: 100%;
  color: var(--color);
  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;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box {
    text-align: center;
    padding: 0 0.42rem;
  }
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box._center {
  text-align: center;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box._center .text {
  margin: 0 auto;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .h2 {
  margin-top: 1.32rem;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .h2 {
    margin-top: 1rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .text {
  padding-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
  max-width: 5.96rem;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .infor-box .text {
    margin-top: 0.36rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    max-width: unset;
  }
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box {
  margin-top: auto;
  padding-bottom: 1.14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.8rem;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box .adv_item .icon {
  width: 0.62rem;
  height: 0.62rem;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box .adv_item .name {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box .adv_item .desc {
  max-width: 2.53rem;
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box {
    row-gap: 0.6rem;
    -webkit-column-gap: 0.66rem;
       -moz-column-gap: 0.66rem;
            column-gap: 0.66rem;
    padding: 0 0.1rem;
    padding-bottom: 0.85rem;
  }
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box .adv_item .icon {
    width: 1rem;
    height: 1rem;
  }
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box .adv_item .name {
    margin-top: 0.2rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .k95c-product-detail-page .smart_screen_section .comparison-section .comparison-box .image-layer .layer-content .content-box .adv_box .adv_item .desc {
    max-width: unset;
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
}
.k95c-product-detail-page .smart_screen_section .adv_section {
  padding-top: 1.56rem;
  padding-bottom: 0.83rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
}
.k95c-product-detail-page .smart_screen_section .adv_section .adv_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.k95c-product-detail-page .smart_screen_section .adv_section .adv_item .icon {
  width: 0.62rem;
  height: 0.62rem;
}
.k95c-product-detail-page .smart_screen_section .adv_section .adv_item .name {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .smart_screen_section .adv_section .adv_item .desc {
  max-width: 1.96rem;
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.k95c-product-detail-page .smart_screen_section .banner-section {
  background-color: #000000;
}
.k95c-product-detail-page .smart_ride_section {
  padding-top: 2.75rem;
  padding-bottom: 2.4rem;
  background-color: #000000;
  color: #ffffff;
}
.k95c-product-detail-page .smart_ride_section .stitle {
  font-size: 0.64rem;
  line-height: 0.85rem;
  text-align: center;
}
.k95c-product-detail-page .smart_ride_section .card_list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li {
  width: calc((100% - 0.3rem) / 4);
  display: block;
  border-radius: 0.1rem;
  overflow: hidden;
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1.7158176944) * 100%);
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .bg-img-box {
  position: absolute;
  height: 100% !important;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .content-box .cname {
  margin-top: auto;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .content-box .cdesc {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
@media screen and (min-width: 800px) {
  .k95c-product-detail-page .smart_ride_section .card_list .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k95c-product-detail-page .smart_drive_section {
  background-color: #000;
  color: #ffffff;
  padding-bottom: 2.4rem;
}
.k95c-product-detail-page .smart_drive_section .banner-section .bg-img {
  width: calc(100% - 1.4rem);
  margin-left: 1.4rem;
}
.k95c-product-detail-page .smart_drive_section .banner-section .wal {
  -webkit-box-pack: unset;
  -webkit-justify-content: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
.k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box {
  color: #ffffff;
}
.k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box .stitle {
  margin-top: 2.21rem;
  font-size: 0.64rem;
  line-height: 0.85rem;
}
.k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box .sname {
  margin-top: 1rem;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box .sdesc {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.k95c-product-detail-page .smart_drive_section .card_list {
  padding: 0 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li {
  width: calc((100% - 0.2rem) / 3);
  display: block;
  border-radius: 0.1rem;
  overflow: hidden;
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1.44) * 100%);
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .bg-img-box {
  position: absolute;
  height: 100% !important;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #ffffff;
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cname {
  margin-top: auto;
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cdesc {
  max-width: 3.04rem;
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  min-height: 0.42rem;
  opacity: 0.7;
}
@media screen and (min-width: 800px) {
  .k95c-product-detail-page .smart_drive_section .card_list .card-li:hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.k95c-product-detail-page .smart_go_section {
  position: relative;
  z-index: -1;
  padding: 0.1rem 0;
  background-color: #000000;
  color: #ffffff;
  height: 26.32rem;
}
.k95c-product-detail-page .smart_go_section .smart_go_section_wrapper {
  padding: 0 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  height: 9.2rem;
}
.k95c-product-detail-page .smart_go_section .left_img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.k95c-product-detail-page .smart_go_section .right_gss_con {
  width: 6.9rem;
  height: 100%;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.k95c-product-detail-page .smart_go_section .right_gss_con .title_con {
  padding: 0.48rem 0.44rem 0.53rem 0.44rem;
}
.k95c-product-detail-page .smart_go_section .right_gss_con .title_con .stitle {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k95c-product-detail-page .smart_go_section .right_gss_con .title_con .sdesc {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .smart_go_section .right_gss_con .gss_con {
  padding: 0 0.4rem;
}
.k95c-product-detail-page .smart_go_section .right_gss_con .gss_con .card {
  width: 100%;
  height: 2.48rem;
  border-radius: 0.1rem;
  overflow: hidden;
  margin-bottom: 0.1rem;
  position: relative;
}
.k95c-product-detail-page .smart_go_section .right_gss_con .gss_con .card .bg-img {
  width: 100%;
  height: 100%;
}
.k95c-product-detail-page .smart_go_section .right_gss_con .gss_con .card .card_name {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .smart_app_section {
  background-color: #000000;
  color: #ffffff;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.k95c-product-detail-page .smart_app_section .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.k95c-product-detail-page .smart_app_section .wal .left_img {
  width: 8.6rem;
  height: 8.6rem;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con {
  padding-left: 1.82rem;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con .title_con {
  padding-top: 1.89rem;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con .title_con .stitle {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con .title_con .sdesc {
  margin-top: 0.32rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list {
  margin-top: 0.84rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  row-gap: 0.4rem;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list .adv_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list .adv_item .icon {
  width: 0.64rem;
  height: 0.64rem;
}
.k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list .adv_item .name {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
}
.k95c-product-detail-page .product-color-type {
  padding: 0 0.1rem;
  background: rgb(0, 0, 0);
  color: #ffffff;
}
.k95c-product-detail-page .product-color-type .product-color-container {
  border-radius: 0.1rem;
  padding-top: 1.24rem;
  padding-bottom: 0.94rem;
  background: -webkit-linear-gradient(top, #151516 0%, #50535C 47%, #E0E3E6 100%);
  background: linear-gradient(180deg, #151516 0%, #50535C 47%, #E0E3E6 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.k95c-product-detail-page .product-color-type .product-color-container .stitle {
  text-align: center;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.k95c-product-detail-page .product-color-type .product-color-container .img-box {
  margin-top: 0.7rem;
  width: 7.09rem;
  height: 7.33rem;
}
.k95c-product-detail-page .product-color-type .product-color-container .classify {
  margin-top: 0.69rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}
.k95c-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  padding: 0.1rem;
  background: #fff;
  border-radius: 0.28rem;
}
.k95c-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--p-color);
  cursor: pointer;
  position: relative;
}
.k95c-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
  content: "";
  display: block;
  border: 0.02rem solid #1f1f1f;
  border-top: none;
  border-right: none;
  width: 0.15rem;
  height: 0.09rem;
  position: absolute;
  left: 0.1rem;
  top: 0.09rem;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .k95c-product-detail-page .batteryLife_section {
    padding-bottom: 2.4rem;
  }
  .k95c-product-detail-page .batteryLife_section .content {
    width: 100%;
    padding-top: 1.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .k95c-product-detail-page .batteryLife_section .content .stitle {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k95c-product-detail-page .batteryLife_section .content .desc {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    max-width: 5.29rem;
  }
  .k95c-product-detail-page .batteryLife_section .content .kv_box1 {
    width: 100%;
    padding: 0 0.5rem;
    text-align: left;
    margin-top: 0.93rem;
    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;
  }
  .k95c-product-detail-page .batteryLife_section .content .kv_box1 .item .key {
    font-size: 0.84rem;
    line-height: 1.11rem;
  }
  .k95c-product-detail-page .batteryLife_section .content .kv_box1 .item .value {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .k95c-product-detail-page .batteryLife_section .content .kv_box2 {
    margin-top: 13.93rem;
  }
  .k95c-product-detail-page .batteryLife_section .content .kv_box2 .item:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .k95c-product-detail-page .batteryLife_section .content .kv_box2 .item .key {
    font-size: 0.36rem;
    line-height: 0.56rem;
  }
  .k95c-product-detail-page .batteryLife_section .content .kv_box2 .item .value {
    font-size: 0.36rem;
    line-height: 0.56rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .batteryLife_section .card {
    margin-top: 5.04rem;
    border-radius: 0.16rem;
    text-align: center;
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((2.1492537313) * 100%);
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box {
    padding: 0.72rem 0.45rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .ctitle {
    margin-top: 8.56rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .desc {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    max-width: 5.17rem;
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .kv_box {
    width: 100%;
    gap: unset;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .kv_box .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .k95c-product-detail-page .batteryLife_section .card .p_wrapper .content-box .kv_box .item .value {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .k95c-product-detail-page .driving_control .content {
    padding-top: 1.6rem;
    padding-left: 0rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .k95c-product-detail-page .driving_control .content .adv_title {
    margin-top: 13.22rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k95c-product-detail-page .driving_control .content .adv_desc {
    max-width: 4.93rem;
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .k95c-product-detail-page .driving_control .content .adv_list {
    padding: 0 1.55rem;
    margin-top: 0.74rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    row-gap: 0.6rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .k95c-product-detail-page .driving_control .content .adv_list .adv_item .icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .k95c-product-detail-page .driving_control .content .adv_list .adv_item .name {
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
  .k95c-product-detail-page .driving_control .card_list {
    margin-top: 7.23rem;
    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.2rem;
  }
  .k95c-product-detail-page .driving_control .card_list .card {
    width: 100%;
    border-radius: 0.16rem;
    overflow: hidden;
    --color: #1F1F1F;
    color: var(--color);
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.6119402985) * 100%);
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper .bg-img-box {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper .bg-img-box .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: contain;
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box .ctype {
    text-align: left;
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 2.12rem;
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box .cname {
    margin-top: auto;
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .k95c-product-detail-page .driving_control .card_list .card .p_wrapper .content-box .cdesc {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .driving_control .card_list .card:nth-child(2n) .p_wrapper .content-box .ctype {
    text-align: right;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper {
    padding-top: 2.33rem;
    padding-bottom: 0;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-head .title {
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main {
    margin-top: 0.6rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul {
    min-height: auto;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li {
    width: 100%;
    margin-right: 0.4rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img {
    border-radius: 0.16rem;
    position: relative;
    width: 100%;
    padding-top: calc((2.0895522388) * 100%);
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con {
    padding: 0.57rem 0.31rem 0.73rem;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
                -ms-grid-row-align: center;
            align-self: center;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top {
    text-align: center;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .name {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .desc {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._top .text {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
    max-width: 100%;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._middle {
    margin-top: 6.26rem;
    font-size: 0.96rem;
    line-height: 1.27rem;
    padding-right: 0;
    text-align: left;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom {
    margin-top: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .val {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .val .unit {
    font-size: 0.32rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom .adv_item .key {
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs {
    margin-top: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 0.46rem;
    color: #ffffff;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs .adv_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs .adv_item .icon {
    width: 1rem;
    height: 1rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs .adv_item .name {
    margin-top: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .innovation_lab__section-main .-list ul li .content_con ._bottom.icon_advs .adv_item .desc {
    max-width: unset;
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow {
    margin-top: 1.34rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev,
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 0.1rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .prev .svg,
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next .svg {
    width: 0.28rem;
    height: 0.88rem;
  }
  .k95c-product-detail-page .driving_control .innovation_lab__section .innovation_lab__section-wrapper .-arrow .next {
    margin-left: 0.2rem;
  }
  .k95c-product-detail-page .smart_screen_section .adv_section {
    padding-top: unset;
    padding-bottom: 1.16rem;
    position: relative;
    z-index: 1;
    margin-top: -2.44rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6rem;
    -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;
  }
  .k95c-product-detail-page .smart_screen_section .adv_section .adv_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .k95c-product-detail-page .smart_screen_section .adv_section .adv_item .icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .k95c-product-detail-page .smart_screen_section .adv_section .adv_item .name {
    margin-top: 0.24rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .k95c-product-detail-page .smart_screen_section .adv_section .adv_item .desc {
    max-width: unset;
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .smart_screen_section .banner-section {
    background-color: #000000;
    width: 100%;
    height: 4.23rem;
  }
  .k95c-product-detail-page .smart_ride_section {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .k95c-product-detail-page .smart_ride_section .card_list {
    margin-top: 0.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2rem;
  }
  .k95c-product-detail-page .smart_ride_section .card_list .card-li {
    width: 100%;
    border-radius: 0.16rem;
  }
  .k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.7149253731) * 100%);
  }
  .k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .content-box {
    padding: 0.6rem;
  }
  .k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .content-box .cname {
    margin-top: auto;
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .k95c-product-detail-page .smart_ride_section .card_list .card-li .p_wrapper .content-box .cdesc {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .smart_drive_section {
    background-color: #000;
    color: #ffffff;
    padding-bottom: 2.4rem;
  }
  .k95c-product-detail-page .smart_drive_section .banner-section {
    height: 10.65rem;
  }
  .k95c-product-detail-page .smart_drive_section .banner-section .bg-img {
    width: 100%;
    height: 6.87rem !important;
    margin-left: 0;
    margin-top: 2.3rem;
  }
  .k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
  }
  .k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box .stitle {
    margin-top: 0;
    font-size: 0.64rem;
    line-height: 0.85rem;
  }
  .k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box .sname {
    margin-top: 1rem;
    font-size: 0.42rem;
    line-height: 0.56rem;
  }
  .k95c-product-detail-page .smart_drive_section .banner-section .wal .content-box .sdesc {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .smart_drive_section .card_list {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2rem;
  }
  .k95c-product-detail-page .smart_drive_section .card_list .card-li {
    width: 100%;
    border-radius: 0.16rem;
  }
  .k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.4388059701) * 100%);
  }
  .k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box {
    padding: 0.6rem 0.8rem;
  }
  .k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cname {
    margin-top: auto;
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .k95c-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cdesc {
    max-width: unset;
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .k95c-product-detail-page .smart_go_section {
    height: 34.56rem;
  }
  .k95c-product-detail-page .smart_go_section .smart_go_section_wrapper {
    padding: 0 0.1rem;
    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;
    gap: 0.2rem;
    height: unset;
  }
  .k95c-product-detail-page .smart_go_section .left_img {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    height: calc(100vh - 8.64rem);
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con {
    width: 100%;
    height: 8.64rem;
    border-radius: 0.1rem;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con .title_con {
    padding: 0.6rem 0.3rem 0.48rem 0.3rem;
    text-align: center;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con .title_con .stitle {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con .title_con .sdesc {
    margin-top: 0.24rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con .gss_con {
    padding: 0 0.3rem;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con .gss_con .card {
    width: 100%;
    height: 2.72rem;
    border-radius: 0.1rem;
    overflow: hidden;
    margin-bottom: 0.1rem;
    position: relative;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con .gss_con .card .bg-img {
    width: 100%;
    height: 100%;
  }
  .k95c-product-detail-page .smart_go_section .right_gss_con .gss_con .card .card_name {
    position: absolute;
    top: 50%;
    right: 0.43rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .k95c-product-detail-page .smart_app_section .wal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .k95c-product-detail-page .smart_app_section .wal .left_img {
    width: 100%;
    height: 6.7rem;
    border-radius: 0.16rem;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con {
    padding-left: 0;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con .title_con {
    padding-top: 0.69rem;
    text-align: center;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con .title_con .stitle {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con .title_con .sdesc {
    margin-top: 0.24rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list {
    padding: 0 0.55rem;
    margin-top: 1.16rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0.6rem;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list .adv_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list .adv_item .icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .k95c-product-detail-page .smart_app_section .wal .right_adv_con .adv_list .adv_item .name {
    margin-top: 0.1rem;
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
  .k95c-product-detail-page .product-color-type .product-color-container {
    border-radius: 0.16rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .k95c-product-detail-page .product-color-type .product-color-container .stitle {
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .k95c-product-detail-page .product-color-type .product-color-container .img-box {
    margin-top: 1.66rem;
    width: 6rem;
    height: 6.2rem;
  }
  .k95c-product-detail-page .product-color-type .product-color-container .classify {
    margin-top: 1.46rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.6rem;
  }
  .k95c-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.15rem;
    padding: 0.15rem;
    background: #fff;
    border-radius: 0.42rem;
  }
  .k95c-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 50%;
    background: var(--p-color);
    cursor: pointer;
    position: relative;
  }
  .k95c-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
    content: "";
    display: block;
    border: 0.02rem solid #1f1f1f;
    border-top: none;
    border-right: none;
    width: 0.24rem;
    height: 0.15rem;
    position: absolute;
    left: 0.14rem;
    top: 0.12rem;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.yzlite-product-detail-page .banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.yzlite-product-detail-page .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.yzlite-product-detail-page .banner-section .wal {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .yzlite-product-detail-page .banner-section .wal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.yzlite-product-detail-page .banner-section .wal .content-box {
  color: #000000;
  padding-bottom: 0.23rem;
}
@media screen and (max-width: 800px) {
  .yzlite-product-detail-page .banner-section .wal .content-box {
    padding-bottom: 0;
    padding-top: 2.95rem;
  }
}
.yzlite-product-detail-page .banner-section .wal .content-box .p_type {
  width: auto;
  height: 1.3rem;
}
.yzlite-product-detail-page .banner-section .wal .content-box .h1 {
  margin-top: 0.48rem;
  font-size: 0.56rem;
  line-height: 0.72rem;
}
.yzlite-product-detail-page .banner-section .wal .content-box .btn {
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .yzlite-product-detail-page .banner-section .wal .content-box .btn {
    margin-top: 0.77rem;
  }
}
.yzlite-product-detail-page .card_list_section .card_list {
  padding: 0.77rem 0 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.yzlite-product-detail-page .card_list_section .card_list .card-li {
  width: calc((100% - 0.3rem) / 4);
  display: block;
}
.yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1.4946236559) * 100%);
}
.yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .bg-img-box {
  position: absolute;
  height: 100% !important;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.6rem 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .content-box .cname {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .content-box .cdesc {
  margin-top: 0.11rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .easily_handle_section .stitle_img {
  display: block;
  margin: 0 auto;
  width: 7.41rem;
  height: 1.23rem;
}
.yzlite-product-detail-page .easily_handle_section .sdesc {
  margin-top: 0.06rem;
  font-size: 0.32rem;
  line-height: 0.56rem;
  text-align: center;
}
.yzlite-product-detail-page .easily_handle_section .sdesc em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .easily_handle_section .sdesc em span {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .easily_handle_section .card_list {
  margin-top: 1.2rem;
  padding-bottom: 0.45rem;
  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;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li {
  width: calc((100% - 0.2rem) / 2);
  display: block;
  overflow: hidden;
  border-radius: 0.64rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1) * 100%);
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.4rem 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .cname {
  font-size: 0.36rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .cname em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .cdesc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .cdesc2 {
  margin-top: 2.72rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #1F1F1F;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box {
  margin-top: auto;
  width: 100%;
  padding: 0 0.54rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #1F1F1F;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val {
  height: initial;
  position: relative;
  z-index: 1;
  padding: 0.2rem 0.06rem 0;
  font-size: 0.48rem;
  line-height: 0.67rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val .unit {
  font-size: 0.24rem;
  line-height: 0.34rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.05rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.15rem;
  background-color: #FCF461;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .key {
  font-size: 0.18rem;
  line-height: 0.24rem;
  text-align: center;
  opacity: 0.7;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide {
  width: 100%;
  overflow: visible;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.4210526316) * 100%);
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper img {
  position: static;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background-color: #FCF461;
  border-radius: 0.64rem;
  overflow: hidden;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.6rem 0.56rem;
  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;
  color: #1F1F1F;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .cname {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .cname em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box1 {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box1 .decorate_img {
  width: 5.14rem;
  height: 1.8rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box1 .decorate_text {
  margin-bottom: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box2 {
  position: absolute;
  top: 1.52rem;
  right: 5.66rem;
  width: 1.73rem;
  height: 1.03rem;
  padding: 0.2rem 0.3rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box2 .decorate_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box2 .decorate_text {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .car_img {
  width: 4.4rem;
  height: 7.6rem;
  position: absolute;
  top: auto;
  left: auto;
  right: 1.78rem;
  bottom: 0;
}
@media screen and (min-width: 800px) {
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li:not(.isWide):hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper {
  height: 200vh;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill {
  height: 100vh;
  padding: 1.2rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .wrapper {
  position: relative;
  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;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .cname {
  margin-bottom: 0.96rem;
  font-size: 0.42rem;
  line-height: 0.56rem;
  text-align: center;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .cname em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .car_img {
  width: 4.3rem;
  height: 6.8rem;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .bg_circle {
  width: 3.98rem;
  height: 3.98rem;
  border-radius: 50%;
  background: #FCF461;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item {
  position: absolute;
  top: 50%;
  right: 4rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .val {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: initial;
  position: relative;
  z-index: 1;
  padding: 0.2rem 0.06rem 0;
  font-size: 0.72rem;
  line-height: 0.45rem;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .val .unit {
  font-size: 0.32rem;
  line-height: 0.45rem;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .val::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.05rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.15rem;
  background-color: #ffffff;
}
.yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .key {
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: center;
  opacity: 0.7;
}
.yzlite-product-detail-page .battery_life_section {
  position: relative;
}
.yzlite-product-detail-page .battery_life_section .stitle_img {
  display: block;
  margin: 0 auto;
  margin-top: 1.2rem;
  width: 7.41rem;
  height: 1.23rem;
}
.yzlite-product-detail-page .battery_life_section .sdesc {
  margin-top: 0.06rem;
  font-size: 0.32rem;
  line-height: 0.56rem;
  text-align: center;
}
.yzlite-product-detail-page .battery_life_section .sdesc em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .battery_life_section .sdesc em span {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .battery_life_section .parallax_section {
  background: #000;
  margin-top: 0.6rem;
  position: relative;
  width: 100%;
  height: 9.2rem;
  overflow: hidden;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_bg .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box {
  padding-top: 0.74rem;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box .cname {
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box .cdesc {
  max-width: 4.93rem;
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box .info_text {
  margin-top: 0.91rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box .info_img {
  margin-top: 0.22rem;
  width: 4.93rem;
  height: 1rem;
}
.yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box .info_img2 {
  position: absolute;
  top: 0.88rem;
  right: -0.15rem;
  width: 6.2rem;
  height: 7.65rem;
}
.yzlite-product-detail-page .battery_life_section .overlap_decorate {
  position: absolute;
  bottom: -1.06rem;
  left: calc(50% - 0.28rem);
  z-index: 1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.41rem;
  height: 1.66rem;
}
.yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img:nth-child(1) {
  z-index: 3;
}
.yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img:nth-child(2) {
  z-index: 2;
}
.yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img:nth-child(3) {
  z-index: 1;
}
.yzlite-product-detail-page .performance_section {
  position: relative;
  overflow: hidden;
}
.yzlite-product-detail-page .performance_section::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.03rem;
  background-color: #ffffff;
  position: absolute;
  top: -0.01rem;
  left: 0;
}
.yzlite-product-detail-page .performance_section .chassis {
  width: 100%;
  height: 18.05rem;
  position: relative;
}
.yzlite-product-detail-page .performance_section .chassis .bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .stitle_img {
  display: block;
  margin: 0 auto;
  margin-top: 3.61rem;
  width: 7.41rem;
  height: 1.23rem;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .sdesc {
  margin-top: 0.06rem;
  font-size: 0.32rem;
  line-height: 0.56rem;
  text-align: center;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .sdesc em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .sdesc em span {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img {
  margin-top: 1.13rem;
  position: relative;
  width: 7.15rem;
  height: 7.16rem;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor {
  position: absolute;
  right: 4.88rem;
  top: 5.09rem;
  white-space: nowrap;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .line {
  width: 0.01rem;
  height: 2.98rem;
  display: block;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .data_con {
  position: absolute;
  bottom: 0.47rem;
  left: 0.3rem;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .data_con .data {
  font-family: var(--sk-font-Medium);
  font-size: 0.72rem;
  line-height: 1.01rem;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .data_con .text {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.yzlite-product-detail-page .performance_section .chassis .wal .content-box .sdesc2 {
  margin-top: 2.71rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  color: #ffffff;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing {
  height: 32.21rem;
  width: 100%;
  position: relative;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .stitle {
  padding-top: 1.56rem;
  text-align: center;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .sdesc {
  max-width: 5.67rem;
  margin: 0 auto;
  margin-top: 0.31rem;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img {
  position: absolute;
  top: 1.32rem;
  right: 0;
  width: 10.39rem;
  height: 9.27rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor {
  position: absolute;
  right: 0;
  top: 5.3rem;
  white-space: nowrap;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .line {
  width: 10.62rem;
  height: 4.52rem;
  display: block;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .data_con {
  position: absolute;
  top: calc(50% + 0.26rem);
  left: calc(50% - 0.15rem);
  -webkit-transform: translate(-50%, -50%) rotate(16deg);
      -ms-transform: translate(-50%, -50%) rotate(16deg);
          transform: translate(-50%, -50%) rotate(16deg);
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .data_con .data {
  font-family: var(--sk-font-Medium);
  font-size: 0.72rem;
  line-height: 1.01rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .data_con .text {
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: center;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 {
  margin-top: 10.9rem;
  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;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li {
  width: calc((100% - 0.2rem) / 2);
  display: block;
  overflow: hidden;
  border-radius: 0.64rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1) * 100%);
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.3rem 0.4rem 0.5rem;
  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;
  color: #ffffff;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cname {
  font-size: 0.32rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cname em {
  font-size: 0.72rem;
  line-height: 0.95rem;
  color: #FCF461;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cdesc {
  margin-top: 0.1rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cdesc2 {
  max-width: 2.73rem;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .adv_box {
  margin-top: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .adv_box .adv_item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .adv_box .adv_item .val {
  font-size: 0.48rem;
  line-height: 0.67rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .adv_box .adv_item .val .unit {
  font-size: 0.24rem;
  line-height: 0.34rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .adv_box .adv_item .key {
  font-size: 0.18rem;
  line-height: 0.24rem;
  opacity: 0.7;
}
@media screen and (min-width: 800px) {
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li:not(.isWide):hover .bg-img-box {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 {
  margin-top: 1.43rem;
  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;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 {
  width: 4.8rem;
  display: block;
  overflow: hidden;
  border-radius: 0.64rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1.3333333333) * 100%);
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background-color: #FCF461;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.07rem 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .cname {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item {
  margin-top: 1.02rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .val {
  height: 1.01rem;
  position: relative;
  z-index: 1;
  padding: 0 0.06rem;
  font-size: 0.72rem;
  line-height: 1.01rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .val .unit {
  font-size: 0.32rem;
  line-height: 1.01rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .val::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.16rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.15rem;
  background-color: #ffffff;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .key {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .cdesc {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 {
  width: 10.2rem;
  display: block;
  position: relative;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.6274509804) * 100%);
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  overflow: hidden;
  border-radius: 0.64rem;
  background-color: #FCF461;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper .bg-img-box .bg-img {
  width: 3.74rem;
  height: 100%;
  position: absolute;
  left: auto;
  top: auto;
  right: 0;
  top: 0;
  object-fit: contain;
}
.yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper .car_img {
  position: absolute;
  left: auto;
  right: 0.64rem;
  top: -1.23rem;
  width: 10.53rem;
  height: 9.16rem;
}
.yzlite-product-detail-page .comfortable_cycling {
  position: relative;
  z-index: -2;
  background-color: #E7ECEF;
}
.yzlite-product-detail-page .comfortable_cycling .polygon_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 8.88rem;
  background: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 43%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 43%, 0 100%);
}
.yzlite-product-detail-page .comfortable_cycling ._top {
  padding-top: 2.4rem;
}
.yzlite-product-detail-page .comfortable_cycling ._top .stitle_img {
  display: block;
  margin: 0 auto;
  width: 7.41rem;
  height: 1.23rem;
}
.yzlite-product-detail-page .comfortable_cycling ._top .sdesc {
  margin: 0 auto;
  margin-top: 0.06rem;
  text-align: center;
  font-size: 0.32rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .comfortable_cycling ._top .sdesc em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .comfortable_cycling ._top .sdesc em span {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .comfortable_cycling ._top ._box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_left .cname {
  margin-top: 2.7rem;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_left .cdesc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 8.95rem;
}
.yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_right ._img {
  width: 100%;
  height: 9.5rem;
  margin-top: -0.24rem;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom {
  position: relative;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .skymotor_img {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10rem;
  height: 3.45rem;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list {
  padding-top: 2.65rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li {
  width: calc((100% - 0.2rem) / 2);
  display: block;
  overflow: hidden;
  border-radius: 0.64rem;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1.12) * 100%);
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .bg-img-box {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #FCF461;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .bg-img-box .bg-img {
  height: 5.61rem;
  width: 5.22rem;
  position: absolute;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.4rem 0.65rem;
  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;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .cname {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .cdesc {
  max-width: 2.84rem;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item .val {
  height: 1.01rem;
  position: relative;
  z-index: 1;
  padding: 0 0.06rem;
  font-size: 0.72rem;
  line-height: 1.01rem;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item .val::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.16rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.15rem;
  background-color: #ffffff;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item .key {
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: center;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .bg-img {
  height: 100%;
  width: 3.45rem;
  position: absolute;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .ahr-img {
  height: 6.25rem;
  width: 3.82rem;
  position: absolute;
  left: auto;
  top: auto;
  right: 0.89rem;
  bottom: 0.24rem;
  object-fit: contain;
}
.yzlite-product-detail-page .smart_drive_section {
  padding-top: 2.4rem;
  background-color: #E7ECEF;
}
.yzlite-product-detail-page .smart_drive_section .stitle_img {
  display: block;
  margin: 0 auto;
  width: 7.41rem;
  height: 1.23rem;
}
.yzlite-product-detail-page .smart_drive_section .sdesc {
  margin: 0 auto;
  margin-top: 0.06rem;
  text-align: center;
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.yzlite-product-detail-page .smart_drive_section .sdesc em {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .smart_drive_section .sdesc em span {
  font-family: var(--sk-font-Medium);
}
.yzlite-product-detail-page .smart_drive_section .card_list {
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.2rem;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li {
  width: 5rem;
  display: block;
  overflow: hidden;
  border-radius: 0.64rem;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1.44) * 100%);
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .bg-img-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .bg-img-box .bg-img,
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .bg-img-box .bg-img2 {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cname {
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cdesc {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_box {
  margin-top: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .key {
  max-width: 2.63rem;
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  opacity: 0.7;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_icons {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_icons .adv_icon_item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_icons .adv_icon_item .icon {
  position: static;
  width: 0.85rem;
  height: 0.85rem;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_icons .adv_icon_item .key {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.21rem;
  text-align: center;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_list {
  position: absolute;
  top: calc(50% - 0.1rem);
  left: calc(50% - 0.1rem);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
  width: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 0.36rem;
  padding: 0.2rem;
  box-shadow: 10px 10px 0 0 #D6DDE1;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_list .adv_item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0.2rem;
  width: 100%;
  font-size: 0.24rem;
  line-height: 0.32rem;
  text-align: center;
  background-color: #E7ECEF;
  border-radius: 0.2rem;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) {
  width: 10rem;
  background: #ffffff;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.72) * 100%);
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper .bg-img-box .bg-img {
  width: 5.76rem;
  height: 5.76rem;
  left: auto;
  bottom: auto;
  right: 0.4rem;
  top: 0.72rem;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper .bg-img-box .bg-img2 {
  width: 7.05rem;
  height: 7.2rem;
  left: auto;
  bottom: auto;
  right: 0;
  top: 0;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) {
  width: 5rem;
  background: #D6DDE1;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((1.44) * 100%);
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 3.74rem;
  left: auto;
  bottom: 0;
  right: 0;
  top: auto;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .bg-img2 {
  width: 3.73rem;
  height: 6.07rem;
  left: auto;
  bottom: 0;
  right: 0;
  top: auto;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) {
  width: 100%;
  background: #D6DDE1;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) .p_wrapper {
  position: relative;
  width: 100%;
  padding-top: calc((0.4736842105) * 100%);
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) .p_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) .p_wrapper .bg-img-box .bg-img {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
}
.yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) .p_wrapper .bg-img-box .bg-img2 {
  width: 4.27rem;
  height: 6.38rem;
  left: auto;
  bottom: 0;
  right: 0.62rem;
  top: auto;
}
.yzlite-product-detail-page .smart_screen_section {
  padding-top: 2.4rem;
  position: relative;
  z-index: -1;
  background-color: #39393A;
}
.yzlite-product-detail-page .smart_screen_section .top_bg {
  position: absolute;
  width: 100%;
  height: 7.25rem;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #E7ECEF;
}
.yzlite-product-detail-page .smart_screen_section .top_bg .bg-img {
  width: 100%;
  height: 3.74rem;
  position: absolute;
  left: 0;
  bottom: 0.2rem;
}
.yzlite-product-detail-page .smart_screen_section .stitle_img {
  display: block;
  margin: 0 auto;
  width: 7.41rem;
  height: 1.23rem;
}
.yzlite-product-detail-page .smart_screen_section .screen_img {
  width: 100%;
  height: 11.68rem;
}
.yzlite-product-detail-page .smart_screen_section .content_box {
  position: absolute;
  top: 10.44rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 3.1rem;
  height: 2.37rem;
  color: #ffffff;
}
.yzlite-product-detail-page .smart_screen_section .content_box .num_img {
  width: 1.26rem;
  height: 1.48rem;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.yzlite-product-detail-page .smart_screen_section .content_box ._text {
  width: 1.68rem;
  height: 1.12rem;
  position: absolute;
  top: 0.31rem;
  right: 0;
  bottom: auto;
  left: auto;
  font-size: 0.42rem;
  line-height: 0.56rem;
}
.yzlite-product-detail-page .smart_screen_section .content_box ._desc {
  width: 100%;
  height: 0.64rem;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.24rem;
  line-height: 0.32rem;
  opacity: 0.7;
  text-align: center;
}
.yzlite-product-detail-page .product-color-type {
  padding: 0 0.1rem;
  background: #39393A;
}
.yzlite-product-detail-page .product-color-type .product-color-container {
  border-radius: 0.64rem;
  overflow: hidden;
  padding-top: 1.14rem;
  padding-bottom: 0.94rem;
  background: -webkit-radial-gradient(-9% 50%, 77% 77%, #ACABAE 0%, #716F73 100%);
  background: radial-gradient(77% 77% at -9% 50%, #ACABAE 0%, #716F73 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.yzlite-product-detail-page .product-color-type .product-color-container .stitle_img {
  display: block;
  margin: 0 auto;
  width: 7.41rem;
  height: 1.23rem;
}
.yzlite-product-detail-page .product-color-type .product-color-container .img-box {
  margin-top: 0.91rem;
  width: 9.58rem;
  height: 6.2rem;
}
.yzlite-product-detail-page .product-color-type .product-color-container .classify {
  margin-top: 1.02rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}
.yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  padding: 0.1rem;
  background: #fff;
  border-radius: 0.28rem;
}
.yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--p-color);
  cursor: pointer;
  position: relative;
}
.yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
  content: "";
  display: block;
  border: 0.02rem solid #1f1f1f;
  border-top: none;
  border-right: none;
  width: 0.15rem;
  height: 0.09rem;
  position: absolute;
  left: 0.1rem;
  top: 0.09rem;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .yzlite-product-detail-page .card_list_section .card_list {
    padding: 2.4rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
  }
  .yzlite-product-detail-page .card_list_section .card_list .card-li {
    width: 100%;
  }
  .yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .content-box {
    padding: 0.92rem 0.48rem;
    text-align: center;
  }
  .yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .content-box .cname {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .yzlite-product-detail-page .card_list_section .card_list .card-li .p_wrapper .content-box .cdesc {
    margin-top: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .yzlite-product-detail-page .easily_handle_section .stitle_img {
    width: calc(100% - 0.4rem);
    margin-left: 0.4rem;
  }
  .yzlite-product-detail-page .easily_handle_section .sdesc {
    margin-top: 0.2rem;
    font-size: 0.4rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list {
    margin-top: 0.8rem;
    padding-bottom: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li {
    width: 100%;
    border-radius: 0.72rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box {
    padding: 0.35rem 0.3rem 0.43rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .cname {
    font-size: 0.4rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .cdesc {
    margin-top: 0.09rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .cdesc2 {
    margin-top: 2.29rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box {
    padding: 0 0.12rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val {
    height: 0.64rem;
    position: relative;
    padding: 0.2rem 0.06rem 0;
    font-size: 0.48rem;
    line-height: 0.32rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val .unit {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.1rem;
    left: 0;
    width: 100%;
    height: 0.15rem;
    background-color: #FCF461;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .key {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide {
    width: 100%;
    overflow: visible;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((2.4417910448) * 100%);
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper img {
    position: static;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .bg-img-box {
    position: absolute;
    height: 12.8rem;
    width: 100%;
    border-radius: 0.72rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.6rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .cname {
    font-size: 0.48rem;
    text-align: center;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box1 {
    margin-top: 0.74rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box1 .decorate_text {
    margin-bottom: 0.28rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box2 {
    position: absolute;
    top: 5.37rem;
    right: auto;
    left: 0.73rem;
    width: 2.08rem;
    height: 1.24rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box2 .decorate_text {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .car_img {
    width: 100%;
    height: 11.56rem;
    position: absolute;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .cname {
    margin-bottom: 0.94rem;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .car_img {
    width: 5.74rem;
    height: 9.08rem;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .bg_circle {
    width: 5.32rem;
    height: 5.32rem;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item {
    position: absolute;
    top: auto;
    right: 50%;
    bottom: -1.4rem;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    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;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .val {
    height: 1.27rem;
    position: relative;
    z-index: 1;
    padding: 0 0.06rem;
    font-size: 0.96rem;
    line-height: 1.27rem;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .val .unit {
    font-size: 0.36rem;
    line-height: 1.27rem;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .val::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.16rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0.15rem;
    background-color: #ffffff;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item .key {
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
  .yzlite-product-detail-page .battery_life_section .stitle_img {
    display: block;
    margin: 0 auto;
    margin-top: 1.2rem;
    margin-left: 0.4rem;
    width: calc(100% - 0.4rem);
    height: auto;
  }
  .yzlite-product-detail-page .battery_life_section .sdesc {
    margin-top: 0.2rem;
    font-size: 0.36rem;
    line-height: 0.56rem;
    text-align: center;
  }
  .yzlite-product-detail-page .battery_life_section .phone_con {
    position: absolute;
    top: 2.4rem;
    left: 0rem;
    width: 100%;
    z-index: 2;
    text-align: center;
    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;
  }
  .yzlite-product-detail-page .battery_life_section .phone_con .cname {
    margin-top: 1.14rem;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .yzlite-product-detail-page .battery_life_section .phone_con .cdesc {
    max-width: 5.6rem;
    margin-top: 0.36rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .battery_life_section .phone_con .info_text {
    margin-top: 0.8rem;
    font-size: 0.32rem;
    line-height: 0.32rem;
  }
  .yzlite-product-detail-page .battery_life_section .phone_con .info_img {
    margin-top: 0.12rem;
    width: 5.65rem;
    height: 1.07rem;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section {
    margin-top: 4.6rem;
    position: relative;
    width: 100%;
    height: 15.22rem;
    overflow: hidden;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box {
    padding-top: 0.74rem;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box .info_img2 {
    position: absolute;
    top: auto;
    right: -0.88rem;
    bottom: 1.8rem;
    width: 7.3rem;
    height: 9rem;
  }
  .yzlite-product-detail-page .battery_life_section .overlap_decorate {
    position: absolute;
    bottom: -1.35rem;
    left: calc(50% - 0.35rem);
    z-index: 1;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img:nth-child(1) {
    z-index: 3;
  }
  .yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img:nth-child(2) {
    z-index: 2;
  }
  .yzlite-product-detail-page .battery_life_section .overlap_decorate .decorate_img:nth-child(3) {
    z-index: 1;
  }
  .yzlite-product-detail-page .performance_section .chassis {
    width: 100%;
    height: 23.51rem;
    position: relative;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal {
    padding: 0;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .stitle_img {
    display: block;
    margin: 0 auto;
    margin-top: 4.11rem;
    margin-left: 0.4rem;
    width: calc(100% - 0.4rem);
    height: auto;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .sdesc {
    margin-top: 0.2rem;
    font-size: 0.36rem;
    line-height: 0.56rem;
    text-align: center;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img {
    margin-top: 1.09rem;
    position: relative;
    width: 7.16rem;
    height: 10rem;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor {
    position: absolute;
    right: 5.04rem;
    top: 7.95rem;
    white-space: nowrap;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .line {
    width: 0.01rem;
    height: 4.09rem;
    display: block;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .data_con {
    position: absolute;
    bottom: 1.3rem;
    left: 0.2rem;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .data_con .data {
    font-family: var(--sk-font-Medium);
    font-size: 0.96rem;
    line-height: 1.27rem;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .anchor_img .anchor .data_con .text {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .yzlite-product-detail-page .performance_section .chassis .wal .content-box .sdesc2 {
    margin-top: 3.84rem;
    font-size: 0.64rem;
    line-height: 0.85rem;
    color: #ffffff;
    max-width: 2.8rem;
    text-align: center;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing {
    height: 54.76rem;
    background: #000;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .bg-img {
    bottom: auto;
    top: 0;
    left: 0;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .stitle {
    padding-top: 1.64rem;
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .sdesc {
    max-width: 5.67rem;
    margin: 0 auto;
    margin-top: 0.36rem;
    text-align: center;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img {
    position: absolute;
    top: 4.74rem;
    right: 0;
    width: 6.58rem;
    height: 10.6rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor {
    position: absolute;
    right: -2.15rem;
    top: 3.7rem;
    white-space: nowrap;
    -webkit-transform: rotate(36.4deg);
        -ms-transform: rotate(36.4deg);
            transform: rotate(36.4deg);
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .line {
    width: 11.2rem;
    height: 4.77rem;
    display: block;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .data_con {
    position: absolute;
    top: calc(50% + 0.26rem);
    left: calc(50% - 0.15rem);
    -webkit-transform: translate(-50%, -50%) rotate(16deg);
        -ms-transform: translate(-50%, -50%) rotate(16deg);
            transform: translate(-50%, -50%) rotate(16deg);
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .data_con .data {
    font-family: var(--sk-font-Medium);
    font-size: 0.72rem;
    line-height: 1.01rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .anchor_img .anchor .data_con .text {
    font-size: 0.24rem;
    line-height: 0.32rem;
    text-align: left;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 {
    margin-top: 15.44rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.4rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li {
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 0.72rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.4328358209) * 100%);
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box {
    padding: 0.3rem 0.3rem 1.22rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cname {
    font-size: 0.4rem;
    line-height: 0.56rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cname em {
    font-size: 0.96rem;
    line-height: 1.27rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cdesc {
    margin-top: 0.16rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cdesc2 {
    max-width: 4.43rem;
    margin-top: 0.32rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .adv_box .adv_item .val {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .adv_box .adv_item .key {
    font-size: 0.24rem;
    line-height: 0.32rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 {
    margin-top: 0.4rem;
    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;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 {
    width: 100%;
    border-radius: 0.72rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1) * 100%);
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box {
    padding: 0.9rem 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .cname {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item {
    margin-top: 0.43rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .val {
    height: 1.27rem;
    position: relative;
    z-index: 1;
    padding: 0 0.06rem;
    font-size: 0.96rem;
    line-height: 1.27rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .val .unit {
    font-size: 0.36rem;
    line-height: 1.27rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .val::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.16rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0.15rem;
    background-color: #ffffff;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .adv_item .key {
    font-size: 0.28rem;
    line-height: 0.37rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_1 .p_wrapper .content-box .cdesc {
    margin-top: 0.43rem;
    font-size: 0.26rem;
    line-height: 0.24rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 {
    width: 100%;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1) * 100%);
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper .bg-img-box {
    border-radius: 0.72rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper .bg-img-box .bg-img {
    width: 100%;
    height: 3.62rem;
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    right: auto;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_2 .card-li_2 .p_wrapper .car_img {
    position: absolute;
    left: auto;
    right: -0.4rem;
    top: auto;
    bottom: 0.68rem;
    width: 100vw;
    height: 7.53rem;
    max-width: unset;
  }
  .yzlite-product-detail-page .comfortable_cycling .polygon_bg {
    height: 13.5rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 76%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 76%, 0 100%);
  }
  .yzlite-product-detail-page .comfortable_cycling ._top {
    padding: 0;
    padding-top: 2.4rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._top .stitle_img {
    display: block;
    margin: 0 auto;
    margin-left: 0.4rem;
    width: calc(100% - 0.4rem);
  }
  .yzlite-product-detail-page .comfortable_cycling ._top .sdesc {
    margin: 0 auto;
    margin-top: 0.2rem;
    text-align: center;
    font-size: 0.36rem;
    line-height: 0.56rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._top ._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;
  }
  .yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_left {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_left .cname {
    margin-top: 1.2rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_left .cdesc {
    margin-top: 0.32rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_right {
    width: 100%;
  }
  .yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_right ._img {
    width: 100%;
    height: 11.32rem;
    margin-top: 0.84rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom {
    position: relative;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .skymotor_img {
    position: absolute;
    top: 0.94rem;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 2.6rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list {
    padding-top: 2.86rem;
    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;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li {
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 0.72rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.4328358209) * 100%);
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .bg-img-box .bg-img {
    height: 5.46rem;
    width: 5.08rem;
    position: absolute;
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    object-fit: contain;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.86rem 0.3rem;
    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;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .cname {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .cdesc {
    max-width: 5.08rem;
    margin-top: 0.32rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item {
    margin-top: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item .val {
    height: 0.95rem;
    position: relative;
    z-index: 1;
    padding: 0 0.06rem;
    font-size: 0.72rem;
    line-height: 0.95rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item .val::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.16rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0.15rem;
    background-color: #ffffff;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li .p_wrapper .content-box .adv_item .key {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .bg-img {
    height: 8.38rem;
    width: 4.2rem;
    position: absolute;
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    object-fit: contain;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .ahr-img {
    height: 6.25rem;
    width: 3.82rem;
    position: absolute;
    left: auto;
    top: auto;
    right: 0.89rem;
    bottom: 0.24rem;
    object-fit: contain;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li:nth-child(2) .p_wrapper .content-box {
    padding-top: 0.3rem;
  }
  .yzlite-product-detail-page .comfortable_cycling ._bottom .card_list .card-li:nth-child(2) .p_wrapper .content-box .cdesc {
    margin-top: 0.24rem;
  }
  .yzlite-product-detail-page .smart_drive_section .stitle_img {
    display: block;
    margin: 0 auto;
    margin-left: 0.4rem;
    width: calc(100% - 0.4rem);
  }
  .yzlite-product-detail-page .smart_drive_section .sdesc {
    margin: 0 auto;
    margin-top: 0.2rem;
    text-align: center;
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list {
    margin-top: 2.3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li {
    width: 100%;
    border-radius: 0.72rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((2.0895522388) * 100%);
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box {
    padding: 0.6rem 0.3rem 0.77rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cname {
    font-size: 0.4rem;
    line-height: 0.53rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .cdesc {
    margin-top: 0.24rem;
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .val {
    font-size: 0.32rem;
    line-height: 0.42rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_box .adv_item .key {
    max-width: unset;
    margin-top: 0.1rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
    opacity: 0.7;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_icons .adv_icon_item .icon {
    width: 1.15rem;
    height: 1.15rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_icons .adv_icon_item .key {
    margin-top: 0.14rem;
    font-size: 0.28rem;
    line-height: 0.37rem;
    text-align: center;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_list {
    position: absolute;
    top: 10.32rem;
    left: calc(50% - 0.1rem);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 5.85rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0.3rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_list .adv_item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 0.2rem;
    width: calc((100% - 0.2rem) / 2);
    font-size: 0.28rem;
    line-height: 0.37rem;
    border-radius: 0.24rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) {
    width: 100%;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((2.0895522388) * 100%);
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper .bg-img-box .bg-img {
    width: 5.76rem;
    height: 5.76rem;
    left: auto;
    bottom: auto;
    right: 0.47rem;
    top: 2.88rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(1) .p_wrapper .bg-img-box .bg-img2 {
    width: 100%;
    height: 7.63rem;
    left: auto;
    bottom: auto;
    right: 0;
    top: 2.19rem;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) {
    width: 100%;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((1.4328358209) * 100%);
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .bg-img {
    width: 100%;
    height: 5.01rem;
    left: auto;
    bottom: 0;
    right: 0;
    top: auto;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(2) .p_wrapper .bg-img-box .bg-img2 {
    width: 4.7rem;
    height: 7.6rem;
    left: auto;
    bottom: 0;
    right: 0;
    top: auto;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) {
    width: 100%;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) .p_wrapper {
    position: relative;
    width: 100%;
    padding-top: calc((3.2074626866) * 100%);
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) .p_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li:nth-child(3) .p_wrapper .bg-img-box .bg-img2 {
    width: 100%;
    height: 7.99rem;
    left: auto;
    bottom: auto;
    right: 0;
    top: 2.33rem;
  }
  .yzlite-product-detail-page .smart_screen_section {
    overflow: hidden;
  }
  .yzlite-product-detail-page .smart_screen_section .top_bg {
    height: 11.53rem;
  }
  .yzlite-product-detail-page .smart_screen_section .top_bg .bg-img {
    width: 100%;
    height: 3.74rem;
    position: absolute;
    left: 0;
    bottom: 1.44rem;
  }
  .yzlite-product-detail-page .smart_screen_section .stitle_img {
    display: block;
    margin: 0 auto;
    margin-left: 0.4rem;
  }
  .yzlite-product-detail-page .smart_screen_section .screen_img {
    margin-top: 3.83rem;
    position: relative;
    left: 50vw;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 14.96rem;
    height: 9.1rem;
  }
  .yzlite-product-detail-page .smart_screen_section .content_box {
    top: 4.18rem;
    width: 5.5rem;
    height: 3.12rem;
    color: #1F1F1F;
  }
  .yzlite-product-detail-page .smart_screen_section .content_box .num_img {
    width: 2.66rem;
    height: 3.12rem;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .yzlite-product-detail-page .smart_screen_section .content_box ._text {
    width: 1.92rem;
    height: 1.12rem;
    position: absolute;
    top: 0.67rem;
    right: 0.32rem;
    bottom: auto;
    left: auto;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .yzlite-product-detail-page .smart_screen_section .content_box ._desc {
    width: 2.56rem;
    height: 0.84rem;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0.32rem;
    line-height: 0.42rem;
    opacity: 0.7;
    text-align: center;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container {
    border-radius: 0.72rem;
    padding-top: 1.2rem;
    padding-bottom: 0.6rem;
    background: -webkit-radial-gradient(-9% 50%, 77% 77%, #ACABAE 0%, #716F73 100%);
    background: radial-gradient(77% 77% at -9% 50%, #ACABAE 0%, #716F73 100%);
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .stitle_img {
    display: block;
    margin: 0 auto;
    margin-left: 0.3rem;
    width: calc(100% - 0.3rem);
    object-fit: contain;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .img-box {
    margin-top: 0.91rem;
    width: 6.66rem;
    height: 4.31rem;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .classify {
    margin-top: 1.12rem;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.2rem;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item .title {
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.15rem;
    padding: 0.15rem;
    background: #fff;
    border-radius: 0.42rem;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 50%;
    background: var(--p-color);
    cursor: pointer;
    position: relative;
  }
  .yzlite-product-detail-page .product-color-type .product-color-container .classify .classify_item .colors .color.on::before {
    content: "";
    display: block;
    border: 0.02rem solid #1f1f1f;
    border-top: none;
    border-right: none;
    width: 0.24rem;
    height: 0.15rem;
    position: absolute;
    left: 0.14rem;
    top: 0.12rem;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@media screen and (max-width: 800px) {
  .visual_stitching {
    position: relative;
  }
  .visual_stitching::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.03rem;
    background-color: #ffffff;
    position: absolute;
    top: -0.01rem;
    left: 0;
  }
  .visual_stitching::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.03rem;
    background-color: #ffffff;
    position: absolute;
    bottom: -0.01rem;
    left: 0;
  }
  .visual_stitching.__vsdark::before {
    background-color: #000000;
  }
  .visual_stitching.__vsdark::after {
    background-color: #000000;
  }
  .visual_stitching.__vsgray::before {
    background-color: #39393A;
  }
  .visual_stitching.__vsgray::after {
    background-color: #39393A;
  }
  .product-parameter-section .__section-wrapper {
    padding-top: 2.4rem;
  }
  .product-parameter-section .__section-wrapper .__section-head .sk-title01 {
    font-size: 0.64rem;
    line-height: 0.85rem;
    text-align: center;
  }
  .product-parameter-section .__section-wrapper .__section-body {
    margin-top: 0.65rem;
    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;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right {
    margin-top: 0.64rem;
    max-width: 100%;
    width: 100%;
    color: #1f1f1f;
    overflow-x: auto;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    position: relative;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right table td,
  .product-parameter-section .__section-wrapper .__section-body .-right table th {
    min-width: 3.2rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right table td:first-child,
  .product-parameter-section .__section-wrapper .__section-body .-right table th:first-child {
    width: 1.76rem;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    left: 0;
    background: #FFFFFF;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item {
    margin: 0 auto;
    width: 100%;
    max-width: 3.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .img-container {
    position: relative;
    width: 100%;
    padding-top: calc((0.5625) * 100%);
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .img-container .img-box {
    object-fit: contain;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .name {
    margin-top: 0.18rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Medium);
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .type {
    margin-top: 0.05rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .colors {
    margin-top: 0.28rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.13rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead .product_item .colors .color {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background: var(--p-color);
  }
  .product-parameter-section .__section-wrapper .__section-body .-right thead tr.h_empty {
    height: 0.54rem;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right tbody tr td {
    padding: 0.33rem 0.18rem;
    border-bottom: 0.01rem solid #d8d8d8;
    font-size: 0.26rem;
    line-height: 0.34rem;
    text-align: center;
    opacity: 0.7;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right tbody tr td:first-child {
    font-size: 0.28rem;
    line-height: 0.37rem;
    text-align: left;
    opacity: 1;
  }
  .product-parameter-section .__section-wrapper .__section-body .-right tbody tr.empty {
    height: 0.8rem;
  }
  .product-parameter-section.isBlack .__section-wrapper {
    padding-top: 2.4rem;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-head .sk-title01 {
    font-size: 0.64rem;
    line-height: 0.85rem;
    text-align: center;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body {
    margin-top: 0.65rem;
    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;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front {
    background-color: #000000;
    border: 0.03rem solid white;
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front input::-webkit-input-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front input::-moz-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front input:-moz-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front input:-ms-input-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front textarea::-webkit-input-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front textarea::-moz-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front textarea:-moz-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front textarea:-ms-input-placeholder {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front input {
    color: #ffffff;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-left .sk_select .-select-front::after {
    background: url(../images/target/base/hry/selectDown_w.svg) center center no-repeat;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right {
    margin-top: 0.64rem;
    max-width: 100%;
    width: 100%;
    color: #FFFFFF;
    overflow-x: auto;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    position: relative;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right table td,
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right table th {
    min-width: 3.2rem;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right table td:first-child,
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right table th:first-child {
    width: 1.76rem;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    left: 0;
    background: #000000;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item {
    margin: 0 auto;
    width: 100%;
    max-width: 3.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item .img-container {
    position: relative;
    width: 100%;
    padding-top: calc((0.5625) * 100%);
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item .img-container .img-box {
    object-fit: contain;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item .name {
    margin-top: 0.18rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Medium);
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item .type {
    margin-top: 0.05rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item .colors {
    margin-top: 0.28rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.13rem;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead .product_item .colors .color {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background: var(--p-color);
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right thead tr.h_empty {
    height: 0.54rem;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right tbody tr td {
    padding: 0.33rem 0.18rem;
    border-bottom: 0.02rem solid rgba(255, 255, 255, 0.1490196078);
    font-size: 0.26rem;
    line-height: 0.34rem;
    text-align: center;
    opacity: 0.7;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right tbody tr td:first-child {
    font-size: 0.28rem;
    line-height: 0.37rem;
    text-align: left;
    opacity: 1;
  }
  .product-parameter-section.isBlack .__section-wrapper .__section-body .-right tbody tr.empty {
    height: 0.8rem;
  }
  .product-parameter-section.isGray .__section-wrapper {
    padding-top: 2.4rem;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-head .sk-title01 {
    font-size: 0.64rem;
    line-height: 0.85rem;
    text-align: center;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body {
    margin-top: 0.65rem;
    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;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-left .sk_select .-select-front {
    background-color: #39393A;
    border: 0.03rem solid white;
    color: #ffffff;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-left .sk_select .-select-front input {
    color: #ffffff;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-left .sk_select .-select-front::after {
    background: url(../images/target/base/hry/selectDown_w.svg) center center no-repeat;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right {
    margin-top: 0.64rem;
    max-width: 100%;
    width: 100%;
    color: #FFFFFF;
    overflow-x: auto;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    position: relative;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right table td,
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right table th {
    min-width: 3.2rem;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right table td:first-child,
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right table th:first-child {
    width: 1.76rem;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    left: 0;
    background: #39393A;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item {
    margin: 0 auto;
    width: 100%;
    max-width: 3.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item .img-container {
    position: relative;
    width: 100%;
    padding-top: calc((0.5625) * 100%);
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item .img-container .img-box {
    object-fit: contain;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item .name {
    margin-top: 0.18rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Medium);
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item .type {
    margin-top: 0.05rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item .colors {
    margin-top: 0.28rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.13rem;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead .product_item .colors .color {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background: var(--p-color);
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right thead tr.h_empty {
    height: 0.54rem;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right tbody tr td {
    padding: 0.33rem 0.18rem;
    border-bottom: 0.02rem solid rgba(255, 255, 255, 0.1490196078);
    font-size: 0.26rem;
    line-height: 0.34rem;
    text-align: center;
    opacity: 0.7;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right tbody tr td:first-child {
    font-size: 0.28rem;
    line-height: 0.37rem;
    text-align: left;
    opacity: 1;
  }
  .product-parameter-section.isGray .__section-wrapper .__section-body .-right tbody tr.empty {
    height: 0.8rem;
  }
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item {
  position: relative;
  width: 100%;
  height: calc((100% - 0.1rem) / 2);
  min-height: 4rem;
  background-color: #E4E4E6;
  border-radius: 0.08rem;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item:first-child {
  margin-bottom: 0.1rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .pc_title {
  position: absolute;
  top: 0.1rem;
  left: 0.21rem;
  font-size: 0.36rem;
  line-height: 0.48rem;
  opacity: 0.6;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .product_swiper_si {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .product_swiper_si .swiper-wrapper .swiper-slide {
  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;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .product_swiper_si .swiper-wrapper .swiper-slide .bg-img {
  width: auto;
  height: 3.15rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .product_swiper_si .swiper-wrapper .swiper-slide .tit {
  font-size: 0.36rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Medium);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .product_swiper_si .swiper-wrapper .swiper-slide .tip {
  margin-top: 0.09rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 1.48rem;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_wrapper::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_wrapper::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #E4E4E6;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_wrapper::-webkit-scrollbar-thumb:vertical {
  background-color: #E4E4E6;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_wrapper::-webkit-scrollbar-width {
  width: 0.08rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_wrapper::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_box {
  width: 1.48rem;
  min-height: 100%;
  padding: 0 0.24rem;
  background-color: #E4E4E6;
  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;
  gap: 0.2rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_box .thumbnail_item {
  width: 100%;
  height: 0.65rem;
  border-radius: 0.06rem;
  border: 0.01rem solid rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_box .thumbnail_item .thumbnail_img {
  width: 100%;
  height: 100%;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify .pro_classify_item .thumbnail_box .thumbnail_item.active {
  border: 0.01rem solid #000000;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m {
  width: 100%;
  height: 100%;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .top_tab {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .top_tab .tab_item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.19rem;
  text-align: center;
  border-radius: 0.1rem;
  font-size: 0.32rem;
  line-height: 0.42rem;
  font-family: var(--sk-font-Medium);
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .top_tab .tab_item.on {
  background-color: #E4E4E6;
  opacity: 1;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon {
  margin-top: 0.2rem;
  width: 100%;
  height: calc(100% - 1rem);
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #8d8d8d;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list::-webkit-scrollbar-thumb:vertical {
  background-color: #8d8d8d;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list::-webkit-scrollbar-width {
  width: 0.08rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list.on {
  display: block;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list .pro_list_wrapper .pro_card {
  display: block;
  position: relative;
  width: 100%;
  height: 4.38rem;
  background-color: #E4E4E6;
  border-radius: 0.08rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list .pro_list_wrapper .pro_card:not(:last-child) {
  margin-bottom: 0.2rem;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list .pro_list_wrapper .pro_card .pro_img {
  width: 100%;
  height: 100%;
}
.g-header .nav-dropdown-menu-wrapper .nav-dropdown-menu .right-content .product-box .pro_classify_m .bottom_tabcon .pro_list .pro_list_wrapper .pro_card .pro_tit {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  font-size: 0.36rem;
  line-height: 0.48rem;
}

.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box {
  padding: 0.1rem 0.4rem 0.38rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab {
  width: 4.65rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0.1rem 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab .tab_item {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.13rem;
  cursor: pointer;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab .tab_item:not(:last-child) {
  margin-bottom: 0.13rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab .tab_item .name {
  font-size: 0.2rem;
  line-height: 0.27rem;
  color: #000;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab .tab_item .svg {
  width: 0.18rem;
  height: 0.18rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab .tab_item.on .name {
  opacity: 1;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab .tab_item.on .svg {
  opacity: 1;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .left_tab .tab_item:hover .name {
  opacity: 1;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon {
  width: calc(100% - 4.65rem);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #E4E4E6;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list::-webkit-scrollbar-thumb:vertical {
  background-color: #E4E4E6;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list::-webkit-scrollbar-width {
  width: 0.08rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list {
  display: none;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list.on {
  display: block;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list_wrapper .pro_card {
  width: 2.9rem;
  display: block;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list_wrapper .pro_card .pro_img {
  width: 100%;
  height: 1.9rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  object-fit: contain;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list_wrapper .pro_card .pro_tit {
  margin-top: 0.1rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Medium);
  text-align: center;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .product-box .right_tabcon .pro_list_wrapper .pro_card:hover .pro_img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.about-page .introduction__section .introduction__section-wrapper .content {
  line-height: 0.6rem;
}

@media screen and (min-width: 800px) {
  .index-page .banner-section .banner-swiper .swiper-slide .content-tox {
    -webkit-box-align: unset;
    -webkit-align-items: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .index-page .banner-section .banner-swiper .swiper-slide .content-tox .wal {
    margin-top: 12%;
  }
  .cookie-policy-popup .title {
    font-size: 0.2rem;
  }
  .cookie-policy-popup .content-txt {
    font-size: 0.16rem;
  }
  .g__footer .g__footer-content .footer-logo-box .footer-mask {
    background-color: #E7E7E7;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li {
    margin-top: 0.6rem;
  }
  .join-page .employee__style .employee__style-wrapper .employee__style-body .employee__style-list ul li:first-child {
    margin-top: 0;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box1 {
    margin-top: 1rem;
  }
  .yzlite-product-detail-page .easily_handle_section .card_list .card-li.isWide .p_wrapper .content-box .decorate_box2 {
    right: 5.1rem;
    top: 1.2rem;
  }
  .yzlite-product-detail-page .battery_life_section .parallax_section .parallax_content .wal .content-box .cdesc,
  .yzlite-product-detail-page .performance_section .obstacle_climbing .sdesc,
  .yzlite-product-detail-page .comfortable_cycling ._top ._box ._top_left .cdesc {
    line-height: 0.38rem;
  }
  .yzlite-product-detail-page .performance_section .obstacle_climbing .card_list_1 .card-li .p_wrapper .content-box .cdesc2 {
    line-height: 0.24rem;
  }
  .yzlite-product-detail-page .easily_handle_section .racing_uphill_wrapper .racing_uphill .adv_item {
    top: 40%;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_list {
    background-color: transparent;
    box-shadow: none;
  }
  .yzlite-product-detail-page .smart_drive_section .card_list .card-li .p_wrapper .content-box .adv_list .adv_item {
    background-color: #FFF;
  }
}
@media screen and (max-width: 800px) {
  .about-page .introduction__section .introduction__section-wrapper .content {
    line-height: 0.74rem;
  }
}
