@charset "UTF-8";
@font-face {
  font-family: "ARCHIA-Regular";
  src: url(../fonts/ARCHIA-REGULAR.OTF) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url(../fonts/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url(../fonts/Montserrat-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url(../fonts/Montserrat-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url(../fonts/Montserrat-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url(../fonts/Montserrat-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
}
:root {
  /* 字体语义化变量：明确指向 Montserrat 家族及对应字重 */
  --sk-font-Montserrat-Light: "Montserrat-Regular", sans-serif;
  --sk-font-Montserrat-Regular: "Montserrat-Regular", sans-serif;
  --sk-font-Montserrat-Medium: "Montserrat-Medium", sans-serif;
  --sk-font-Montserrat-SemiBold: "Montserrat-SemiBold", sans-serif;
  --sk-font-Montserrat-Bold: "Montserrat-Bold", sans-serif;
  --sk-font-Montserrat-ExtraBold: "Montserrat-ExtraBold", sans-serif;
  --sk-font-Montserrat-Num: "Montserrat-Regular", sans-serif;
  /* Archia 家族保持原有语义 */
  --sk-font-ARCHIA-Regular: "ARCHIA-Regular", sans-serif;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
 * 富文本初始化
 */
/* 全局样式变量 */
:root {
  --sk-font-ARCHIA-Regular: 'ARCHIA-Regular';
  --headH: 0;
  /* 以下颜色根据设计稿的不同来设置 */
  --sk-global-color: #E60012; /* -------------- 主题色 ---------------*/
  --fcolor-default: #000000; /* -------------- 字体默认色 ---------------*/
  --fcolor-black: #000000;
  --fz-h1: .56rem; /* -------------- 一级标题字号 ---------------*/
  --fz-h2: .48rem; /* -------------- 一级标题字号 ---------------*/
  --fz-context: .28rem; /* -------------- 正文字号 ------------------*/
  --lh-h1: .56rem; /* -------------- 一级标题行高 ---------------*/
  --lh-h2: .56rem; /* -------------- 二级标题行高 ---------------*/
  --lh-context: .56rem; /* -------------- 正文行高 -------------------*/
  /* 层级 */
  --sk-zIndex-1: 1; /* --------------页面元素层级 --*/
  --sk-zIndex-2: 2; /* --------------页面元素层级 --*/
  --sk-zIndex-3: 3; /* --------------页面元素层级 --*/
  --sk-zIndex-10: 10; /* --------------页面元素层级 --*/
  --sk-zIndex-100: 100; /* --------------头部导航层级 --*/
  --sk-zIndex-999: 999; /* --------------弹窗层级 ------*/
  --sk-zIndex-1000: 1000;
}

@-webkit-keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
            transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
            transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@media screen and (min-width: 800px) {
  .fadeInUpSmall {
    opacity: 0;
    -webkit-animation-name: fadeInUpSmall;
            animation-name: fadeInUpSmall;
  }
}
@media screen and (max-width: 800px) {
  .fadeInUpSmall {
    visibility: visible !important;
  }
}

.svg-ctx {
  object-fit: contain;
}
.svg-ctx path {
  fill: currentColor;
}
.svg-ctx ellipse {
  stroke: currentColor;
}

.fit-image {
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.fit-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topA {
  cursor: pointer;
  position: fixed;
  z-index: 9;
  right: 0.3rem;
  bottom: 0.6rem;
  border-radius: 50%;
  width: 0.48rem;
  height: 0.48rem;
  opacity: 0;
  visibility: hidden;
  background: url(../images/base/demoImg/topA.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topA.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .topA {
    right: 0.42rem;
    bottom: 1.2rem;
    width: 0.64rem;
    height: 0.64rem;
  }
}

.blocker {
  z-index: 100 !important;
}

.modal {
  width: 100% !important;
  max-width: 11rem !important;
  padding: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.modal-video .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal-video .video-container > video,
.modal-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-video .video-container iframe html body video {
  width: 100% !important;
  height: 100% !important;
}

.-scroll {
  max-height: 1.2rem;
  overflow: auto;
}
.-scroll::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #666666;
}
.-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #666666;
}
.-scroll::-webkit-scrollbar-width {
  width: 0.08rem;
}
.-scroll::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
@media screen and (max-width: 800px) {
  .-scroll {
    max-height: 2.4rem;
  }
}

.sk_select {
  --h: .48rem;
  position: relative;
  width: 1.8rem;
}
.sk_select.-full {
  width: 100%;
}
.sk_select.on {
  z-index: 2;
}
.sk_select.on .-select-front::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk_select .-select-front {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.12rem 0.2rem;
  height: var(--h);
  background: white;
  border-radius: 0.08rem;
}
.sk_select .-select-front input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  pointer-events: none;
  width: 100%;
  font-size: 0.16rem;
}
.sk_select .-select-front::after {
  content: "";
  width: 0.16rem;
  height: 0.16rem;
  background: url(../images/base/selectDown.svg) center center no-repeat;
  background-size: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.1rem;
  left: 0;
  box-shadow: 0px 0px 0.2rem 0px rgba(218, 218, 218, 0.25);
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
}
.sk_select .-select-layer .-inner {
  background-color: white;
  border-radius: 0.08rem;
  padding: 0.16rem 0.04rem 0.21rem 0.22rem;
}
.sk_select .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.12rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.sk_select .-select-layer .-inner dl dd:hover {
  color: #000;
}
@media screen and (max-width: 800px) {
  .sk_select {
    --h: .9rem;
    width: 100%;
  }
  .sk_select .-select-front {
    padding: 0.33rem 0.2rem 0.33rem 0.3rem;
    height: var(--h);
  }
  .sk_select .-select-front input {
    font-size: 0.26rem;
  }
  .sk_select .-select-front::after {
    width: 0.32rem;
    height: 0.32rem;
  }
  .sk_select .-select-layer .-inner {
    border-radius: 0.08rem;
    padding: 0.24rem 0.2rem 0.3rem 0.24rem;
  }
  .sk_select .-select-layer .-inner dl dd {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}

.-sk-nav {
  position: -webkit-sticky;
  position: sticky;
  top: var(--headH);
  border-bottom: 0.01rem solid #E8E8E8;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.15rem);
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-sk-nav.-top0 {
  top: 0;
}
.-sk-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 0.6rem;
}
.-sk-nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.64rem;
}
.-sk-nav ul li:last-child {
  margin-right: 0;
}
.-sk-nav ul li.on a {
  color: #000;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
.-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;
}

/* ==========================================================================
   Semantic Utility Classes (Tailwind-inspired)
   Derived from herry.scss and frequently used across pages
   Prefixes: u- (utility), c- (component), t- (typography)
   ========================================================================== */
.u-flex-between {
  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;
}

.u-flex-center {
  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;
}

.u-flex-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.u-flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.u-section-padding {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .u-section-padding {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
}

.t-heading-hero {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.56rem;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .t-heading-hero {
    font-size: 0.64rem;
  }
}

.t-heading-section {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.4rem;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .t-heading-section {
    font-size: 0.48rem;
  }
}

.t-text-subtitle {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.24rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 800px) {
  .t-text-subtitle {
    font-size: 0.32rem;
  }
}

.t-text-description {
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 800px) {
  .t-text-description {
    font-size: 0.24rem;
  }
}

.t-text-label {
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  font-size: 0.14rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 800px) {
  .t-text-label {
    font-size: 0.22rem;
  }
}

.u-text-white {
  color: #FFFFFF !important;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.c-button-primary {
  --btn-border-color: #000000;
  --btn-color-hover: #FFFFFF;
  height: 0.48rem;
  padding: 0 0.5rem;
  color: var(--btn-border-color);
  border: 1px solid var(--btn-border-color);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  position: relative;
  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;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .c-button-primary {
    height: 0.8rem;
    padding: 0 0.8rem;
    font-size: 0.24rem;
  }
}
.c-button-primary::before {
  content: "";
  background: var(--btn-border-color);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-102%);
      -ms-transform: translateY(-102%);
          transform: translateY(-102%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  z-index: 0;
}
.c-button-primary .btn-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
@media screen and (min-width: 800px) {
  .c-button-primary:hover {
    color: var(--btn-color-hover);
  }
  .c-button-primary:hover::before {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-button-primary.ffffff {
  --btn-border-color: #FFFFFF;
  --btn-color-hover: #000000;
}

.c-link-animate {
  --color: #000000;
  cursor: pointer;
}
.c-link-animate .text-underline {
  background-image: -webkit-linear-gradient(top, transparent 97%, var(--color) 0);
  background-image: linear-gradient(to bottom, transparent 97%, var(--color) 0);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 100%;
  padding-bottom: 2px;
  text-decoration: none;
  -webkit-transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
}
@media screen and (min-width: 800px) {
  .c-link-animate:hover .text-underline {
    background-size: 100% 100%;
  }
}
.c-link-animate.on .text-underline {
  background-size: 100% 100%;
}
.c-link-animate.ffffff {
  --color: #FFFFFF;
}

.c-breadcrumb-nav .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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-breadcrumb-nav .ul .li {
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb-nav .ul .li a {
  color: inherit;
}
.c-breadcrumb-nav .ul .li a:hover {
  color: #000;
}
.c-breadcrumb-nav .ul .li .sep {
  margin: 0 0.1rem;
}
.c-breadcrumb-nav .ul .li:last-child {
  color: #000;
}
.c-breadcrumb-nav .ul .li:last-child a {
  cursor: default;
}
.c-breadcrumb-nav.ffffff .ul .li {
  color: rgba(255, 255, 255, 0.6);
}
.c-breadcrumb-nav.ffffff .ul .li a:hover {
  color: #fff;
}
.c-breadcrumb-nav.ffffff .ul .li:last-child {
  color: #fff;
}

.u-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.u-img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.c-img-container {
  overflow: hidden;
}
.c-img-container img {
  width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.c-img-container.hover-zoom:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/* 集合属性（主题样式） */
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-Montserrat-Regular);
  font-weight: 400;
  font-size: 12px;
  color: var(--fcolor-default);
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  background-color: white;
}
body.show {
  opacity: 1;
}

a {
  color: var(--fcolor-default);
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:active {
  star: expression(this.onFocus=this.blur());
}
a:link {
  text-decoration: none;
  outline: none;
}
a:visited {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
  outline: none;
}

li {
  list-style: outside none;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}

textarea,
input {
  background: transparent;
  color: var(--fcolor-default);
  outline: none;
  border: 0;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}

em {
  font-style: normal;
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  object-fit: cover;
}

.demo-page {
  padding-bottom: 3rem;
}
.demo-page .bg-gray {
  background-color: #f5f5f5;
}
.demo-page .bg-wihte {
  background-color: #ffffff;
}
.demo-page img, .demo-page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-page .page-main {
  overflow: hidden;
}
.demo-page .page-main .wal {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.demo-page .page-main .wal .-container {
  margin-top: 0.64rem;
}
.demo-page .page-main .wal .-container:first-child {
  margin-top: 0;
}
.demo-page .page-main .wal .-container .-title {
  font-size: 0.28rem;
}
.demo-page .page-main .wal .-container .-body {
  padding: 0.2rem;
  border-radius: 0.08rem;
  margin-top: 0.32rem;
}
.demo-page .page-main .wal .-container .-body.nopading {
  padding: 0;
}

.wal {
  max-width: 17.6rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1700px) {
  body {
    font-size: 16px;
  }
  html {
    font-size: 94px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }
  html {
    font-size: 82px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 68px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 70px;
  }
}
@media screen and (min-width: 800px) {
  .pc-show {
    display: block;
  }
  .phone-show {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 50px;
  }
  .wal {
    width: 100%;
    padding: 0 0.3rem;
  }
  .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;
  }
}
.g-text-hry-hover {
  --color: #000000;
}
@media screen and (min-width: 800px) {
  .g-text-hry-hover:not(.no-hover):hover .text-underline {
    background-size: 100% 100%;
  }
}
.g-text-hry-hover.on .text-underline {
  background-size: 100% 100%;
}
.g-text-hry-hover .text-underline {
  background-image: -webkit-linear-gradient(top, transparent 96%, var(--color) 0);
  background-image: linear-gradient(to bottom, transparent 96%, var(--color) 0);
  background-repeat: no-repeat;
  background-size: 0 100%;
  text-decoration: none;
  -webkit-transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
}

.g-text-hover, .outdoor-page .g-text-hover-fff {
  --color: #000000;
}
.g-text-hover .text-underline, .outdoor-page .g-text-hover-fff .text-underline {
  background-image: -webkit-linear-gradient(top, transparent 97%, var(--color) 0);
  background-image: linear-gradient(to bottom, transparent 97%, var(--color) 0);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 100%;
  padding-bottom: var(--line-position, 0.02rem);
  text-decoration: none;
  -webkit-transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
}
@media screen and (min-width: 800px) {
  .g-text-hover:hover .text-underline, .outdoor-page .g-text-hover-fff:hover .text-underline {
    background-size: 100% 100%;
  }
}

.g-more-btn {
  --btn-border-color: #000000;
  --btn-color-hover: #FFFFFF;
  height: 0.48rem;
  padding: 0 0.5rem;
  color: var(--btn-border-color);
  border: 1px solid var(--btn-border-color);
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  position: relative;
  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;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .g-more-btn {
    height: 0.8rem;
    padding: 0 0.8rem;
    font-size: 0.24rem;
  }
}
@media screen and (min-width: 800px) {
  .g-more-btn:hover {
    color: var(--btn-color-hover);
  }
  .g-more-btn:hover::before {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.g-more-btn::before {
  content: "";
  background: var(--btn-border-color);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-102%);
      -ms-transform: translateY(-102%);
          transform: translateY(-102%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  z-index: 0;
}
.g-more-btn .btn-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.g-more-btn.ffffff {
  --btn-border-color: #FFFFFF;
  --btn-color-hover: #000000;
}
.g-more-btn.plain-fff {
  --btn-border-color: #FFFFFF;
  --btn-color-hover: #000000;
  color: var(--btn-color-hover);
}
.g-more-btn.plain-fff::before {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 800px) {
  .g-more-btn.plain-fff:hover {
    opacity: 0.8;
  }
}
.g-more-btn.plain-000 {
  --btn-border-color: #000000;
  --btn-color-hover: #FFFFFF;
  color: var(--btn-color-hover);
}
.g-more-btn.plain-000::before {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 800px) {
  .g-more-btn.plain-000:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 800px) {
  .g-more-btn.phone_hover {
    color: var(--btn-color-hover);
  }
  .g-more-btn.phone_hover::before {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

.error-page {
  height: 100vh;
  width: 100vw;
  background: #000000;
}
.error-page .main {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #FFFFFF;
  -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;
}
@media screen and (max-width: 800px) {
  .error-page .main {
    padding-bottom: 1.2rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.error-page .main .h1 {
  font-size: 0.72rem;
  line-height: 0.86rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .error-page .main .h1 {
    font-size: 0.96rem;
    line-height: 1.15rem;
  }
}
.error-page .main .text {
  margin-top: 0.16rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.24rem;
  line-height: 0.29rem;
  width: 4.01rem;
}
@media screen and (max-width: 800px) {
  .error-page .main .text {
    width: 100%;
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
}
.error-page .main .g-more-btn {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .error-page .main .g-more-btn {
    margin-top: 0.6rem;
  }
}

.__crumb {
  padding-top: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .__crumb {
    padding-top: 0.3rem;
  }
}
.__crumb.ffffff {
  --crumb-color: rgba(255, 255, 255, 0.4);
  --crumb-color-hover: rgba(255, 255, 255, 1);
}
.__crumb .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;
}
.__crumb .ul .li {
  font-size: 0.14rem;
  line-height: 0.17rem;
  color: var(--crumb-color, rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 800px) {
  .__crumb .ul .li {
    font-size: 0.22rem;
    line-height: 0.27rem;
  }
}
.__crumb .ul .li:last-child a {
  color: var(--crumb-color-hover, rgb(0, 0, 0));
  cursor: default;
}
.__crumb .ul .li a {
  font-size: 0.14rem;
  line-height: 0.17rem;
  color: var(--crumb-color, rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 800px) {
  .__crumb .ul .li a {
    font-size: 0.22rem;
    line-height: 0.27rem;
  }
}
.__crumb .ul .li a:hover {
  color: var(--crumb-color-hover, rgb(0, 0, 0));
}
.__crumb .ul .li .sep {
  display: inline-block;
  margin: 0 0.08rem;
}
@media screen and (max-width: 800px) {
  .__crumb .ul .li .sep {
    margin: 0 0.1rem;
  }
}

.privacy-page {
  padding-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .privacy-page {
    padding-top: 0;
  }
}
.privacy-page .__crumb {
  padding: 0.2rem;
}
.privacy-page .main {
  margin-top: 0.63rem;
  max-width: 10rem;
}
@media screen and (max-width: 800px) {
  .privacy-page .main {
    margin-top: 2.4rem;
  }
}
.privacy-page .main .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  text-align: center;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .privacy-page .main .h1 {
    text-align: left;
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.privacy-page .main .html-box {
  margin-top: 1.01rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .privacy-page .main .html-box {
    margin-top: 0.4rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.privacy-page .main .html-box ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.privacy-page .main .html-box ul li {
  display: list-item;
  list-style-type: inherit;
}

.privacy-policy-dialogue__wrapper {
  position: fixed;
  z-index: 50;
  width: 5rem;
  bottom: 0.2rem;
  right: 0.2rem;
  background: #000000;
  padding: 0.2rem 0.3rem;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .privacy-policy-dialogue__wrapper {
    width: calc(100% - 0.6rem);
    right: 0.3rem;
    bottom: 0.17rem;
    padding: 0.33rem 0.3rem 0.3rem;
  }
}
.privacy-policy-dialogue__wrapper.show {
  opacity: 1;
  visibility: visible;
}
.privacy-policy-dialogue__wrapper .text {
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .privacy-policy-dialogue__wrapper .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.privacy-policy-dialogue__wrapper .text a {
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .privacy-policy-dialogue__wrapper .text a {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.privacy-policy-dialogue__wrapper .text a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.privacy-policy-dialogue__wrapper .btn-s {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-dialogue__wrapper .btn-s {
    margin-top: 0.49rem;
  }
}
.privacy-policy-dialogue__wrapper .btn-s .g-more-btn {
  width: calc(50% - 0.1rem);
}
@media screen and (max-width: 800px) {
  .privacy-policy-dialogue__wrapper .btn-s .g-more-btn {
    width: calc(50% - 0.15rem);
  }
}

.search-page .main .head-box {
  margin-top: 1.64rem;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box {
    margin-top: 2.4rem;
  }
}
.search-page .main .head-box .title-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.search-page .main .head-box .title-box .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .title-box .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.search-page .main .head-box .title-box .num {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .title-box .num {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.search-page .main .head-box .search-box {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .search-box {
    margin-top: 1rem;
    height: 0.8rem;
  }
}
.search-page .main .head-box .search-box .input-box {
  height: 100%;
  width: 6.4rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .search-box .input-box {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.search-page .main .head-box .search-box .input-box input {
  width: 100%;
  height: 100%;
  border: 0.01rem solid #000000;
  padding: 0.12rem 0.8rem 0.12rem 0.2rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .search-box .input-box input {
    padding: 0.28rem 1.2rem 0.28rem 0.2rem;
    font-size: 0.24rem;
  }
}
.search-page .main .head-box .search-box .input-box input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.search-page .main .head-box .search-box .input-box input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.search-page .main .head-box .search-box .input-box input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.search-page .main .head-box .search-box .input-box input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.search-page .main .head-box .search-box .input-box .clear-btn {
  position: absolute;
  cursor: pointer;
  right: 0.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .search-box .input-box .clear-btn {
    font-size: 0.24rem;
  }
}
.search-page .main .head-box .search-box .input-box .clear-btn:hover {
  color: #000;
}
.search-page .main .head-box .search-box .search-btn {
  height: 100%;
  width: 0.72rem;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #000000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .search-box .search-btn {
    width: 1rem;
  }
}
@media screen and (min-width: 800px) {
  .search-page .main .head-box .search-box .search-btn:hover {
    opacity: 0.8;
  }
}
.search-page .main .head-box .search-box .search-btn .icon {
  height: 0.22rem;
  width: 0.22rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .head-box .search-box .search-btn .icon {
    height: 0.36rem;
    width: 0.36rem;
  }
}
.search-page .main .hr {
  border-top: 1px solid #D8D8D8;
}
.search-page .main .class-section {
  margin-top: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.search-page .main .class-section::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 800px) {
  .search-page .main .class-section {
    margin-top: 0.6rem;
  }
}
.search-page .main .class-section .class_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.search-page .main .class-section .class_wrapper .class-li {
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  margin-right: 0.36rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .search-page .main .class-section .class_wrapper .class-li {
    margin-right: 0.36rem;
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.search-page .main .class-section .class_wrapper .class-li:last-child {
  margin-right: 0;
}
.search-page .main .class-section .class_wrapper .class-li:hover {
  color: #000000;
}
.search-page .main .class-section .class_wrapper .class-li.on {
  color: #000000;
  -moz-text-decoration-line: underline;
       text-decoration-line: underline;
}
.search-page .main .content-section {
  margin-top: 0.3rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section {
    margin-top: 0.5rem;
  }
}
.search-page .main .content-section .products-content {
  display: none;
}
.search-page .main .content-section .products-content.show {
  display: block;
}
.search-page .main .content-section .products-content .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.3rem -0.15rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .products-content .card-list {
    margin: -0.3rem -0.05rem;
  }
}
.search-page .main .content-section .products-content .card-list .card-box {
  width: calc((100% - 1.2rem) / 4);
  margin: 0.3rem 0.15rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .products-content .card-list .card-box {
    width: calc((100% - 0.2rem) / 2);
    margin: 0.3rem 0.05rem;
  }
}
@media screen and (min-width: 800px) {
  .search-page .main .content-section .products-content .card-list .card-box:hover .img-box img:hover {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.search-page .main .content-section .products-content .card-list .card-box .img-box {
  width: 100%;
  height: 4.18rem;
  background: #F0EFEB;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .products-content .card-list .card-box .img-box {
    height: 3.4rem;
  }
}
.search-page .main .content-section .products-content .card-list .card-box .img-box img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.search-page .main .content-section .products-content .card-list .card-box .name {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .products-content .card-list .card-box .name {
    margin-top: 0.3rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.search-page .main .content-section .products-content .btn-box {
  margin-top: 0.6rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .products-content .btn-box {
    margin-top: 0.8rem;
  }
}
.search-page .main .content-section .case-study-content {
  display: none;
}
.search-page .main .content-section .case-study-content.show {
  display: block;
}
.search-page .main .content-section .case-study-content .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.3rem -0.15rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .case-study-content .card-list {
    margin: -0.3rem -0.05rem;
  }
}
.search-page .main .content-section .case-study-content .card-list .card-box {
  width: calc((100% - 1.2rem) / 4);
  margin: 0.3rem 0.15rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .case-study-content .card-list .card-box {
    width: calc((100% - 0.2rem) / 2);
    margin: 0.3rem 0.05rem;
  }
}
@media screen and (min-width: 800px) {
  .search-page .main .content-section .case-study-content .card-list .card-box:hover .img-box img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.search-page .main .content-section .case-study-content .card-list .card-box .img-box {
  height: 5.23rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .case-study-content .card-list .card-box .img-box {
    height: 4.25rem;
  }
}
.search-page .main .content-section .case-study-content .card-list .card-box .img-box .img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .case-study-content .card-list .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.search-page .main .content-section .case-study-content .card-list .card-box .name {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .case-study-content .card-list .card-box .name {
    margin-top: 0.3rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.search-page .main .content-section .case-study-content .btn-box {
  margin-top: 0.6rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .case-study-content .btn-box {
    margin-top: 0.8rem;
  }
}
.search-page .main .content-section .news-content {
  display: none;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content {
    margin-top: 0.2rem;
  }
}
.search-page .main .content-section .news-content.show {
  display: block;
}
.search-page .main .content-section .news-content .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.3rem -0.15rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content .card-list {
    margin: -0.3rem 0;
  }
}
.search-page .main .content-section .news-content .card-list .card-box {
  width: calc((100% - 0.6rem) / 2);
  margin: 0.3rem 0.15rem;
  display: -webkit-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-page .main .content-section .news-content .card-list .card-box {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0.3rem 0;
  }
}
.search-page .main .content-section .news-content .card-list .card-box:hover .img-box img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.search-page .main .content-section .news-content .card-list .card-box .img-box {
  height: 2.36rem;
  width: 4.18rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content .card-list .card-box .img-box {
    width: 100%;
    height: 3.89rem;
  }
}
.search-page .main .content-section .news-content .card-list .card-box .img-box .img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content .card-list .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.search-page .main .content-section .news-content .card-list .card-box .con-text {
  margin-left: 0.3rem;
  padding-bottom: 0.21rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content .card-list .card-box .con-text {
    margin-left: 0;
    margin-top: 0.3rem;
    padding-bottom: 0;
  }
}
.search-page .main .content-section .news-content .card-list .card-box .con-text .date {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.16rem;
  line-height: 0.19rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content .card-list .card-box .con-text .date {
    margin-top: 0.3rem;
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.search-page .main .content-section .news-content .card-list .card-box .con-text .title {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content .card-list .card-box .con-text .title {
    margin-top: 0.3rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.search-page .main .content-section .news-content .btn-box {
  margin-top: 0.6rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .news-content .btn-box {
    margin-top: 0.8rem;
  }
}
.search-page .main .content-section .others-content {
  display: none;
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .others-content {
    margin-top: 0.9rem;
  }
}
.search-page .main .content-section .others-content.show {
  display: block;
}
.search-page .main .content-section .others-content .line-list {
  margin: -0.3rem 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;
  max-width: 11rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .others-content .line-list {
    margin: -0.4rem 0;
  }
}
.search-page .main .content-section .others-content .line-list .link-line {
  display: block;
  margin: 0.3rem 0;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .others-content .line-list .link-line {
    margin: 0.4rem 0;
  }
}
.search-page .main .content-section .others-content .line-list .link-line .title {
  font-size: 0.18rem;
  line-height: 0.28rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .others-content .line-list .link-line .title {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.search-page .main .content-section .others-content .line-list .link-line .text {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .others-content .line-list .link-line .text {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.search-page .main .content-section .others-content .line-list .link-line .link {
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #956730;
  -moz-text-decoration-line: underline;
       text-decoration-line: underline;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .others-content .line-list .link-line .link {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.search-page .main .content-section .others-content .btn-box {
  margin-top: 0.6rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .search-page .main .content-section .others-content .btn-box {
    margin-top: 0.8rem;
  }
}

@media screen and (max-width: 800px) {
  .contact-page {
    padding-top: 1.2rem;
  }
}
.contact-page .main {
  max-width: 15.2rem;
  margin-top: 1.64rem;
  padding-bottom: 1.05rem;
}
@media screen and (max-width: 800px) {
  .contact-page .main {
    margin-top: 0.63rem;
    padding-bottom: 1.18rem;
  }
}
.contact-page .main .h1 {
  text-align: center;
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .contact-page .main .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.contact-page .main .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.71rem;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box {
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-page .main .flex-box .left-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 1rem;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .left-box {
    padding-right: 0;
  }
}
.contact-page .main .flex-box .left-box .data-list .item-li {
  margin-bottom: 0.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .left-box .data-list .item-li {
    margin-bottom: 0.6rem;
  }
  .contact-page .main .flex-box .left-box .data-list .item-li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .left-box .data-list .item-li {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-page .main .flex-box .left-box .data-list .item-li .label {
  width: 1rem;
  padding-right: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .left-box .data-list .item-li .label {
    width: 100%;
    padding-right: 0;
    font-size: 0.28rem;
    line-height: 0.24rem;
  }
}
.contact-page .main .flex-box .left-box .data-list .item-li .value {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .left-box .data-list .item-li .value {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.contact-page .main .flex-box .form-box {
  margin-top: -0.5rem;
  width: 8.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.contact-page .main .flex-box .form-box .row2 {
  width: calc(50% - 0.2rem);
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row2 {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.contact-page .main .flex-box .form-box .row2 .input-box {
  position: relative;
}
.contact-page .main .flex-box .form-box .row2 .input-box.select-box input {
  cursor: pointer;
}
.contact-page .main .flex-box .form-box .row2 .input-box.active .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.contact-page .main .flex-box .form-box .row2 .input-box input {
  height: 0.64rem;
  width: 100%;
  font-size: 0.16rem;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row2 .input-box input {
    height: 0.86rem;
    font-size: 0.24rem;
  }
}
.contact-page .main .flex-box .form-box .row2 .input-box input:not(:-moz-placeholder) ~ .placeholder {
  opacity: 0;
}
.contact-page .main .flex-box .form-box .row2 .input-box input:not(:-ms-input-placeholder) ~ .placeholder {
  opacity: 0;
}
.contact-page .main .flex-box .form-box .row2 .input-box input:not(:placeholder-shown) ~ .placeholder {
  opacity: 0;
}
.contact-page .main .flex-box .form-box .row2 .input-box .placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.16rem;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row2 .input-box .placeholder {
    font-size: 0.24rem;
  }
}
.contact-page .main .flex-box .form-box .row2 .input-box .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.16rem;
  height: 0.16rem;
  right: 0;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row2 .input-box .icon {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.contact-page .main .flex-box .form-box .row2 .input-box .select-layer {
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.1rem);
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  padding: 0.16rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row2 .input-box .select-layer {
    padding: 0.24rem;
  }
}
.contact-page .main .flex-box .form-box .row2 .input-box .select-layer .select-item {
  font-size: 0.14rem;
  line-height: 0.17rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.13rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row2 .input-box .select-layer .select-item {
    font-size: 0.24rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }
}
.contact-page .main .flex-box .form-box .row2 .input-box .select-layer .select-item:hover {
  color: #000000;
}
.contact-page .main .flex-box .form-box .row2 .input-box .select-layer .select-item:last-child {
  margin-bottom: 0;
}
.contact-page .main .flex-box .form-box .row2 .input-box .select-layer .select-item.active {
  color: #000000;
}
.contact-page .main .flex-box .form-box .row2 .input-box .code-img {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.54rem;
  width: 1.3rem;
  object-fit: fill;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row2 .input-box .code-img {
    width: 2.2rem;
    height: 0.64rem;
  }
}
.contact-page .main .flex-box .form-box .row1 {
  width: 100%;
  margin-top: 0.3rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row1 {
    margin-top: 0.5rem;
  }
}
.contact-page .main .flex-box .form-box .row1 textarea {
  padding: 0.2rem 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
  border-bottom: 0.01rem solid #000000;
  height: 1.64rem;
  width: 100%;
  resize: none;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row1 textarea {
    padding: 0.31rem 0;
    font-size: 0.24rem;
    line-height: 1.3;
    height: 2.72rem;
  }
}
.contact-page .main .flex-box .form-box .row1 textarea:not(:-moz-placeholder) ~ .placeholder {
  opacity: 0;
}
.contact-page .main .flex-box .form-box .row1 textarea:not(:-ms-input-placeholder) ~ .placeholder {
  opacity: 0;
}
.contact-page .main .flex-box .form-box .row1 textarea:not(:placeholder-shown) ~ .placeholder {
  opacity: 0;
}
.contact-page .main .flex-box .form-box .row1 .placeholder {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.16rem;
  line-height: 0.24rem;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row1 .placeholder {
    font-size: 0.24rem;
    line-height: 1.3;
    top: 0.31rem;
  }
}
.contact-page .main .flex-box .form-box .row1 .g-more-btn {
  width: 100%;
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .contact-page .main .flex-box .form-box .row1 .g-more-btn {
    margin-top: 0.1rem;
  }
}

.privacy-policy-checkbox {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .privacy-policy-checkbox {
    margin-top: 0.3rem;
  }
}
.privacy-policy-checkbox .checkbox {
  width: 0.18rem;
  height: 0.18rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .privacy-policy-checkbox .checkbox {
    width: 0.24rem;
    height: 0.24rem;
    margin-top: 0.04rem;
  }
}
.privacy-policy-checkbox .checkbox .icon {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: fill;
}
.privacy-policy-checkbox .checkbox .icon.true {
  display: none;
}
.privacy-policy-checkbox .checkbox .icon.false {
  display: block;
}
.privacy-policy-checkbox .checkbox.on .true {
  display: block;
}
.privacy-policy-checkbox .text {
  margin-left: 0.1rem;
  margin-top: 0.01rem;
  font-size: 0.12rem;
  line-height: 0.15rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-checkbox .text {
    margin-left: 0.12rem;
    margin-top: 0;
    font-size: 0.22rem;
    line-height: 0.32rem;
  }
}
.privacy-policy-checkbox .text a {
  font-size: 0.12rem;
  line-height: 0.15rem;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 800px) {
  .privacy-policy-checkbox .text a {
    font-size: 0.22rem;
    line-height: 0.32rem;
  }
}
.privacy-policy-checkbox .text a:hover {
  color: #000000;
  text-decoration: underline;
}

.banner__section {
  height: 100vh;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .banner__section {
    height: 10.8rem;
  }
  .banner__section .__crumb {
    position: absolute;
    z-index: 5;
    bottom: 0.3rem;
  }
}
.banner__section .bg-img {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.banner__section .banner-box {
  position: relative;
  z-index: 4;
  height: 100%;
  width: 100%;
  padding: 0.8rem 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: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .banner__section .banner-box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.banner__section .banner-box .subtitle {
  font-size: 0.24rem;
  line-height: 0.29rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .banner__section .banner-box .subtitle {
    font-size: 0.32rem;
    line-height: 0.38rem;
    text-align: center;
  }
}
.banner__section .banner-box .h1 {
  margin-top: 0.16rem;
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .banner__section .banner-box .h1 {
    margin-top: 0.2rem;
    font-size: 0.56rem;
    line-height: 0.72rem;
    text-align: center;
  }
}
.banner__section .banner-box .h1 br {
  display: none;
}
@media screen and (max-width: 800px) {
  .banner__section .banner-box .h1 br {
    display: initial;
  }
}

.about-page .content___section {
  margin-top: 1.34rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .content___section {
    margin-top: 1.2rem;
    margin-bottom: 1.6rem;
  }
}
.about-page .content___section .h2 {
  text-align: center;
  max-width: 6.47rem;
  margin: 0 auto;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .content___section .h2 {
    max-width: 100%;
    font-size: 0.48rem;
    line-height: 0.58rem;
    text-align: left;
  }
}
.about-page .content___section .text {
  max-width: 8.4rem;
  text-align: center;
  margin: 0.24rem auto 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .content___section .text {
    margin: 0.24rem auto 1.2rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    text-align: left;
  }
}
.about-page .content___section .img-box {
  margin-top: 1.2rem;
  position: relative;
}
.about-page .content___section .img-box .img {
  width: 100%;
}
.about-page .content___section .img-box .g-more-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.about-page .content___section .img-box .play-box {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
}
.about-page .content___section .img-box .play-box .play-icon {
  width: 100%;
  height: 100%;
}
.about-page .vision-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .vision-section {
    margin-top: 1.6rem;
    margin-bottom: 1.64rem;
  }
}
.about-page .vision-section .vision-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-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .about-page .vision-section .vision-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-page .vision-section .vision-box .img-box {
  width: 8.8rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .about-page .vision-section .vision-box .img-box {
    width: 100%;
  }
}
.about-page .vision-section .vision-box .con-text {
  max-width: 6.4rem;
  margin-left: 1.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .vision-section .vision-box .con-text {
    margin-left: 0;
    margin-top: 0.7rem;
  }
}
.about-page .vision-section .vision-box .con-text .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .vision-section .vision-box .con-text .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.about-page .vision-section .vision-box .con-text .subtitle {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.29rem;
}
@media screen and (max-width: 800px) {
  .about-page .vision-section .vision-box .con-text .subtitle {
    margin-top: 0.3rem;
    font-size: 0.32rem;
    line-height: 0.39rem;
  }
}
.about-page .vision-section .vision-box .con-text .text {
  margin-top: 0.4rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .vision-section .vision-box .con-text .text {
    margin-top: 0.36rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.about-page .brand-journey-section {
  overflow: hidden;
  margin-bottom: 2.23rem;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section {
    margin-bottom: 1.6rem;
  }
}
.about-page .brand-journey-section .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-page .brand-journey-section .head .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .head .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.about-page .brand-journey-section .head .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-page .brand-journey-section .head .swiper-btn .btn-prev,
.about-page .brand-journey-section .head .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  color: #000;
  margin-left: 0.18rem;
  cursor: pointer;
}
.about-page .brand-journey-section .head .swiper-btn .btn-prev:hover .img path,
.about-page .brand-journey-section .head .swiper-btn .btn-next:hover .img path {
  fill-opacity: 1;
}
.about-page .brand-journey-section .head .swiper-btn .btn-prev .img,
.about-page .brand-journey-section .head .swiper-btn .btn-next .img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.about-page .brand-journey-section .head .swiper-btn .btn-prev .img path,
.about-page .brand-journey-section .head .swiper-btn .btn-next .img path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .brand-journey-section .journey-swiper {
  margin: 0.4rem -0.3rem 0;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper {
    margin-top: 0.6rem;
    width: 6.2rem;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .before {
  position: absolute;
  z-index: 2;
  top: 5.4rem;
  left: -0.5rem;
  height: 1px;
  width: calc(0.5rem + var(--half-width, 0));
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .before {
    top: 6.93rem;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide {
  width: 5.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide {
    width: auto;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide.on ~ * {
  --before-color: #D8D8D8;
  --text-color: rgba(0, 0, 0, 0.4);
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide:hover {
  --text-color: #000;
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .top-box {
  padding: 0 0.3rem;
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .top-box .img-box {
  width: 100%;
  height: 4.6rem;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .top-box .img-box {
    height: 5.6rem;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .top-box .img-box .img {
  height: 100%;
  width: 100%;
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box {
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box {
    margin-top: 0.6rem;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box .num {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--text-color, #000);
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box .num {
    font-size: 0.32rem;
    line-height: 0.24rem;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box .hr {
  margin: 0.26rem -0.5rem;
  width: calc(100% + 1rem);
  height: 1px;
  background-color: #D8D8D8;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box .hr {
    margin: 0.5rem -2rem;
    width: calc(100% + 4rem);
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box .hr:before {
  content: "";
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  background: #000;
  background-color: var(--before-color, #000);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .year-box .hr:before {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .bottom-box {
  margin-top: 0.4rem;
  padding: 0 0.3rem;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .bottom-box {
    margin-top: 0.83rem;
  }
}
.about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .bottom-box .text {
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .brand-journey-section .journey-swiper .swiper-wrapper .swiper-slide .bottom-box .text {
    text-align: left;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.about-page .green-commitments-section {
  margin-top: 2.23rem;
  height: 10.8rem;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .about-page .green-commitments-section {
    margin-top: 1.6rem;
    height: 13.6rem;
  }
}
.about-page .green-commitments-section .bg-img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.about-page .green-commitments-section .con-box {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
  padding-bottom: 0.4rem;
  -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) {
  .about-page .green-commitments-section .con-box {
    padding-bottom: 0.3rem;
  }
}
.about-page .green-commitments-section .con-box .top-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .green-commitments-section .con-box .top-box .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.about-page .green-commitments-section .con-box .top-box .subtitle {
  margin-top: 0.16rem;
  font-size: 0.24rem;
  line-height: 0.29rem;
}
@media screen and (max-width: 800px) {
  .about-page .green-commitments-section .con-box .top-box .subtitle {
    margin-top: 0.3rem;
    font-size: 0.32rem;
    line-height: 0.39rem;
  }
}
.about-page .green-commitments-section .con-box .top-box .text {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-width: 6.4rem;
}
@media screen and (max-width: 800px) {
  .about-page .green-commitments-section .con-box .top-box .text {
    margin-top: 0.36rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.about-page .green-commitments-section .con-box .top-box .g-more-btn {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .about-page .green-commitments-section .con-box .top-box .g-more-btn {
    margin-top: 0.41rem;
    height: 0.76rem;
  }
}
.about-page .green-commitments-section .con-box .bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about-page .green-commitments-section .con-box .bottom-box .card-box {
  width: 3.3rem;
  margin-left: 0.2rem;
  padding: 0.32rem 0.3rem 0.39rem;
  backdrop-filter: blur(0.5rem);
  background: rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 800px) {
  .about-page .green-commitments-section .con-box .bottom-box .card-box {
    width: calc(50% - 0.1rem);
    padding-bottom: 0.45rem;
  }
}
.about-page .green-commitments-section .con-box .bottom-box .card-box:first-child {
  margin-left: 0;
}
.about-page .green-commitments-section .con-box .bottom-box .card-box .icon {
  width: 0.64rem;
  height: 0.64rem;
}
.about-page .green-commitments-section .con-box .bottom-box .card-box .num-box {
  margin-top: 0.82rem;
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .green-commitments-section .con-box .bottom-box .card-box .num-box {
    margin-top: 0.84rem;
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.about-page .green-commitments-section .con-box .bottom-box .card-box .text {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.about-page .designers-section {
  padding-top: 1.63rem;
  padding-bottom: 1.51rem;
  background: #F0EFEB;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section {
    padding-top: 0;
    margin-top: 1.2rem;
    background: transparent;
    padding-bottom: 0;
    margin-bottom: 1.2rem;
  }
}
.about-page .designers-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about-page .designers-section .flex-box .left-img-list {
  height: 6rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section .flex-box .left-img-list {
    margin-top: 0.4rem;
    height: auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.about-page .designers-section .flex-box .left-img-list .img_wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section .flex-box .left-img-list .img_wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    height: 3.45rem;
  }
}
.about-page .designers-section .flex-box .left-img-list .img_wrapper .img-box {
  height: 100%;
  width: 100%;
}
.about-page .designers-section .flex-box .left-img-list .img_wrapper .img-box .img {
  height: 100%;
  width: 100%;
}
.about-page .designers-section .flex-box .left-img-list .img_wrapper .con-text {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section .flex-box .left-img-list .img_wrapper .con-text {
    padding: 0.4rem 0.41rem;
  }
}
.about-page .designers-section .flex-box .left-img-list .img_wrapper .con-text .name {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section .flex-box .left-img-list .img_wrapper .con-text .name {
    font-size: 0.28rem;
    line-height: 0.34rem;
  }
}
.about-page .designers-section .flex-box .left-img-list .img_wrapper .con-text .title {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section .flex-box .left-img-list .img_wrapper .con-text .title {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.about-page .designers-section .flex-box .right-text .text {
  width: 4rem;
  font-size: 0.32rem;
  line-height: 0.38rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .designers-section .flex-box .right-text .text {
    width: 100%;
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.about-page .experiences-section {
  margin-top: 1.2rem;
  margin-bottom: 1.33rem;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section {
    margin-bottom: 1.2rem;
  }
}
.about-page .experiences-section .h2 {
  text-align: center;
  max-width: 7rem;
  font-size: 0.32rem;
  line-height: 0.38rem;
  margin: 0 auto;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .h2 {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.about-page .experiences-section .flex-box {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.4rem;
  }
}
.about-page .experiences-section .flex-box .left-box {
  width: 7.8rem;
  padding: 0 1.5rem;
  text-align: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .left-box {
    width: 100%;
    padding: 0 0.3rem;
  }
}
.about-page .experiences-section .flex-box .left-box .text {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .left-box .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.about-page .experiences-section .flex-box .left-box .g-more-btn {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .left-box .g-more-btn {
    margin-top: 0.6rem;
  }
}
.about-page .experiences-section .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 0.8rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .right-box {
    width: 100%;
    padding: 0 0.3rem;
    margin-top: 1rem;
  }
}
.about-page .experiences-section .flex-box .right-box .case-swiper {
  height: 5.26rem;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .right-box .case-swiper {
    height: 7rem;
  }
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper {
  height: 100%;
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide {
  width: 4.2rem;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide {
    width: 5.6rem;
  }
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box {
  height: 100%;
  width: 100%;
  position: relative;
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box:hover .img-box .img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box .con-text {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0.2rem;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box .con-text {
    padding: 0.3rem;
  }
}
.about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box .con-text .title {
  color: #fff;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .about-page .experiences-section .flex-box .right-box .case-swiper .swiper-wrapper .swiper-slide .card-box .con-text .title {
    font-size: 0.28rem;
    line-height: 0.34rem;
  }
}
.about-page .experiences-section .flex-box .right-box .swiper-btn {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-prev,
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-next {
  width: 0.36rem;
  height: 0.36rem;
  color: #000;
  margin-left: 0.18rem;
  cursor: pointer;
}
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-prev:hover .img path,
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-next:hover .img path {
  fill-opacity: 1;
}
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-prev .img,
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-next .img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-prev .img path,
.about-page .experiences-section .flex-box .right-box .swiper-btn .btn-next .img path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about-page .outdoor-section {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-page .outdoor-section {
    height: 10.8rem;
  }
  .about-page .outdoor-section::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 25, 37, 0.15);
  }
}
.about-page .outdoor-section .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.about-page .outdoor-section .con-box {
  position: relative;
  z-index: 2;
  height: 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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1rem 2rem;
}
@media screen and (max-width: 800px) {
  .about-page .outdoor-section .con-box {
    padding: 1.2rem 0.3rem;
    -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;
  }
}
.about-page .outdoor-section .con-box .con-text {
  width: 6.4rem;
}
@media screen and (max-width: 800px) {
  .about-page .outdoor-section .con-box .con-text {
    text-align: center;
  }
}
.about-page .outdoor-section .con-box .con-text .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  color: #FFFFFF;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .about-page .outdoor-section .con-box .con-text .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
    text-align: center;
  }
}
.about-page .outdoor-section .con-box .con-text .text {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-page .outdoor-section .con-box .con-text .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
    text-align: center;
  }
}
.about-page .outdoor-section .con-box .con-text .g-more-btn {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .about-page .outdoor-section .con-box .con-text .g-more-btn {
    margin-top: 0.6rem;
  }
}

@media screen and (max-width: 800px) {
  .faq-page {
    padding-top: 1.2rem;
  }
}
.faq-page .main {
  margin-top: 1.64rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .faq-page .main {
    margin-top: 0.63rem;
  }
}
.faq-page .main .h1 {
  text-align: center;
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .faq-page .main .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.faq-page .main .flex-box {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box {
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq-page .main .flex-box .left-box {
  width: 4.47rem;
  padding: 0.1rem 1rem 0 0.14rem;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .left-box {
    margin: 0 -0.3rem;
    width: calc(100% + 0.6rem);
    padding: 0 0.3rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .faq-page .main .flex-box .left-box::-webkit-scrollbar {
    display: none;
  }
}
.faq-page .main .flex-box .left-box .anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .left-box .anchor-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.faq-page .main .flex-box .left-box .anchor-list .cell-box {
  margin-bottom: 0.3rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .left-box .anchor-list .cell-box {
    margin-bottom: 0;
    margin-right: 0.36rem;
    font-size: 0.24rem;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
.faq-page .main .flex-box .left-box .anchor-list .cell-box.on {
  color: #000;
}
.faq-page .main .flex-box .left-box .anchor-list .cell-box:hover {
  color: #000;
}
.faq-page .main .flex-box .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box {
    margin-top: 0.8rem;
  }
}
.faq-page .main .flex-box .right-box .item-box {
  margin-bottom: 1rem;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box .item-box {
    margin-bottom: 1.2rem;
  }
}
.faq-page .main .flex-box .right-box .item-box:last-child {
  margin-bottom: 0;
}
.faq-page .main .flex-box .right-box .item-box .head-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #D8D8D8;
}
.faq-page .main .flex-box .right-box .item-box .head-box .title {
  font-size: 0.32rem;
  line-height: 0.38rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box .item-box .head-box .title {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.faq-page .main .flex-box .right-box .item-box .head-box .num {
  font-size: 0.32rem;
  line-height: 0.38rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box .item-box .head-box .num {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item {
  border-bottom: 1px solid #D8D8D8;
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item.on .fold-cell .icon-box .icon.add {
  display: none;
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item.on .fold-cell .icon-box .icon.remove {
  display: block;
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell {
  padding: 0.25rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell {
    padding: 0.33rem 0;
  }
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell .cell-title {
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  padding-right: 0.85rem;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell .cell-title {
    font-size: 0.28rem;
    line-height: 0.42rem;
  }
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell .icon-box {
  width: 0.14rem;
  height: 0.14rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell .icon-box {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell .icon-box .icon {
  width: 100%;
  height: 100%;
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell .icon-box .icon.add {
  display: block;
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-cell .icon-box .icon.remove {
  display: none;
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-con {
  height: 0;
  overflow: hidden;
}
.faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-con .con-text {
  padding: 0.15rem 0 0.3rem;
  max-width: 10rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .faq-page .main .flex-box .right-box .item-box .fold-list .fold-item .fold-con .con-text {
    padding: 0.07rem 0.64rem 0.54rem 0;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}

@media screen and (max-width: 800px) {
  .download-page {
    padding-top: 1.2rem;
  }
}
.download-page .main {
  margin-top: 1.64rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .download-page .main {
    margin-top: 0.63rem;
  }
}
.download-page .main .head-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box .h1-num {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.download-page .main .head-box .h1-num .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  display: inline;
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box .h1-num .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
    display: inline-block;
    padding-right: 0.2rem;
  }
}
.download-page .main .head-box .h1-num .num {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box .h1-num .num {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.download-page .main .head-box .search-box {
  width: 4.18rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box .search-box {
    width: 100%;
    margin-top: 0.94rem;
  }
}
.download-page .main .head-box .search-box .icon {
  position: absolute;
  z-index: 1;
  height: 0.23rem;
  width: 0.23rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box .search-box .icon {
    width: 0.37rem;
    height: 0.37rem;
  }
}
.download-page .main .head-box .search-box input {
  width: 100%;
  padding: 0.14rem 0.8rem 0.14rem 0.3rem;
  font-size: 0.14rem;
  line-height: 0.17rem;
  border-bottom: 1px solid #000000;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box .search-box input {
    font-size: 0.24rem;
    line-height: 0.29rem;
    padding: 0.29rem 1.22rem 0.29rem 0.6rem;
  }
}
.download-page .main .head-box .search-box .a {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.14rem;
  line-height: 0.17rem;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .download-page .main .head-box .search-box .a {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.download-page .main .head-box .search-box .a:hover {
  color: #000000;
}
.download-page .main .content-box {
  padding-top: 0.7rem;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box {
    padding-top: 0.45rem;
  }
}
.download-page .main .content-box .class_wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .class_wrapper {
    overflow-x: auto;
    margin: 0.35rem -0.3rem 0.3rem;
    padding: 0.2rem 0.3rem;
    scrollbar-width: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.download-page .main .content-box .class_wrapper .mask-box {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 1.89rem;
  top: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  right: 0;
  background: -webkit-linear-gradient(right, #FFFFFF 21.67%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(-90deg, #FFFFFF 21.67%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  visibility: hidden;
}
.download-page .main .content-box .class_wrapper .mask-box.show {
  opacity: 1;
  visibility: visible;
}
.download-page .main .content-box .class_wrapper .mask-box .icon-box {
  pointer-events: auto;
  cursor: pointer;
  width: 0.14rem;
  height: 0.14rem;
}
.download-page .main .content-box .class_wrapper .mask-box .icon-box:hover path {
  fill-opacity: 1;
}
.download-page .main .content-box .class_wrapper .mask-box .icon-box .icon {
  height: 100%;
  width: 100%;
}
.download-page .main .content-box .class_wrapper .mask-box .icon-box .icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.download-page .main .content-box .class_wrapper .mask-box.left {
  left: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .class_wrapper .class_box {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.download-page .main .content-box .class_wrapper .class_box .class-item {
  padding-right: 0.36rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .class_wrapper .class_box .class-item {
    font-size: 0.24rem;
    line-height: 1.2;
  }
}
.download-page .main .content-box .class_wrapper .class_box .class-item:last-child {
  padding-right: 0;
}
.download-page .main .content-box .class_wrapper .class_box .class-item.on {
  color: #000;
}
.download-page .main .content-box .class_wrapper .class_box .class-item:hover {
  color: #000;
}
.download-page .main .content-box .por_wrapper {
  padding-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .por_wrapper {
    padding-top: 0.15rem;
  }
}
.download-page .main .content-box .por_wrapper .card-list {
  margin: -0.15rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .por_wrapper .card-list {
    margin: -0.3rem -0.05rem;
  }
}
.download-page .main .content-box .por_wrapper .card-list .card-box {
  width: calc((100% - 1.2rem) / 4);
  margin: 0.15rem;
  background: #F0EFEB;
  height: 4.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .por_wrapper .card-list .card-box {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc((100% - 0.2rem) / 2);
    margin: 0.3rem 0.05rem;
    background: transparent;
    height: auto;
  }
}
@media screen and (min-width: 800px) {
  .download-page .main .content-box .por_wrapper .card-list .card-box:hover .a-list {
    opacity: 1;
    visibility: visible;
  }
}
.download-page .main .content-box .por_wrapper .card-list .card-box .card-content {
  padding: 0.4rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .por_wrapper .card-list .card-box .card-content {
    padding: 0;
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.download-page .main .content-box .por_wrapper .card-list .card-box .card-content .img-box {
  height: 3.2rem;
  width: 2.6rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .por_wrapper .card-list .card-box .card-content .img-box {
    height: 3.9rem;
    width: 100%;
    background: #F0EFEB;
    padding: 0.54rem;
  }
}
.download-page .main .content-box .por_wrapper .card-list .card-box .card-content .img-box .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.download-page .main .content-box .por_wrapper .card-list .card-box .a-list {
  position: absolute;
  z-index: 2;
  right: 0.31rem;
  top: 1.56rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.download-page .main .content-box .por_wrapper .card-list .card-box .a-list .link {
  margin-bottom: 0.4rem;
  display: block;
  width: 0.24rem;
  height: 0.24rem;
}
.download-page .main .content-box .por_wrapper .card-list .card-box .a-list .link:last-child {
  margin-bottom: 0;
}
.download-page .main .content-box .por_wrapper .card-list .card-box .a-list .link:hover {
  opacity: 0.8;
}
.download-page .main .content-box .por_wrapper .card-list .card-box .a-list .link .icon {
  width: 100%;
  height: 100%;
}
.download-page .main .content-box .por_wrapper .card-list .card-box .title {
  margin-top: 0.58rem;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .por_wrapper .card-list .card-box .title {
    margin-top: 0.3rem;
    text-align: left;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.download-page .main .content-box .por_wrapper .btn-box {
  text-align: center;
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .por_wrapper .btn-box {
    margin-top: 0.8rem;
  }
}
.download-page .main .content-box .video_wrapper {
  padding-top: 1.18rem;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper {
    padding-top: 1.2rem;
  }
}
.download-page .main .content-box .video_wrapper .video-head .h2 {
  font-size: 0.32rem;
  line-height: 0.38rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-head .h2 {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.download-page .main .content-box .video_wrapper .video-head .h2 .num {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-head .h2 .num {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.download-page .main .content-box .video_wrapper .video-list {
  margin: 0.3rem -0.15rem -0.15rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-list {
    margin: 0.4rem 0 0 0;
  }
}
.download-page .main .content-box .video_wrapper .video-list .video-item {
  width: calc((100% - 0.9rem) / 3);
  margin: 0 0.15rem 0.6rem 0.15rem;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-list .video-item {
    width: 100%;
    margin: 0 0 0.6rem 0;
  }
  .download-page .main .content-box .video_wrapper .video-list .video-item:last-child {
    margin: 0 0 0 0;
  }
}
.download-page .main .content-box .video_wrapper .video-list .video-item .video-link {
  display: block;
}
.download-page .main .content-box .video_wrapper .video-list .video-item .video-link .img-box {
  height: 3.19rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-list .video-item .video-link .img-box {
    height: 3.89rem;
  }
}
.download-page .main .content-box .video_wrapper .video-list .video-item .video-link .img-box .img,
.download-page .main .content-box .video_wrapper .video-list .video-item .video-link .img-box .video-media {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: -webkit-transform 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: transform 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: transform 0.36s cubic-bezier(0.32, 0.17, 0, 1), -webkit-transform 0.36s cubic-bezier(0.32, 0.17, 0, 1);
}
.download-page .main .content-box .video_wrapper .video-list .video-item .video-link .img-box .play-icon {
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-list .video-item .video-link .img-box .play-icon {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.video-link.playing .download-page .main .content-box .video_wrapper .video-list .video-item .video-link .img-box .play-icon {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.download-page .main .content-box .video_wrapper .video-list .video-item .video-link .title {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-list .video-item .video-link .title {
    margin-top: 0.3rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
@media screen and (min-width: 800px) {
  .download-page .main .content-box .video_wrapper .video-list .video-item .video-link:hover .img-box .img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.products___section {
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 800px) {
  .products___section {
    overflow: hidden;
    margin-top: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
.products___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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.products___section .head-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .products___section .head-box .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.products___section .head-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 !important;
}
@media screen and (max-width: 800px) {
  .products___section .head-box .swiper-btn {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.products___section .head-box .swiper-btn .btn-prev,
.products___section .head-box .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  color: #000;
  margin-left: 0.18rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .products___section .head-box .swiper-btn .btn-prev,
  .products___section .head-box .swiper-btn .btn-next {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.products___section .head-box .swiper-btn .btn-prev:hover .img path,
.products___section .head-box .swiper-btn .btn-next:hover .img path {
  fill-opacity: 1;
}
.products___section .head-box .swiper-btn .btn-prev .img,
.products___section .head-box .swiper-btn .btn-next .img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.products___section .head-box .swiper-btn .btn-prev .img path,
.products___section .head-box .swiper-btn .btn-next .img path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products___section .products-swiper {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper {
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper .swiper-wrapper .swiper-slide {
    width: 5.6rem;
  }
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box {
  width: 100%;
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box:hover .img-box .img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
  width: 100%;
  height: 4.18rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
    height: 5.6rem;
  }
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .title {
  margin-top: 0.2rem;
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .title {
    margin-top: 0.3rem;
    text-align: left;
    font-size: 0.28rem;
    line-height: 0.34rem;
  }
}
.products___section .share__box {
  margin-top: 1.2rem;
}

.case-detail-page .refuge-section {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section {
    margin-top: 1.28rem;
    margin-bottom: 1.6rem;
  }
}
.case-detail-page .refuge-section .refuge-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section .refuge-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.6rem;
  }
}
.case-detail-page .refuge-section .refuge-box .left-box {
  width: 8.8rem;
  min-height: 6rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section .refuge-box .left-box {
    width: 100%;
    min-height: 5rem;
  }
}
.case-detail-page .refuge-section .refuge-box .left-box .img {
  width: 100%;
}
.case-detail-page .refuge-section .refuge-box .con-box {
  width: 6.47rem;
  margin-right: 0.68rem;
  text-align: center;
  padding-bottom: 10%;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section .refuge-box .con-box {
    width: 100%;
    margin-top: 0.52rem;
    margin-right: 0;
    padding-bottom: 0;
    text-align: left;
  }
}
.case-detail-page .refuge-section .refuge-box .con-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section .refuge-box .con-box .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.case-detail-page .refuge-section .refuge-box .con-box .text {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section .refuge-box .con-box .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.case-detail-page .refuge-section .refuge-box .con-box .obj-box {
  margin-top: 0.51rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section .refuge-box .con-box .obj-box {
    margin-top: 0.6rem;
  }
}
.case-detail-page .refuge-section .refuge-box .con-box .obj-box .item {
  margin-bottom: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .case-detail-page .refuge-section .refuge-box .con-box .obj-box .item {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.case-detail-page .refuge-section .refuge-box .con-box .obj-box .item .label {
  color: rgba(0, 0, 0, 0.6);
}
.case-detail-page .refuge-section .refuge-box .con-box .obj-box .item .value {
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
.case-detail-page .siheyuan-section {
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .siheyuan-section {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.case-detail-page .siheyuan-section .banner-img-box {
  margin-bottom: 1.2rem;
  min-height: 4rem;
}
.case-detail-page .siheyuan-section .banner-img-box .banner-img {
  width: 100%;
}
.case-detail-page .siheyuan-section .text {
  max-width: 6.4rem;
  margin: 1.2rem auto 0.8rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .case-detail-page .siheyuan-section .text {
    margin: 1.2rem auto 0.88rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.case-detail-page .siheyuan-section .img-swiper {
  margin-top: 0.8rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case-detail-page .siheyuan-section .img-swiper {
    margin-top: 0.88rem;
  }
}
.case-detail-page .siheyuan-section .img-swiper .swiper-wrapper .swiper-slide {
  width: auto;
  height: 5.6rem;
}
.case-detail-page .siheyuan-section .img-swiper .swiper-wrapper .swiper-slide .img-box {
  height: 100%;
}
.case-detail-page .siheyuan-section .img-swiper .swiper-wrapper .swiper-slide .img-box .img {
  height: 100%;
}
@media screen and (max-width: 800px) {
  .case-detail-page .siheyuan-section .img-swiper .swiper-wrapper .swiper-slide .img-box .img {
    max-width: calc(100vw - 0.6rem);
  }
}
.case-detail-page .siheyuan-section .img-swiper .swiper-pagination {
  margin-top: 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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .case-detail-page .siheyuan-section .img-swiper .swiper-pagination {
    margin-top: 0.5rem;
  }
}
.case-detail-page .siheyuan-section .img-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  margin-right: 0.08rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .case-detail-page .siheyuan-section .img-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
    margin-right: 0.16rem;
  }
}
.case-detail-page .siheyuan-section .img-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.case-detail-page .siheyuan-section .img-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000000;
}
.case-detail-page .jump-section {
  background: #F0EFEB;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section {
    position: relative;
  }
}
.case-detail-page .jump-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.case-detail-page .jump-section .flex-box .sides-box {
  width: calc(50% - 0.5px);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-top: 1.95rem;
  padding-bottom: 1.45rem;
  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;
  --x: -0.1rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box {
    padding-top: 1.2rem;
    padding-bottom: 1.56rem;
  }
}
.case-detail-page .jump-section .flex-box .sides-box:last-child {
  --x: 0.1rem;
}
.case-detail-page .jump-section .flex-box .sides-box .to-link {
  width: 3.2rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link {
    width: 3rem;
  }
}
@media screen and (min-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link:hover .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .case-detail-page .jump-section .flex-box .sides-box .to-link:hover .navigation {
    opacity: 0.6;
  }
  .case-detail-page .jump-section .flex-box .sides-box .to-link:hover .navigation .icon {
    -webkit-transform: translateX(var(--x));
        -ms-transform: translateX(var(--x));
            transform: translateX(var(--x));
  }
}
.case-detail-page .jump-section .flex-box .sides-box .to-link .img-box {
  width: 100%;
  height: 4rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link .img-box {
    height: 3.75rem;
  }
}
.case-detail-page .jump-section .flex-box .sides-box .to-link .img-box .img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.case-detail-page .jump-section .flex-box .sides-box .to-link .title {
  margin-top: 0.2rem;
  letter-spacing: 1px;
  font-size: 0.18rem;
  line-height: 0.22rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link .title {
    margin-top: 0.27rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.case-detail-page .jump-section .flex-box .sides-box .to-link .navigation {
  margin-top: 0.9rem;
  display: -webkit-box;
  display: -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) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link .navigation {
    margin-top: 0.75rem;
  }
}
.case-detail-page .jump-section .flex-box .sides-box .to-link .navigation .icon {
  width: 0.23rem;
  height: 0.23rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link .navigation .icon {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.case-detail-page .jump-section .flex-box .sides-box .to-link .navigation .text {
  margin: 0 0.1rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .sides-box .to-link .navigation .text {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.case-detail-page .jump-section .flex-box .center-box {
  width: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  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;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .case-detail-page .jump-section .flex-box .center-box {
    position: relative;
  }
}
.case-detail-page .jump-section .flex-box .center-box .hr {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1px;
  background-color: #D8D8D8;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .center-box .hr {
    position: absolute;
    height: calc(100% - 1rem);
    left: 50%;
    top: 0;
  }
  .case-detail-page .jump-section .flex-box .center-box .hr:last-child {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto;
    bottom: 1rem;
  }
}
.case-detail-page .jump-section .flex-box .center-box .link-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0.33rem 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .center-box .link-box {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1rem;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.case-detail-page .jump-section .flex-box .center-box .link-box:hover {
  opacity: 0.6;
}
.case-detail-page .jump-section .flex-box .center-box .link-box .icon {
  width: 0.16rem;
  height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .center-box .link-box .icon {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.case-detail-page .jump-section .flex-box .center-box .link-box .text {
  margin-left: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .case-detail-page .jump-section .flex-box .center-box .link-box .text {
    margin-left: 0.2rem;
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}

.share__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.share__box .label {
  font-size: 0.14rem;
  line-height: 0.17rem;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  margin-right: 0.22rem;
}
@media screen and (max-width: 800px) {
  .share__box .label {
    font-size: 0.24rem;
    line-height: 0.29rem;
    margin-right: 0.47rem;
  }
}
.share__box .icon-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;
}
.share__box .icon-list .link {
  margin-right: 0.4rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .share__box .icon-list .link {
    margin-right: 0.6rem;
  }
}
.share__box .icon-list .link:hover .icon {
  opacity: 1;
}
.share__box .icon-list .link:last-child {
  margin-right: 0;
}
.share__box .icon-list .link .icon {
  width: 0.18rem;
  height: 0.18rem;
  object-fit: contain;
  opacity: 0.6;
}
@media screen and (max-width: 800px) {
  .share__box .icon-list .link .icon {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.share__box .icon-list .link .-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.04rem 0.13rem 0.05rem 0.12rem;
  border-radius: 0.04rem;
  background: #F0EFEB;
  font-size: 0.12rem;
  line-height: 0.15rem;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .share__box .icon-list .link .-layer {
    top: -1.1rem;
    padding: 0.11rem 0.31rem 0.1rem 0.3rem;
    font-size: 0.22rem;
    line-height: 0.27rem;
    border-radius: 0;
  }
}

.product-detail-page .content___section {
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .content___section {
    margin-top: 1.2rem;
    margin-bottom: 1.6rem;
  }
}
.product-detail-page .content___section .h2 {
  text-align: center;
  max-width: 6rem;
  margin: 0 auto;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-page .content___section .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
    text-align: left;
    max-width: none;
  }
}
.product-detail-page .content___section .text {
  max-width: 8rem;
  text-align: center;
  margin: 0.24rem auto 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .content___section .text {
    margin: 0.24rem auto 1.2rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    text-align: left;
  }
}
.product-detail-page .content___section .img-box {
  margin-top: 1.2rem;
  position: relative;
}
.product-detail-page .content___section .img-box .img {
  width: 100%;
}
.product-detail-page .content___section .img-box .g-more-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product-detail-page .content___section .img-box .play-box {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
}
.product-detail-page .content___section .img-box .play-box .play-icon {
  width: 100%;
  height: 100%;
}
.product-detail-page .designer-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .product-detail-page .designer-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.product-detail-page .designer-section .flex-box .left-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 2.4rem 1rem 0.8rem;
  background: #F0EFEB;
}
@media screen and (max-width: 800px) {
  .product-detail-page .designer-section .flex-box .left-box {
    padding: 0.6rem 0.8rem 0.98rem 0.3rem;
  }
}
.product-detail-page .designer-section .flex-box .left-box .name {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-page .designer-section .flex-box .left-box .name {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.product-detail-page .designer-section .flex-box .left-box .text {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .designer-section .flex-box .left-box .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.product-detail-page .designer-section .flex-box .left-box .g-more-btn {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .designer-section .flex-box .left-box .g-more-btn {
    margin-top: 0.6rem;
  }
}
.product-detail-page .designer-section .flex-box .right-box {
  width: 9.6rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .designer-section .flex-box .right-box {
    width: 100%;
  }
}
.product-detail-page .designer-section .flex-box .right-box .img {
  width: 100%;
}
.product-detail-page .related-product-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section {
    margin-top: 1.6rem;
  }
}
.product-detail-page .related-product-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .h2 {
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.product-detail-page .related-product-section .card_wrapper {
  margin-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper {
    margin-top: 0.6rem;
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.3rem -0.15rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list {
    display: block;
    margin: 0;
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list .card-box {
  margin: 0.3rem 0.15rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box {
    display: block;
    margin: 1rem 0 0 0;
  }
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box:first-child {
    margin-top: 0;
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list .card-box[data-span-2] {
  width: calc(50% - 0.3rem);
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box[data-span-2] {
    width: 100%;
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list .card-box[data-span-3] {
  width: calc(33.3333333333% - 0.3rem);
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box[data-span-3] {
    width: 100%;
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list .card-box[data-span-3-2] {
  width: calc(66.6666666667% - 0.3rem);
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box[data-span-3-2] {
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box:hover .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list .card-box .img-box {
  height: 5.66rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box .img-box {
    height: 4.5rem;
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list .card-box .img-box .img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.product-detail-page .related-product-section .card_wrapper .card-list .card-box .title {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box .title {
    margin-top: 0.4rem;
    font-size: 0.32rem;
    line-height: 0.38rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box .text {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    padding-right: 0.24rem;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-page .related-product-section .card_wrapper .card-list .card-box .g-more-btn {
    margin-top: 0.4rem;
  }
}

@media screen and (max-width: 800px) {
  .designer-page {
    padding-top: 1.2rem;
  }
}
.designer-page .main {
  padding-bottom: 1.2rem;
}
.designer-page .main .head-section {
  margin-top: 1.64rem;
  margin-bottom: 1.1rem;
}
@media screen and (max-width: 800px) {
  .designer-page .main .head-section {
    margin-top: 0.63rem;
    margin-bottom: 1rem;
  }
}
.designer-page .main .head-section .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .designer-page .main .head-section .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
    text-align: center;
  }
}
.designer-page .main .head-section .h1 br {
  display: none;
}
@media screen and (max-width: 800px) {
  .designer-page .main .head-section .h1 br {
    display: block;
  }
}
.designer-page .main .list-section .designer-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.3rem -0.15rem;
}
@media screen and (max-width: 800px) {
  .designer-page .main .list-section .designer-list {
    margin: -0.3rem -0.05rem;
  }
}
.designer-page .main .list-section .designer-list .designer-card {
  margin: 0.4rem 0.15rem;
  width: calc(25% - 0.3rem);
}
@media screen and (max-width: 800px) {
  .designer-page .main .list-section .designer-list .designer-card {
    width: calc(50% - 0.1rem);
    margin: 0.3rem 0.05rem;
  }
}
.designer-page .main .list-section .designer-list .designer-card .img-box {
  width: 100%;
  height: 5.23rem;
  background: #F0EFEB;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .designer-page .main .list-section .designer-list .designer-card .img-box {
    height: 4.46rem;
  }
}
.designer-page .main .list-section .designer-list .designer-card .img-box .img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .designer-page .main .list-section .designer-list .designer-card .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
@media screen and (min-width: 800px) {
  .designer-page .main .list-section .designer-list .designer-card:hover .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.designer-page .main .list-section .designer-list .designer-card .name {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .designer-page .main .list-section .designer-list .designer-card .name {
    margin-top: 0.3rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.designer-page .main .list-section .btn-box {
  margin-top: 0.6rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .designer-page .main .list-section .btn-box {
    margin-top: 0.8rem;
  }
}

.designer-intro-page .banner-section {
  height: 100vh;
  position: relative;
  padding-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section {
    height: auto;
    padding-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .designer-intro-page .banner-section._type2 {
    --img-bg-box-width: 50%;
    --before-display: none;
    --banner-content-width: 50%;
    --text-color: #000;
    --text-con-bottom: 0.4rem;
    --flex-box-justify-content: center;
    --flex-box-align-items: center;
  }
}
.designer-intro-page .banner-section .img-bg-box {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: var(--img-bg-box-width, 100%);
  top: 0;
  left: 0;
  padding-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .img-bg-box {
    height: 10.8rem;
    position: relative;
    padding-top: 0;
  }
}
.designer-intro-page .banner-section .img-bg-box .__crumb {
  position: absolute;
  z-index: 6;
  top: 0.64rem;
  left: 0.8rem;
  padding-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .img-bg-box .__crumb {
    top: auto;
    bottom: 0.3rem;
    left: 0.3rem;
  }
}
.designer-intro-page .banner-section .img-bg-box::before {
  content: "";
  display: var(--before-display, block);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .img-bg-box::before {
    display: none;
  }
}
.designer-intro-page .banner-section .img-bg-box .img-bg {
  height: 100%;
  width: 100%;
}
.designer-intro-page .banner-section .banner-content {
  position: absolute;
  z-index: 4;
  height: 100%;
  width: var(--banner-content-width, 100%);
  top: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .banner-content {
    position: relative;
    width: 100%;
  }
}
.designer-intro-page .banner-section .banner-content .flex-box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: var(--flex-box-justify-content, flex-end);
  -webkit-justify-content: var(--flex-box-justify-content, flex-end);
      -ms-flex-pack: var(--flex-box-justify-content, flex-end);
          justify-content: var(--flex-box-justify-content, flex-end);
  -webkit-box-align: var(--flex-box-align-items, flex-end);
  -webkit-align-items: var(--flex-box-align-items, flex-end);
      -ms-flex-align: var(--flex-box-align-items, flex-end);
          align-items: var(--flex-box-align-items, flex-end);
  color: var(--text-color, #FFFFFF);
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .banner-content .flex-box {
    color: #000000;
  }
}
.designer-intro-page .banner-section .banner-content .flex-box .text-con {
  width: 6.4rem;
  padding-bottom: var(--text-con-bottom, 0.6rem);
  pointer-events: auto;
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .banner-content .flex-box .text-con {
    width: 100%;
    padding-bottom: 0;
    margin-top: 0.87rem;
  }
}
.designer-intro-page .banner-section .banner-content .flex-box .text-con .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .banner-content .flex-box .text-con .h1 {
    font-size: 0.56rem;
    line-height: 0.67rem;
  }
}
.designer-intro-page .banner-section .banner-content .flex-box .text-con .text {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .designer-intro-page .banner-section .banner-content .flex-box .text-con .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.designer-intro-page .products___section {
  margin-bottom: 1.2rem;
}

.collaborative__projects__section {
  margin-top: 1.68rem;
  margin-bottom: 1.55rem;
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section {
    margin-top: 1.2rem;
    margin-bottom: 1.6rem;
    overflow: hidden;
  }
}
.collaborative__projects__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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.collaborative__projects__section .head-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section .head-box .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
    padding-right: 0.1rem;
  }
}
.collaborative__projects__section .head-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section .head-box .swiper-btn {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.collaborative__projects__section .head-box .swiper-btn .btn-prev,
.collaborative__projects__section .head-box .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  color: #000;
  margin-left: 0.18rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section .head-box .swiper-btn .btn-prev,
  .collaborative__projects__section .head-box .swiper-btn .btn-next {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.collaborative__projects__section .head-box .swiper-btn .btn-prev:hover .img path,
.collaborative__projects__section .head-box .swiper-btn .btn-next:hover .img path {
  fill-opacity: 1;
}
.collaborative__projects__section .head-box .swiper-btn .btn-prev .img,
.collaborative__projects__section .head-box .swiper-btn .btn-next .img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.collaborative__projects__section .head-box .swiper-btn .btn-prev .img path,
.collaborative__projects__section .head-box .swiper-btn .btn-next .img path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.collaborative__projects__section .scene-swiper {
  margin-top: 0.4rem;
}
@media screen and (min-width: 800px) {
  .collaborative__projects__section .scene-swiper {
    overflow: hidden;
  }
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide {
    width: 5.6rem;
  }
}
.collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box:hover .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
  width: 100%;
  height: 5.23rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
    height: 7rem;
  }
}
.collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box .title {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.22rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .collaborative__projects__section .scene-swiper .swiper-wrapper .swiper-slide .card-box .title {
    margin-top: 0.3rem;
    font-size: 0.28rem;
    line-height: 0.34rem;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@media screen and (max-width: 800px) {
  .sustainability-page {
    padding-top: 1.2rem;
  }
}
.sustainability-page .main .title-section {
  text-align: center;
  margin-top: 1.64rem;
  margin-bottom: 1.1rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .title-section {
    margin-top: 0.63rem;
    margin-bottom: 1rem;
  }
}
.sustainability-page .main .title-section .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .title-section .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.sustainability-page .main .bg-img-section {
  margin-top: 1.1rem;
  height: 8.8rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .bg-img-section {
    margin-top: 1rem;
    width: 100%;
  }
}
.sustainability-page .main .bg-img-section .img_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.sustainability-page .main .bg-img-section .img_wrapper .img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sustainability-page .main .bg-img-section .img_wrapper .text-con {
  position: relative;
  z-index: 2;
  height: 100%;
  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-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;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .bg-img-section .img_wrapper .text-con {
    padding: 0.3rem;
  }
}
.sustainability-page .main .bg-img-section .img_wrapper .text-con .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .bg-img-section .img_wrapper .text-con .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.sustainability-page .main .bg-img-section .img_wrapper .text-con .text {
  margin-top: 0.24rem;
  max-width: 8rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .bg-img-section .img_wrapper .text-con .text {
    width: 100%;
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.sustainability-page .main .zoetrope-section {
  margin-top: 0.78rem;
  margin-bottom: 1.64rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .zoetrope-section {
    margin-top: 0.46rem;
    margin-bottom: 1.6rem;
  }
}
.sustainability-page .main .zoetrope-section .marquee {
  --animation-duration: 10s;
  overflow: hidden;
  box-sizing: border-box;
  will-change: transform;
  -webkit-animation: marquee var(--animation-duration) linear infinite;
          animation: marquee var(--animation-duration) linear infinite;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.sustainability-page .main .zoetrope-section .marquee .marquee-content {
  display: inline-block;
  white-space: nowrap;
}
.sustainability-page .main .zoetrope-section .marquee .marquee-content .card-img {
  display: inline-block;
  margin-right: 1.6rem;
}
.sustainability-page .main .zoetrope-section .marquee .marquee-content .card-img .img {
  max-width: 1.72rem;
  max-height: 0.96rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .zoetrope-section .marquee .marquee-content .card-img .img {
    max-width: 2.2rem;
    max-height: 1.2rem;
  }
}
.sustainability-page .main .img-text-section {
  margin-top: 1.64rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .img-text-section {
    margin-top: 1.6rem;
  }
}
.sustainability-page .main .img-text-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .img-text-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sustainability-page .main .img-text-section .flex-box .left-box {
  width: 8.8rem;
  height: 7.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .img-text-section .flex-box .left-box {
    width: 100%;
    height: auto;
  }
}
.sustainability-page .main .img-text-section .flex-box .left-box .img {
  width: 100%;
  height: 100%;
}
.sustainability-page .main .img-text-section .flex-box .text-con {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1.2rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .img-text-section .flex-box .text-con {
    width: 100%;
    padding: 0;
    margin-top: 0.4rem;
  }
}
.sustainability-page .main .img-text-section .flex-box .text-con .text {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .img-text-section .flex-box .text-con .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.sustainability-page .main .img-text-section .flex-box .text-con .g-more-btn {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .img-text-section .flex-box .text-con .g-more-btn {
    margin-top: 0.6rem;
  }
}
.sustainability-page .main .carbon-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .carbon-section {
    margin-bottom: 1.62rem;
  }
}
.sustainability-page .main .carbon-section .h2 {
  font-size: 0.32rem;
  line-height: 0.38rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .carbon-section .h2 {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.sustainability-page .main .carbon-section .subtitle {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .carbon-section .subtitle {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.sustainability-page .main .carbon-section .card_wrapper {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .carbon-section .card_wrapper {
    margin-top: 0.6rem;
  }
}
.sustainability-page .main .carbon-section .card_wrapper .card-list {
  margin: -0.15rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.sustainability-page .main .carbon-section .card_wrapper .card-list .card-box {
  margin: 0.15rem;
  width: calc(25% - 0.3rem);
  height: 4.18rem;
  padding: 0.3rem;
  background: #F0EFEB;
  display: -webkit-box;
  display: -webkit-flex;
  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) {
  .sustainability-page .main .carbon-section .card_wrapper .card-list .card-box {
    width: calc(50% - 0.3rem);
    padding: 0.3rem 0.3rem 0.34rem;
  }
}
.sustainability-page .main .carbon-section .card_wrapper .card-list .card-box .label-text {
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .carbon-section .card_wrapper .card-list .card-box .label-text {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.sustainability-page .main .carbon-section .card_wrapper .card-list .card-box .bottom-box .num-box {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .carbon-section .card_wrapper .card-list .card-box .bottom-box .num-box {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.sustainability-page .main .carbon-section .card_wrapper .card-list .card-box .bottom-box .text {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .carbon-section .card_wrapper .card-list .card-box .bottom-box .text {
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.sustainability-page .main .ecosystem-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section {
    margin-top: 1.62rem;
    margin-bottom: 1.6rem;
  }
}
.sustainability-page .main .ecosystem-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.sustainability-page .main .ecosystem-section .text {
  text-align: center;
  margin: 0.24rem auto 0;
  max-width: 8rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section .text {
    max-width: 100%;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.sustainability-page .main .ecosystem-section .card_wrapper {
  margin-top: 0.8rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section .card_wrapper {
    margin-top: 0.6rem;
  }
}
.sustainability-page .main .ecosystem-section .card_wrapper .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.14rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section .card_wrapper .card-list {
    display: block;
    margin: 0;
  }
}
.sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box {
  margin: 0.14rem;
  width: calc(50% - 0.28rem);
  height: 5.2rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box {
    margin: 0.3rem 0 0 0;
    width: 100%;
    height: 4.14rem;
  }
}
.sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box .card-con {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.3rem;
  color: #FFFFFF;
}
.sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box .card-con .num-box {
  font-size: 0.56rem;
  line-height: 0.67rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box .card-con .num-box {
    font-size: 0.56rem;
    line-height: 0.67rem;
  }
}
.sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box .card-con .card-text {
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .ecosystem-section .card_wrapper .card-list .card-box .card-con .card-text {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.sustainability-page .main .epd-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .epd-section {
    margin-top: 1.6rem;
  }
}
.sustainability-page .main .epd-section .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .epd-section .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.sustainability-page .main .epd-section .text {
  margin: 0.24rem auto 0;
  max-width: 8rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .epd-section .text {
    width: 100%;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.sustainability-page .main .epd-section .img-box {
  margin-top: 1.2rem;
  min-height: 5rem;
}
@media screen and (max-width: 800px) {
  .sustainability-page .main .epd-section .img-box {
    margin-top: 0.6rem;
  }
}
.sustainability-page .main .epd-section .img-box .img {
  width: 100%;
}

@media screen and (max-width: 800px) {
  .news-page {
    padding-top: 1.2rem;
  }
}
.news-page .main {
  padding-bottom: 1.2rem;
}
.news-page .main .head-section {
  margin-top: 1.64rem;
  margin-bottom: 1.1rem;
  max-width: 15.2rem;
}
@media screen and (max-width: 800px) {
  .news-page .main .head-section {
    margin-top: 0.63rem;
    margin-bottom: 1rem;
  }
}
.news-page .main .head-section .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .news-page .main .head-section .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.news-page .main .filter-section {
  margin-bottom: 0.3rem;
  max-width: 15.2rem;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section {
    margin-bottom: 0.6rem;
  }
}
.news-page .main .filter-section .filter_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.15rem;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box {
    padding-bottom: 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;
  }
}
.news-page .main .filter-section .filter_box .filter-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-page .main .filter-section .filter_box .filter-nav .nav-item {
  font-size: 0.14rem;
  line-height: 0.24rem;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  margin-right: 0.36rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box .filter-nav .nav-item {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.news-page .main .filter-section .filter_box .filter-nav .nav-item:last-child {
  margin-right: 0;
}
.news-page .main .filter-section .filter_box .filter-nav .nav-item:hover {
  color: #000;
}
.news-page .main .filter-section .filter_box .filter-nav .nav-item.on {
  color: #000;
}
.news-page .main .filter-section .filter_box .select-box {
  position: relative;
  width: 2.8rem;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box .select-box {
    width: 100%;
    margin-top: 0.55rem;
  }
}
.news-page .main .filter-section .filter_box .select-box input {
  cursor: pointer;
  height: 0.44rem;
  width: 100%;
  font-size: 0.14rem;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box .select-box input {
    height: 0.86rem;
    font-size: 0.24rem;
  }
}
.news-page .main .filter-section .filter_box .select-box input:not(:-moz-placeholder) ~ .placeholder {
  opacity: 0;
}
.news-page .main .filter-section .filter_box .select-box input:not(:-ms-input-placeholder) ~ .placeholder {
  opacity: 0;
}
.news-page .main .filter-section .filter_box .select-box input:not(:placeholder-shown) ~ .placeholder {
  opacity: 0;
}
.news-page .main .filter-section .filter_box .select-box .placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.16rem;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box .select-box .placeholder {
    font-size: 0.24rem;
  }
}
.news-page .main .filter-section .filter_box .select-box .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.16rem;
  height: 0.16rem;
  right: 0;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box .select-box .icon {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.news-page .main .filter-section .filter_box .select-box .select-layer {
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.1rem);
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  padding: 0.16rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box .select-box .select-layer {
    padding: 0.24rem;
  }
}
.news-page .main .filter-section .filter_box .select-box .select-layer .select-item {
  font-size: 0.14rem;
  line-height: 0.17rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.13rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .news-page .main .filter-section .filter_box .select-box .select-layer .select-item {
    font-size: 0.24rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }
}
.news-page .main .filter-section .filter_box .select-box .select-layer .select-item:hover {
  color: #000000;
}
.news-page .main .filter-section .filter_box .select-box .select-layer .select-item:last-child {
  margin-bottom: 0;
}
.news-page .main .filter-section .filter_box .select-box .select-layer .select-item.active {
  color: #000000;
}
.news-page .main .list-section {
  max-width: 15.2rem;
}
.news-page .main .list-section .news-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.36rem -0.15rem;
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list {
    display: block;
    margin: 0;
  }
}
.news-page .main .list-section .news-list .news-card {
  width: calc((100% - 0.6rem) / 2);
  margin: 0.36rem 0.15rem;
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list .news-card {
    display: block;
    width: 100%;
    margin-bottom: 0.8rem;
  }
  .news-page .main .list-section .news-list .news-card:last-child {
    margin-bottom: 0;
  }
}
.news-page .main .list-section .news-list .news-card:hover .img-box .img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.news-page .main .list-section .news-list .news-card .img-box {
  position: relative;
  width: 100%;
  height: 4.8rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list .news-card .img-box {
    height: 3.9rem;
  }
}
.news-page .main .list-section .news-list .news-card .img-box .img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list .news-card .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.news-page .main .list-section .news-list .news-card .img-box .tag {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0.07rem 0.1rem;
  font-size: 0.12rem;
  line-height: 0.14rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  letter-spacing: 1px;
  backdrop-filter: blur(0.2rem);
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list .news-card .img-box .tag {
    padding: 0.12rem 0.3rem;
    font-size: 0.2rem;
    line-height: 0.24rem;
  }
}
.news-page .main .list-section .news-list .news-card .con-text {
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list .news-card .con-text {
    margin-top: 0.4rem;
  }
}
.news-page .main .list-section .news-list .news-card .con-text .date {
  font-size: 0.16rem;
  line-height: 0.19rem;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list .news-card .con-text .date {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.news-page .main .list-section .news-list .news-card .con-text .title {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  letter-spacing: 2px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .news-list .news-card .con-text .title {
    margin-top: 0.3rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.news-page .main .list-section .btn-box {
  margin-top: 0.52rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .news-page .main .list-section .btn-box {
    margin-top: 0.8rem;
  }
}

.second__nature__section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .second__nature__section {
    margin-bottom: 1.6rem;
  }
}
.second__nature__section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .second__nature__section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.second__nature__section .flex-box .left-box {
  width: 8.8rem;
  min-height: 3rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .second__nature__section .flex-box .left-box {
    width: 100%;
    min-height: 0;
  }
}
.second__nature__section .flex-box .left-box .img {
  width: 100%;
}
.second__nature__section .flex-box .right-box {
  padding: 0 1.2rem;
}
@media screen and (max-width: 800px) {
  .second__nature__section .flex-box .right-box {
    padding: 0.6rem 0 0 0;
  }
}
.second__nature__section .flex-box .right-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .second__nature__section .flex-box .right-box .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.second__nature__section .flex-box .right-box .text {
  margin-top: 0.2rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .second__nature__section .flex-box .right-box .text {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}

.other-detail-page {
  padding-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .other-detail-page {
    padding-top: 1.2rem;
  }
}
.other-detail-page .__crumb {
  padding-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .other-detail-page .__crumb {
    padding-top: 0.3rem;
  }
}
.other-detail-page .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  margin-top: 0.63rem;
  margin-bottom: 1.1rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .other-detail-page .h1 {
    font-size: 0.56rem;
    line-height: 0.72rem;
    margin-top: 0.63rem;
    margin-bottom: 1rem;
  }
}
.other-detail-page .banner-img-box {
  margin-top: 1.1rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .other-detail-page .banner-img-box {
    margin-top: 1rem;
  }
}
.other-detail-page .banner-img-box .img {
  width: 100%;
}
.other-detail-page .html_wrapper {
  margin: 1.2rem auto;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-width: 10rem;
}
@media screen and (max-width: 800px) {
  .other-detail-page .html_wrapper {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.other-detail-page .html_wrapper ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.other-detail-page .html_wrapper ul li {
  display: list-item;
  list-style-type: inherit;
}
.other-detail-page .html_wrapper p {
  margin-bottom: 0.6rem;
}

.news-detail-page {
  padding-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page {
    padding-top: 1.2rem;
  }
}
.news-detail-page .__crumb {
  padding-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .__crumb {
    padding-top: 0.3rem;
  }
}
.news-detail-page .hede-section .h1 {
  margin: 0.63rem auto 0;
  text-align: center;
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  max-width: 8.77rem;
}
.news-detail-page .hede-section .date {
  margin-top: 0.4rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.19rem;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .news-detail-page .hede-section .date {
    font-size: 0.28rem;
    line-height: 0.34rem;
  }
}
.news-detail-page .hede-section .share__box {
  margin-top: 1.17rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .hede-section .share__box {
    margin-top: 1.27rem;
  }
}
.news-detail-page .hede-section .banner-img-box {
  margin-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .hede-section .banner-img-box {
    margin-top: 0.3rem;
  }
}
.news-detail-page .hede-section .banner-img-box .img {
  width: 100%;
}
.news-detail-page .detail-section {
  margin-top: 0.8rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section {
    margin-top: 0.68rem;
  }
}
.news-detail-page .detail-section .html_wrapper {
  margin: 0 auto;
  font-size: 0.16rem;
  line-height: 0.24rem;
  max-width: 10rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .html_wrapper {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
}
.news-detail-page .detail-section .html_wrapper ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.5em;
     -moz-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.news-detail-page .detail-section .html_wrapper ul li {
  display: list-item;
  list-style-type: inherit;
}
.news-detail-page .detail-section .html_wrapper p {
  margin-bottom: 0.6rem;
}
.news-detail-page .detail-section .btn-box {
  text-align: center;
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .btn-box .g-more-btn {
    width: 100%;
  }
}
.news-detail-page .detail-section .prev-next-box {
  margin-top: 1rem;
  padding-bottom: 1.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .prev-next-box {
    margin-top: 0.8rem;
    padding-bottom: 1.2rem;
  }
}
.news-detail-page .detail-section .prev-next-box .center-box .link-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-detail-page .detail-section .prev-next-box .center-box .link-box:hover {
  opacity: 0.6;
}
.news-detail-page .detail-section .prev-next-box .center-box .link-box .icon {
  width: 0.16rem;
  height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .prev-next-box .center-box .link-box .icon {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.news-detail-page .detail-section .prev-next-box .center-box .link-box .text {
  margin-left: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .prev-next-box .center-box .link-box .text {
    margin-left: 0.2rem;
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.news-detail-page .detail-section .prev-next-box .prev-box,
.news-detail-page .detail-section .prev-next-box .next-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;
}
.news-detail-page .detail-section .prev-next-box .prev-box:hover .img-box .img,
.news-detail-page .detail-section .prev-next-box .next-box:hover .img-box .img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.news-detail-page .detail-section .prev-next-box .prev-box .img-box,
.news-detail-page .detail-section .prev-next-box .next-box .img-box {
  width: 2rem;
  height: 1.12rem;
  overflow: hidden;
}
.news-detail-page .detail-section .prev-next-box .prev-box .img-box .img,
.news-detail-page .detail-section .prev-next-box .next-box .img-box .img {
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.news-detail-page .detail-section .prev-next-box .prev-box .navigation,
.news-detail-page .detail-section .prev-next-box .next-box .navigation {
  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;
  margin: 0 0.3rem;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .prev-next-box .prev-box .navigation,
  .news-detail-page .detail-section .prev-next-box .next-box .navigation {
    margin: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news-detail-page .detail-section .prev-next-box .prev-box .navigation .icon,
.news-detail-page .detail-section .prev-next-box .next-box .navigation .icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .prev-next-box .prev-box .navigation .icon,
  .news-detail-page .detail-section .prev-next-box .next-box .navigation .icon {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.news-detail-page .detail-section .prev-next-box .prev-box .navigation .text,
.news-detail-page .detail-section .prev-next-box .next-box .navigation .text {
  margin: 0 0.1rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  letter-spacing: 1px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .news-detail-page .detail-section .prev-next-box .prev-box .navigation .text,
  .news-detail-page .detail-section .prev-next-box .next-box .navigation .text {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
@media screen and (min-width: 800px) {
  .news-detail-page .detail-section .prev-next-box .prev-box:hover .navigation .icon {
    -webkit-transform: translateX(-0.1rem);
        -ms-transform: translateX(-0.1rem);
            transform: translateX(-0.1rem);
  }
  .news-detail-page .detail-section .prev-next-box .next-box:hover .navigation .icon {
    -webkit-transform: translateX(0.1rem);
        -ms-transform: translateX(0.1rem);
            transform: translateX(0.1rem);
  }
}

.recommended__news__section {
  background: #F0EFEB;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .recommended__news__section {
    padding-top: 1.27rem;
    padding-bottom: 1.76rem;
  }
}
.recommended__news__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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .recommended__news__section .head-box {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recommended__news__section .head-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  padding-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .recommended__news__section .head-box .h2 {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.recommended__news__section .head-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.recommended__news__section .head-box .swiper-btn .btn-prev,
.recommended__news__section .head-box .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  color: #000;
  margin-left: 0.18rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .recommended__news__section .head-box .swiper-btn .btn-prev,
  .recommended__news__section .head-box .swiper-btn .btn-next {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.recommended__news__section .head-box .swiper-btn .btn-prev:hover .img path,
.recommended__news__section .head-box .swiper-btn .btn-next:hover .img path {
  fill-opacity: 1;
}
.recommended__news__section .head-box .swiper-btn .btn-prev .img,
.recommended__news__section .head-box .swiper-btn .btn-next .img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.recommended__news__section .head-box .swiper-btn .btn-prev .img path,
.recommended__news__section .head-box .swiper-btn .btn-next .img path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recommended__news__section .swiper-container {
  margin-top: 0.4rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .recommended__news__section .swiper-container {
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 800px) {
  .recommended__news__section .swiper-container .swiper-wrapper .swiper-slide {
    width: 5.6rem;
  }
}
.recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box {
  display: block;
}
.recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box:hover .img-box .img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .img-box {
  width: 100%;
  height: 3.2rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .img-box {
    height: 3.16rem;
  }
}
.recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .img-box .img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .data {
  margin-top: 0.2rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .data {
    margin-top: 0.4rem;
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .title {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  letter-spacing: 1.5px;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .recommended__news__section .swiper-container .swiper-wrapper .swiper-slide .card-box .title {
    margin-top: 0.3rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.sk-section-title {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.4rem;
  line-height: 0.48rem;
  text-transform: uppercase;
}
.sk-section-title.text-center {
  text-align: center;
}

.imgScale .img {
  overflow: hidden;
}
.imgScale .img > img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.imgScale:hover .img > img {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
}

.firstScreenAnimate {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: hidden;
  -webkit-transition: opacity 1s ease, visibility 1s ease;
  transition: opacity 1s ease, visibility 1s ease;
}
.firstScreenAnimate.animated {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
.firstScreenAnimate .-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;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.firstScreenAnimate .-wrapper .-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.firstScreenAnimate .-wrapper .-mask .svgIcon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.firstScreenAnimate .-wrapper .-mask .svgIcon .cls-g {
  will-change: transform;
  -webkit-transform-origin: center center !important;
      -ms-transform-origin: center center !important;
          transform-origin: center center !important;
}
.firstScreenAnimate .-wrapper .-mask .svgIcon .cls-w {
  fill: white;
}
.firstScreenAnimate .-wrapper .-mask .svgIcon .cls-b {
  width: 2.2rem;
  -webkit-transform: translate(calc(50% - 1.1rem));
      -ms-transform: translate(calc(50% - 1.1rem));
          transform: translate(calc(50% - 1.1rem));
  opacity: 0;
  fill: black;
  -webkit-transform-origin: center center !important;
      -ms-transform-origin: center center !important;
          transform-origin: center center !important;
}
.firstScreenAnimate .-wrapper .-logo {
  position: relative;
  width: 2.2rem;
  height: 0.66rem;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.firstScreenAnimate .-wrapper .-logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center !important;
      -ms-transform-origin: center center !important;
          transform-origin: center center !important;
  object-fit: contain;
  -webkit-transition: none;
  transition: none;
}
.firstScreenAnimate .-wrapper .-logo img.-top {
  opacity: 0;
  z-index: 1;
  object-fit: fill;
}
.firstScreenAnimate .-wrapper .dsds {
  background: #ffffff;
}
@media screen and (max-width: 800px) {
  .firstScreenAnimate .-wrapper .-mask .svgIcon .cls-b {
    width: 3.2rem;
    -webkit-transform: translate(calc(50% - 1.6rem));
        -ms-transform: translate(calc(50% - 1.6rem));
            transform: translate(calc(50% - 1.6rem));
  }
  .firstScreenAnimate .-wrapper .-logo {
    position: relative;
    width: 3.2rem;
    height: 1.66rem;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.index-page .index-banner {
  --mask-display: none;
}
.index-page .index-banner .swiper-container {
  position: relative;
  height: 100vh;
}
.index-page .index-banner .swiper-container .swiper-wrapper {
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active a .sk-page-title,
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active a .sub-title {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active a .sk-page-title {
  -webkit-transition: 0.8s ease-out 0.5s;
  transition: 0.8s ease-out 0.5s;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active a .sub-title {
  -webkit-transition: 0.8s ease-out 0.7s;
  transition: 0.8s ease-out 0.7s;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .slide-backgroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  background-color: #999999;
  z-index: -1;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .slide-backgroud::before {
  content: "";
  display: block;
  position: absolute;
  display: var(--mask-display);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .slide-backgroud video, .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .slide-backgroud img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal {
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  color: white;
  padding-bottom: 0.97rem;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box .title {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.56rem;
  line-height: 0.72rem;
  text-transform: uppercase;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
.index-page .index-banner .swiper-container .swiper-control {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.3rem;
  z-index: 10;
}
.index-page .index-banner .swiper-container .swiper-control .swiper-dots {
  --progress: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  width: 100%;
}
.index-page .index-banner .swiper-container .swiper-control .swiper-dots span {
  position: relative;
  width: 0.14rem;
  height: 0.02rem;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 0.04rem;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .index-banner .swiper-container .swiper-control .swiper-dots span:last-child {
  margin-right: 0;
}
.index-page .index-banner .swiper-container .swiper-control .swiper-dots span.swiper-pagination-bullet-active, .index-page .index-banner .swiper-container .swiper-control .swiper-dots span.active {
  width: 0.4rem;
}
.index-page .index-banner .swiper-container .swiper-control .swiper-dots span.swiper-pagination-bullet-active::after, .index-page .index-banner .swiper-container .swiper-control .swiper-dots span.active::after {
  opacity: 1;
  width: calc(var(--progress) * 100%);
}
.index-page .index-banner .swiper-container .swiper-control .swiper-dots span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 0;
  background-color: white;
}
.index-page .collaborative__projects__section {
  margin-top: 1.12rem;
  margin-bottom: 0;
}
.index-page .page__ad {
  --c-tag: white;
  --c-tag-background: #000000;
  --c-text: #000000;
}
.index-page .page__ad[data-type=fill] {
  --c-text: white;
  --c-tag: #000000;
  --c-tag-background: white;
}
.index-page .page__ad[data-type=fill] .-box {
  position: relative;
  height: 8.8rem;
  z-index: 1;
}
.index-page .page__ad[data-type=fill] .image-block {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  height: 100%;
  z-index: -1;
}
.index-page .page__ad[data-type=fill] .info-block {
  height: 100%;
}
.index-page .page__ad .wal {
  padding-top: 1.2rem;
}
.index-page .page__ad .-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-page .page__ad .image-block {
  max-width: 8.8rem;
  width: 100%;
  height: 6.6rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.index-page .page__ad .image-block .img {
  width: 100%;
  height: 100%;
}
.index-page .page__ad .image-block .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .page__ad .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  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;
  max-width: 6.4rem;
  margin: 0 auto;
  color: var(--c-text);
}
.index-page .page__ad .info-block .tag {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.12rem;
  line-height: 0.14rem;
  padding: 0.07rem 0.1rem;
  background-color: var(--c-tag-background);
  color: var(--c-tag);
  text-transform: uppercase;
  letter-spacing: 0.01rem;
}
.index-page .page__ad .info-block .name {
  margin-top: 0.4rem;
}
.index-page .page__ad .info-block .text {
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.24rem;
}
.index-page .page__ad .info-block .btn-box {
  margin-top: 0.4rem;
  text-align: center;
}
.index-page .page__ad02 {
  --c-tag: white;
  --c-tag-background: #000000;
  --c-text: #000000;
}
.index-page .page__ad02[data-type=fill] {
  --c-text: white;
  --c-tag: #000000;
  --c-tag-background: white;
}
.index-page .page__ad02[data-type=fill] .-box {
  position: relative;
  height: 8.8rem;
  z-index: 1;
}
.index-page .page__ad02[data-type=fill] .image-block {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  height: 100%;
  margin-top: 0;
  z-index: -1;
}
.index-page .page__ad02[data-type=fill] .info-block {
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.index-page .page__ad02 .wal {
  padding-top: 1.2rem;
}
.index-page .page__ad02 .image-block {
  width: 100%;
  height: 8.8rem;
  margin-top: 0.6rem;
}
.index-page .page__ad02 .image-block .img {
  width: 100%;
  height: 100%;
}
.index-page .page__ad02 .image-block .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .page__ad02 .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  color: var(--c-text);
}
.index-page .page__ad02 .info-block .name {
  margin-top: 0.4rem;
}
.index-page .page__ad02 .info-block .text {
  text-align: center;
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-top: 0.24rem;
}
.index-page .page__ad02 .info-block .btn-box {
  margin-top: 0.4rem;
  text-align: center;
}

/* 通用样式start */
.g-view-switcher {
  display: none;
}
@media screen and (max-width: 800px) {
  .g-view-switcher {
    display: block;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin: 0.4rem -0.3rem 0.6rem -0.3rem;
  }
  .g-view-switcher .switcher-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 1.12rem;
  }
  .g-view-switcher .label {
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
    font-size: 0.24rem;
    color: rgba(0, 0, 0, 0.4);
    margin-right: 0.4rem;
    letter-spacing: 0.02rem;
  }
  .g-view-switcher .icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.4rem;
  }
  .g-view-switcher .icons .icon-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    height: 1.12rem;
    cursor: pointer;
  }
  .g-view-switcher .icons .icon-item img {
    width: 0.32rem;
    height: 0.32rem;
    opacity: 0.4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
  }
  .g-view-switcher .icons .icon-item::after {
    position: absolute;
    bottom: 0.36rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #000;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .g-view-switcher .icons .icon-item.active img {
    opacity: 1;
  }
  .g-view-switcher .icons .icon-item.active::after {
    opacity: 1;
  }
}

.u-banner-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
}

.u-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.u-title-lg {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.48rem;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .u-title-lg {
    font-size: 0.64rem;
  }
}

.u-title-md {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .u-title-md {
    font-size: 0.48rem;
  }
}

.u-title-sm {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.32rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .u-title-sm {
    font-size: 0.4rem;
  }
}

.u-text-description {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .u-text-description {
    font-size: 0.28rem;
  }
}

.__crumb {
  padding-top: 0.84rem;
  padding-bottom: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
  --crumb-color: rgba(30, 30, 30, 0.4);
  --crumb-color-hover: rgba(30, 30, 30, 1);
}
@media screen and (max-width: 800px) {
  .__crumb {
    padding-top: 0.3rem;
    padding-bottom: 0.2rem;
  }
}
.__crumb.ffffff {
  --crumb-color: rgba(255, 255, 255, 0.4);
  --crumb-color-hover: rgba(255, 255, 255, 1);
}
.__crumb .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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.__crumb .ul .li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 1.2;
  color: var(--crumb-color);
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .__crumb .ul .li {
    font-size: 0.22rem;
  }
}
.__crumb .ul .li:last-child {
  color: var(--crumb-color-hover);
}
.__crumb .ul .li:last-child a {
  color: inherit;
  cursor: default;
  pointer-events: none;
}
.__crumb .ul .li a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.__crumb .ul .li a:hover {
  color: var(--crumb-color-hover);
}
.__crumb .ul .li .sep {
  display: inline-block;
  margin: 0 0.1rem;
  font-size: 0.14rem;
  opacity: 0.6;
  color: var(--crumb-color);
}
@media screen and (max-width: 800px) {
  .__crumb .ul .li .sep {
    font-size: 0.22rem;
    margin: 0 0.15rem;
  }
}

.series-section {
  margin-top: 1.1rem;
}
@media screen and (max-width: 800px) {
  .series-section {
    margin-top: 0.8rem;
  }
}
.series-section .series-title {
  font-size: 0.32rem;
  line-height: 0.38rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .series-section .series-title {
    font-size: 0.32rem;
    margin-bottom: 0.3rem;
  }
}
.series-section .series-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.29rem;
}
@media screen and (max-width: 800px) {
  .series-section .series-grid {
    gap: 0.29rem;
  }
}
.series-section .series-card {
  width: calc((100% - 0.29rem) / 2);
}
.series-section .series-card.card-1-3 {
  width: calc((100% - 0.58rem) / 3);
}
.series-section .series-card.card-1-3 .img-box {
  aspect-ratio: 560/480;
}
.series-section .series-card.card-2-3 {
  width: calc((100% - 0.58rem) / 3 * 2 + 0.29rem);
}
.series-section .series-card.card-2-3 .img-box {
  aspect-ratio: 1149/480;
}
.series-section .series-card.card-1-2 {
  width: calc((100% - 0.29rem) / 2);
}
.series-section .series-card.card-1-2 .img-box {
  aspect-ratio: 880/520;
}
.series-section .series-card.card-1-1, .series-section .series-card.card-3-3 {
  width: 100%;
}
.series-section .series-card.card-1-1 .img-box, .series-section .series-card.card-3-3 .img-box {
  aspect-ratio: 1800/640;
}
@media screen and (max-width: 800px) {
  .series-section .series-card.card-1-1 .img-box, .series-section .series-card.card-3-3 .img-box {
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 800px) {
  .series-section .series-card {
    width: 100% !important;
  }
  .series-section .series-card.card-1-3, .series-section .series-card.card-2-3, .series-section .series-card.card-1-2, .series-section .series-card.card-1-1, .series-section .series-card.card-3-3 {
    width: 100%;
  }
}
.series-section .series-card .img-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.series-section .series-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
}
.series-section .series-card .img-box .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.series-section .series-card .title {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .series-section .series-card .title {
    font-size: 0.24rem;
    margin-top: 0.2rem;
  }
}
.grid-view .series-section .series-card:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.dl-checkbox {
  position: absolute;
  top: 0.24rem;
  left: 0.24rem;
  z-index: 5;
  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;
}
@media screen and (max-width: 800px) {
  .dl-checkbox {
    top: 0.3rem;
    left: 0.3rem;
  }
}
.dl-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dl-checkbox input:checked ~ .checkmark {
  background-color: #000;
  border-color: #000;
}
.dl-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.dl-checkbox .checkmark {
  position: relative;
  height: 0.24rem;
  width: 0.24rem;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .dl-checkbox .checkmark {
    height: 0.36rem;
    width: 0.36rem;
  }
}
.dl-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 45%;
  width: 0.06rem;
  height: 0.12rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  .dl-checkbox .checkmark:after {
    width: 0.08rem;
    height: 0.16rem;
  }
}
.dl-checkbox:hover .checkmark {
  border-color: #000;
}

/* 通用样式end */
/* 户外页面start */
.outdoor-page .g-text-hover-fff {
  --color: #FFFFFF;
}
.outdoor-page section {
  padding-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page section {
    padding-top: 0.8rem;
  }
}
.outdoor-page .sk-section-title {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .outdoor-page .sk-section-title {
    font-size: 0.56rem;
    letter-spacing: 0.02rem;
  }
}
.outdoor-page .index-banner {
  padding-top: 0;
  --mask-display: none;
}
.outdoor-page .index-banner .swiper-container {
  position: relative;
  height: 100vh;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper {
  height: 100%;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  height: 100%;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .slide-backgroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  z-index: -1;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .slide-backgroud video, .outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .slide-backgroud img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal {
  height: 100%;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  color: white;
  padding-bottom: 0.97rem;
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box .title {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.56rem;
  line-height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box .title {
    font-size: 0.64rem;
    line-height: 0.72rem;
  }
}
.outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3rem;
  }
  .outdoor-page .index-banner .swiper-container .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box .g-more-btn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.outdoor-page .page__ad {
  --c-tag: white;
  --c-tag-background: #000000;
  --c-text: #000000;
}
.outdoor-page .page__ad .wal {
  padding-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .wal {
    padding-top: 0.8rem;
  }
}
.outdoor-page .page__ad .-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.outdoor-page .page__ad .image-block {
  max-width: 8.8rem;
  width: 100%;
  height: 6.6rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .image-block {
    max-width: 100%;
    height: 5rem;
  }
}
.outdoor-page .page__ad .image-block .img {
  width: 100%;
  height: 100%;
}
.outdoor-page .page__ad .image-block .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outdoor-page .page__ad .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  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;
  max-width: 6.4rem;
  margin: 0 auto;
  color: var(--c-text);
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .info-block {
    margin-top: 0.8rem;
    padding: 0 0.4rem;
  }
}
.outdoor-page .page__ad .info-block .tag {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  font-size: 0.12rem;
  line-height: 0.14rem;
  padding: 0.07rem 0.1rem;
  background-color: var(--c-tag-background);
  color: var(--c-tag);
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .info-block .tag {
    font-size: 0.2rem;
    padding: 0.1rem 0.2rem;
  }
}
.outdoor-page .page__ad .info-block .name {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .info-block .name {
    margin-top: 0.4rem;
    font-size: 0.56rem;
    line-height: 1.2;
  }
}
.outdoor-page .page__ad .info-block .text {
  text-align: center;
  font-size: 0.16rem;
  line-height: 1.5;
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .info-block .text {
    font-size: 0.28rem;
    line-height: 1.6;
    margin-top: 0.3rem;
  }
}
.outdoor-page .page__ad .info-block .btn-box {
  margin-top: 0.4rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad .info-block .btn-box {
    margin-top: 0.8rem;
    width: 100%;
  }
  .outdoor-page .page__ad .info-block .btn-box .g-more-btn {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.outdoor-page .page__ad-style-overlap {
  padding-top: 0;
}
.outdoor-page .page__ad-style-overlap .wal {
  padding-top: 0;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad-style-overlap .wal {
    padding-top: 0;
    padding-bottom: 0;
  }
  .outdoor-page .page__ad-style-overlap .-box {
    position: relative;
    display: block;
  }
  .outdoor-page .page__ad-style-overlap .image-block {
    height: 9.6rem;
  }
  .outdoor-page .page__ad-style-overlap .image-block .img img {
    object-fit: cover;
  }
  .outdoor-page .page__ad-style-overlap .info-block {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    margin-top: 0 !important;
    padding: 0 0.4rem;
  }
  .outdoor-page .page__ad-style-overlap .info-block .tag.phone-show {
    display: inline-block;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 0.22rem;
    line-height: 0.26rem;
    padding: 0.15rem 0.3rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
  .outdoor-page .page__ad-style-overlap .info-block .name {
    color: #FFFFFF;
    margin-top: 0.6rem !important;
    font-size: 0.48rem !important;
    line-height: 0.58rem;
  }
  .outdoor-page .page__ad-style-overlap .info-block .name .text-underline {
    background-image: -webkit-linear-gradient(top, transparent 97%, #FFFFFF 0);
    background-image: linear-gradient(to bottom, transparent 97%, #FFFFFF 0);
  }
  .outdoor-page .page__ad-style-overlap .info-block .text {
    display: none;
  }
  .outdoor-page .page__ad-style-overlap .info-block .btn-box {
    margin-top: 0.6rem !important;
  }
  .outdoor-page .page__ad-style-overlap .info-block .btn-box .g-more-btn {
    border-color: #FFFFFF;
    color: #FFFFFF;
    width: auto;
    min-width: 3.2rem;
  }
  .outdoor-page .page__ad-style-overlap .info-block .btn-box .g-more-btn::before {
    background: #FFFFFF;
  }
  .outdoor-page .page__ad-style-overlap .info-block .btn-box .g-more-btn .btn-text {
    color: #FFFFFF;
  }
  .outdoor-page .page__ad-style-overlap .info-block .btn-box .g-more-btn:hover .btn-text {
    color: #000000;
  }
}
.outdoor-page .collaborative__projects__section {
  margin-top: 0;
}
@media scrren and (max-width: 800px) {
  .outdoor-page .collaborative__projects__section {
    margin-top: 1.2rem !important;
  }
}
.outdoor-page .collaborative__projects__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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .outdoor-page .collaborative__projects__section .head-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.3rem;
  }
}
.outdoor-page .collaborative__projects__section .head-box .h2 {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .outdoor-page .collaborative__projects__section .head-box .h2 {
    font-size: 0.48rem;
  }
}
.outdoor-page .collaborative__projects__section .head-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .outdoor-page .collaborative__projects__section .head-box .swiper-btn {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-prev,
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 0.18rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-prev,
  .outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-next {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-prev:hover .img path,
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-next:hover .img path {
  fill-opacity: 1;
}
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-prev .img,
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-next .img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-prev .img path,
.outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-next .img path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.outdoor-page .collaborative__projects__section .scene-swiper {
  margin-top: 0.4rem;
  overflow: hidden;
}
.outdoor-page .collaborative__projects__section .scene-swiper .card-box .img-box {
  width: 100%;
  height: 5.23rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .outdoor-page .collaborative__projects__section .scene-swiper .card-box .img-box {
    height: 4rem;
  }
}
.outdoor-page .collaborative__projects__section .scene-swiper .card-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.outdoor-page .collaborative__projects__section .scene-swiper .card-box .title {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .outdoor-page .collaborative__projects__section .scene-swiper .card-box .title {
    font-size: 0.28rem;
  }
}
.outdoor-page .collaborative__projects__section .scene-swiper .card-box:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.outdoor-page .page__ad02 .wal {
  padding-top: 1.2rem;
}
.outdoor-page .page__ad02 .-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad02 .-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.outdoor-page .page__ad02 .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  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;
  max-width: 6.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad02 .info-block {
    margin-top: 0.6rem;
  }
}
.outdoor-page .page__ad02 .info-block .name {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
.outdoor-page .page__ad02 .image-block {
  width: 100%;
  height: 8.8rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .page__ad02 .image-block {
    height: 6rem;
  }
}
.outdoor-page .page__ad02 .image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outdoor-page .case-study-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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .head-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.3rem;
  }
}
.outdoor-page .case-study-section .head-box .h2 {
  font-size: 0.4rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .head-box .h2 {
    font-size: 0.48rem;
  }
}
.outdoor-page .case-study-section .head-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .head-box .swiper-btn {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.outdoor-page .case-study-section .head-box .swiper-btn .btn-prev,
.outdoor-page .case-study-section .head-box .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 0.18rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .head-box .swiper-btn .btn-prev,
  .outdoor-page .case-study-section .head-box .swiper-btn .btn-next {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.outdoor-page .case-study-section .head-box .swiper-btn .btn-prev:hover .img path,
.outdoor-page .case-study-section .head-box .swiper-btn .btn-next:hover .img path {
  fill-opacity: 1;
}
.outdoor-page .case-study-section .head-box .swiper-btn .btn-prev .img,
.outdoor-page .case-study-section .head-box .swiper-btn .btn-next .img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.outdoor-page .case-study-section .head-box .swiper-btn .btn-prev .img path,
.outdoor-page .case-study-section .head-box .swiper-btn .btn-next .img path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.outdoor-page .case-study-section .case-swiper {
  margin-top: 0.4rem;
}
.outdoor-page .case-study-section .case-swiper .card-box {
  display: block;
  position: relative;
}
.outdoor-page .case-study-section .case-swiper .card-box .img-box {
  position: relative;
  width: 100%;
  height: 5.6rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .case-swiper .card-box .img-box {
    height: 4rem;
  }
}
.outdoor-page .case-study-section .case-swiper .card-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.outdoor-page .case-study-section .case-swiper .card-box .img-box .tag-box {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
.outdoor-page .case-study-section .case-swiper .card-box .img-box .tag-box .tag {
  padding: 0.05rem 0.15rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 0.12rem;
  line-height: 0.14rem;
  backdrop-filter: blur(0.2rem);
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .case-swiper .card-box .img-box .tag-box .tag {
    font-size: 0.2rem;
    padding: 0.1rem 0.2rem;
  }
}
.outdoor-page .case-study-section .case-swiper .card-box .info {
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  z-index: 2;
  margin-top: 0;
}
.outdoor-page .case-study-section .case-swiper .card-box .info .title {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .case-swiper .card-box .info .title {
    font-size: 0.28rem;
  }
}
.outdoor-page .case-study-section .case-swiper .card-box:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.outdoor-page .case-study-section .btn-box {
  margin-top: 0.6rem;
  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;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .outdoor-page .case-study-section .btn-box {
    margin-top: 0.8rem;
  }
  .outdoor-page .case-study-section .btn-box .g-more-btn {
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.outdoor-page .latest-news-section {
  margin-top: 0 !important;
}
.outdoor-page .latest-news-section .h2 {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .h2 {
    font-size: 0.56rem;
    margin-bottom: 0.6rem;
    text-align: left;
  }
}
.outdoor-page .latest-news-section .news-content {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.84rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content {
    margin-top: 0.4rem;
    gap: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .outdoor-page .latest-news-section .news-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.outdoor-page .latest-news-section .news-content .left-big {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.outdoor-page .latest-news-section .news-content .left-big .news-card {
  display: none;
}
.outdoor-page .latest-news-section .news-content .left-big .news-card.active {
  display: block;
}
.outdoor-page .latest-news-section .news-content .left-big .news-card {
  position: relative;
}
.outdoor-page .latest-news-section .news-content .left-big .news-card .img-box {
  position: relative;
  width: 100%;
  height: 5.6rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content .left-big .news-card .img-box {
    height: 5rem;
  }
}
.outdoor-page .latest-news-section .news-content .left-big .news-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.outdoor-page .latest-news-section .news-content .left-big .news-card .img-box .tag {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0.05rem 0.15rem;
  font-size: 0.12rem;
  line-height: 0.14rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  backdrop-filter: blur(0.2rem);
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content .left-big .news-card .img-box .tag {
    font-size: 0.2rem;
    padding: 0.08rem 0.2rem;
  }
}
.outdoor-page .latest-news-section .news-content .left-big .news-card .con-text {
  position: absolute;
  bottom: 0.2rem;
  left: 0.2rem;
  right: 0.2rem;
  z-index: 2;
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content .left-big .news-card .con-text {
    margin-top: 0;
  }
}
.outdoor-page .latest-news-section .news-content .left-big .news-card .con-text .date {
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content .left-big .news-card .con-text .date {
    font-size: 0.24rem;
  }
}
.outdoor-page .latest-news-section .news-content .left-big .news-card .con-text .title {
  margin-top: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #FFFFFF;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content .left-big .news-card .con-text .title {
    font-size: 0.36rem;
    line-height: 1.4;
    margin-top: 0.2rem;
  }
}
.outdoor-page .latest-news-section .news-content .left-big .news-card:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.outdoor-page .latest-news-section .news-content .right-list {
  width: 6.8rem;
}
@media screen and (max-width: 1024px) {
  .outdoor-page .latest-news-section .news-content .right-list {
    width: 100%;
  }
}
.outdoor-page .latest-news-section .news-content .right-list .news-list .news-item {
  display: block;
  padding: 0.34rem 0 0.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.outdoor-page .latest-news-section .news-content .right-list .news-list .news-item.active .title {
  color: #000;
}
.outdoor-page .latest-news-section .news-content .right-list .news-list .news-item:first-child {
  padding-top: 0;
}
.outdoor-page .latest-news-section .news-content .right-list .news-list .news-item .date {
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content .right-list .news-list .news-item .date {
    font-size: 0.2rem;
  }
}
.outdoor-page .latest-news-section .news-content .right-list .news-list .news-item .title {
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .news-content .right-list .news-list .news-item .title {
    font-size: 0.32rem;
    line-height: 1.5;
    margin-top: 0.2rem;
  }
}
.outdoor-page .latest-news-section .btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .latest-news-section .btn-box {
    margin-top: 1rem;
  }
  .outdoor-page .latest-news-section .btn-box .g-more-btn {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.outdoor-page .bottom-banner-section {
  padding-top: 0;
  position: relative;
  height: 9.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-top: 1.2rem;
}
.outdoor-page .bottom-banner-section .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.outdoor-page .bottom-banner-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outdoor-page .bottom-banner-section .info-box {
  text-align: center;
  color: #fff;
}
.outdoor-page .bottom-banner-section .info-box .title {
  font-size: 0.4rem;
  line-height: 1.3;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .outdoor-page .bottom-banner-section .info-box .title {
    font-size: 0.56rem;
    padding: 0 0.4rem;
  }
}
.outdoor-page .bottom-banner-section .info-box .btn-box {
  margin-top: 0.5rem;
}
.outdoor-page .bottom-banner-section .info-box .btn-box .g-more-btn {
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .outdoor-page .bottom-banner-section .info-box .btn-box .g-more-btn {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.outdoor-page .mar-top {
  margin-top: 1.2rem;
  padding-top: 0;
}
.outdoor-page .flex-gap29 {
  gap: 0.29rem;
}
@media screen and (max-width: 800px) {
  .outdoor-page .list-section {
    margin-top: 1rem;
  }
}
.outdoor-page .global-section {
  padding-top: 0.8rem;
}
.outdoor-page .case-study-section {
  padding-top: 0;
  margin-top: 1.44rem;
}
.outdoor-page .case-study-section .tag-box {
  top: 0.2rem;
  right: 0.2rem;
}

.index-page .firstScreenAnimate-outdoor,
.outdoor-page .firstScreenAnimate-outdoor {
  z-index: 9999;
  width: 100vw;
  height: 100vh;
}
.index-page .firstScreenAnimate-outdoor .-wrapper,
.outdoor-page .firstScreenAnimate-outdoor .-wrapper {
  width: 100vw;
  height: 100vh;
  background: transparent;
}
.index-page .firstScreenAnimate-outdoor .-bg,
.index-page .firstScreenAnimate-outdoor .-mask,
.index-page .firstScreenAnimate-outdoor .-mask-image,
.outdoor-page .firstScreenAnimate-outdoor .-bg,
.outdoor-page .firstScreenAnimate-outdoor .-mask,
.outdoor-page .firstScreenAnimate-outdoor .-mask-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}
.index-page .firstScreenAnimate-outdoor .-bg,
.outdoor-page .firstScreenAnimate-outdoor .-bg {
  display: none;
}
.index-page .firstScreenAnimate-outdoor .-mask,
.outdoor-page .firstScreenAnimate-outdoor .-mask {
  overflow: hidden;
}
.index-page .firstScreenAnimate-outdoor .-mask-image,
.outdoor-page .firstScreenAnimate-outdoor .-mask-image {
  background: red;
  -webkit-mask-image: url(../images/base/index/banner-loading-hollow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-image: url(../images/base/index/banner-loading-hollow.svg);
  mask-repeat: no-repeat;
  mask-position: center center;
  -webkit-mask-size: 100vw 100vh;
          mask-size: 100vw 100vh;
  will-change: transform, opacity;
}
.index-page .firstScreenAnimate-outdoor .-logo,
.outdoor-page .firstScreenAnimate-outdoor .-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.4rem;
  height: 1.07rem;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  will-change: opacity;
}
.index-page .firstScreenAnimate-outdoor .-logo .-logo-image,
.outdoor-page .firstScreenAnimate-outdoor .-logo .-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 800px) {
  .index-page .firstScreenAnimate-outdoor .-logo,
  .outdoor-page .firstScreenAnimate-outdoor .-logo {
    width: 3.2rem;
    height: 1.43rem;
  }
}
.index-page .global-section .wal,
.outdoor-page .global-section .wal {
  width: 100%;
  max-width: 17.6rem;
  padding-top: 0;
}
.index-page .global-section .-box,
.outdoor-page .global-section .-box {
  position: relative;
  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;
  overflow: hidden;
}
.index-page .global-section .image-block,
.outdoor-page .global-section .image-block {
  width: 100%;
  height: 100%;
}
.index-page .global-section .image-block .img,
.outdoor-page .global-section .image-block .img {
  width: 100%;
  height: 100%;
}
.index-page .global-section .image-block .lazy-img,
.outdoor-page .global-section .image-block .lazy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .global-section .info-block,
.outdoor-page .global-section .info-block {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-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;
  width: 100%;
  color: #FFFFFF;
}
.index-page .global-section .info-block .name,
.outdoor-page .global-section .info-block .name {
  color: #FFFFFF;
  font-size: 0.48rem;
  line-height: 0.56rem;
  letter-spacing: 0.01rem;
}
.index-page .global-section .info-block .btn-box,
.outdoor-page .global-section .info-block .btn-box {
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .index-page .firstScreenAnimate-outdoor .-wrapper,
  .index-page .firstScreenAnimate-outdoor .-bg,
  .outdoor-page .firstScreenAnimate-outdoor .-wrapper,
  .outdoor-page .firstScreenAnimate-outdoor .-bg {
    background: #f3f3f3;
  }
  .index-page .firstScreenAnimate-outdoor .-logo,
  .outdoor-page .firstScreenAnimate-outdoor .-logo {
    width: 3.2rem;
    height: 1.43rem;
  }
  .index-page section,
  .outdoor-page section {
    padding-top: 0.72rem;
  }
  .index-page .sk-section-title,
  .outdoor-page .sk-section-title {
    font-size: 0.34rem;
    line-height: 0.42rem;
    letter-spacing: 0.01rem;
  }
  .index-page .index-banner,
  .outdoor-page .index-banner {
    padding-top: 0;
  }
  .index-page .index-banner .swiper-container,
  .outdoor-page .index-banner .swiper-container {
    height: 10.8rem;
  }
  .index-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box,
  .outdoor-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box {
    -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;
    padding-bottom: 4.04rem !important;
  }
  .index-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .title,
  .outdoor-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .title {
    font-size: 0.46rem;
    line-height: 0.54rem;
    text-align: center;
  }
  .index-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box,
  .outdoor-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box {
    margin-top: 0.28rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.16rem;
    min-width: 2.1rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .index-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box .btn-block,
  .outdoor-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box .btn-block {
    width: auto;
  }
  .index-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box .btn-block:nth-child(2),
  .outdoor-page .index-banner .swiper-wrapper .swiper-slide .inner .wal .slide-box .btn-box .btn-block:nth-child(2) {
    display: none;
  }
  .index-page .index-banner .swiper-control,
  .outdoor-page .index-banner .swiper-control {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0.3rem;
    z-index: 10;
    display: block !important;
  }
  .index-page .index-banner .swiper-control .swiper-dots,
  .outdoor-page .index-banner .swiper-control .swiper-dots {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .index-page .page__ad .wal,
  .outdoor-page .page__ad .wal {
    padding-top: 0.72rem;
  }
  .index-page .page__ad .-box,
  .outdoor-page .page__ad .-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .index-page .page__ad .image-block,
  .outdoor-page .page__ad .image-block {
    max-width: 100%;
  }
  .index-page .page__ad .info-block,
  .outdoor-page .page__ad .info-block {
    max-width: 100%;
    margin-top: 0.36rem;
    padding: 0 0.16rem 0 0.16rem;
  }
  .index-page .page__ad .info-block .name,
  .outdoor-page .page__ad .info-block .name {
    margin-top: 0.24rem;
    font-size: 0.34rem;
    line-height: 0.42rem;
  }
  .index-page .page__ad .info-block .text,
  .outdoor-page .page__ad .info-block .text {
    margin-top: 0.16rem;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .index-page .page__ad .info-block .btn-box,
  .outdoor-page .page__ad .info-block .btn-box {
    margin-top: 0.3rem;
  }
  .index-page .page__ad02 .wal,
  .outdoor-page .page__ad02 .wal {
    padding-top: 0.72rem;
  }
  .index-page .page__ad02 .-box,
  .outdoor-page .page__ad02 .-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .index-page .page__ad02 .image-block,
  .outdoor-page .page__ad02 .image-block {
    height: 4.4rem;
    margin-top: 0;
  }
  .index-page .page__ad02 .info-block,
  .outdoor-page .page__ad02 .info-block {
    max-width: 100%;
    margin-top: 0.36rem;
    padding: 0 0.16rem 0 0.16rem;
  }
  .index-page .page__ad02 .info-block .name,
  .outdoor-page .page__ad02 .info-block .name {
    margin-top: 0;
    font-size: 0.34rem;
    line-height: 0.42rem;
  }
  .index-page .page__ad02 .info-block .btn-box,
  .outdoor-page .page__ad02 .info-block .btn-box {
    margin-top: 0.3rem;
  }
  .index-page .global-section .wal,
  .outdoor-page .global-section .wal {
    padding-top: 0.72rem;
  }
  .index-page .global-section .-box,
  .outdoor-page .global-section .-box {
    height: 4.2rem;
  }
  .index-page .global-section .info-block,
  .outdoor-page .global-section .info-block {
    margin-top: 0;
    padding: 0 0 0 0;
  }
  .index-page .global-section .info-block .name,
  .outdoor-page .global-section .info-block .name {
    font-size: 0.34rem;
    line-height: 0.42rem;
  }
  .index-page .global-section .info-block .btn-box,
  .outdoor-page .global-section .info-block .btn-box {
    margin-top: 0.24rem;
  }
  .index-page .page__ad02.global-section,
  .outdoor-page .page__ad02.global-section {
    padding-top: 0;
    margin-top: 1.2rem;
  }
  .index-page .page__ad02.global-section .wal,
  .outdoor-page .page__ad02.global-section .wal {
    padding-top: 0;
  }
  .index-page .page__ad02.global-section .-box,
  .outdoor-page .page__ad02.global-section .-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    overflow: visible;
  }
  .index-page .page__ad02.global-section .info-block,
  .outdoor-page .page__ad02.global-section .info-block {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 0 0.4rem;
    color: #000000;
  }
  .index-page .page__ad02.global-section .info-block .name,
  .outdoor-page .page__ad02.global-section .info-block .name {
    font-size: 0.48rem;
    line-height: 0.58rem;
    color: #000000;
  }
  .index-page .page__ad02.global-section .info-block .name .text-underline,
  .outdoor-page .page__ad02.global-section .info-block .name .text-underline {
    background-image: -webkit-linear-gradient(top, transparent 97%, #000000 0);
    background-image: linear-gradient(to bottom, transparent 97%, #000000 0);
  }
  .index-page .page__ad02.global-section .info-block .text,
  .outdoor-page .page__ad02.global-section .info-block .text {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    text-align: center;
  }
  .index-page .page__ad02.global-section .info-block .btn-box,
  .outdoor-page .page__ad02.global-section .info-block .btn-box {
    margin-top: 0.6rem;
  }
  .index-page .page__ad02.global-section .info-block .btn-box .g-more-btn,
  .outdoor-page .page__ad02.global-section .info-block .btn-box .g-more-btn {
    border-color: #000000;
    color: #000000;
    background-color: #FFFFFF;
  }
  .index-page .page__ad02.global-section .info-block .btn-box .g-more-btn::before,
  .outdoor-page .page__ad02.global-section .info-block .btn-box .g-more-btn::before {
    background: #000000;
  }
  .index-page .page__ad02.global-section .info-block .btn-box .g-more-btn .btn-text,
  .outdoor-page .page__ad02.global-section .info-block .btn-box .g-more-btn .btn-text {
    color: #000000;
  }
  .index-page .page__ad02.global-section .info-block .btn-box .g-more-btn:hover .btn-text,
  .outdoor-page .page__ad02.global-section .info-block .btn-box .g-more-btn:hover .btn-text {
    color: #FFFFFF;
  }
  .index-page .page__ad02.global-section .image-block,
  .outdoor-page .page__ad02.global-section .image-block {
    margin-top: 0.8rem;
    height: 9.6rem;
  }
  .index-page .page__ad02.global-section .image-block .img img,
  .outdoor-page .page__ad02.global-section .image-block .img img {
    object-fit: cover;
  }
  .index-page .collaborative__projects__section,
  .index-page .case-study-section,
  .index-page .latest-news-section,
  .outdoor-page .collaborative__projects__section,
  .outdoor-page .case-study-section,
  .outdoor-page .latest-news-section {
    margin-top: 0.84rem;
    margin-bottom: 0;
    overflow: hidden;
  }
  .index-page .collaborative__projects__section .head-box,
  .index-page .case-study-section .head-box,
  .index-page .latest-news-section .head-box,
  .outdoor-page .collaborative__projects__section .head-box,
  .outdoor-page .case-study-section .head-box,
  .outdoor-page .latest-news-section .head-box {
    margin-bottom: 0.24rem;
  }
  .index-page .collaborative__projects__section,
  .outdoor-page .collaborative__projects__section {
    margin-top: 1.2rem;
    padding-top: 0;
  }
  .index-page .collaborative__projects__section .scene-swiper,
  .outdoor-page .collaborative__projects__section .scene-swiper {
    margin-top: 0.24rem;
  }
  .index-page .collaborative__projects__section .scene-swiper .swiper-slide,
  .outdoor-page .collaborative__projects__section .scene-swiper .swiper-slide {
    width: 5.6rem;
  }
  .index-page .collaborative__projects__section .scene-swiper .card-box .img-box,
  .outdoor-page .collaborative__projects__section .scene-swiper .card-box .img-box {
    height: 4.2rem;
  }
  .index-page .collaborative__projects__section .scene-swiper .card-box .title,
  .outdoor-page .collaborative__projects__section .scene-swiper .card-box .title {
    margin-top: 0.24rem;
    font-size: 0.28rem;
    line-height: 1.2;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
  .index-page .collaborative__projects__section .scene-swiper .card-box .title .text-underline,
  .outdoor-page .collaborative__projects__section .scene-swiper .card-box .title .text-underline {
    background-image: none;
  }
  .index-page .collaborative__projects__section .head-box,
  .outdoor-page .collaborative__projects__section .head-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-page .collaborative__projects__section .head-box .h2,
  .outdoor-page .collaborative__projects__section .head-box .h2 {
    font-size: 0.48rem;
    line-height: 1;
  }
  .index-page .collaborative__projects__section .head-box .swiper-btn,
  .outdoor-page .collaborative__projects__section .head-box .swiper-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.18rem;
  }
  .index-page .collaborative__projects__section .head-box .swiper-btn .btn-prev, .index-page .collaborative__projects__section .head-box .swiper-btn .btn-next,
  .outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-prev,
  .outdoor-page .collaborative__projects__section .head-box .swiper-btn .btn-next {
    width: 0.36rem;
    height: 0.36rem;
    margin-left: 0;
  }
  .index-page .collaborative__projects__section .btn-box.phone-show,
  .outdoor-page .collaborative__projects__section .btn-box.phone-show {
    margin-top: 0.6rem;
    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: 0 0.4rem;
  }
  .index-page .collaborative__projects__section .btn-box.phone-show .g-more-btn,
  .outdoor-page .collaborative__projects__section .btn-box.phone-show .g-more-btn {
    width: 100%;
    max-width: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 0.88rem;
    font-size: 0.24rem;
    border: 1px solid #000000;
    color: #000000;
  }
  .index-page .collaborative__projects__section .btn-box.phone-show .g-more-btn .btn-text,
  .outdoor-page .collaborative__projects__section .btn-box.phone-show .g-more-btn .btn-text {
    color: #000000;
  }
  .index-page .collaborative__projects__section .btn-box.phone-show .g-more-btn:hover,
  .outdoor-page .collaborative__projects__section .btn-box.phone-show .g-more-btn:hover {
    background-color: #000000;
  }
  .index-page .collaborative__projects__section .btn-box.phone-show .g-more-btn:hover .btn-text,
  .outdoor-page .collaborative__projects__section .btn-box.phone-show .g-more-btn:hover .btn-text {
    color: #FFFFFF;
  }
  .index-page .case-study-section,
  .outdoor-page .case-study-section {
    margin-top: 1.2rem;
    margin-bottom: 0;
    overflow: hidden;
  }
  .index-page .case-study-section .head-box,
  .outdoor-page .case-study-section .head-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.4rem;
  }
  .index-page .case-study-section .head-box .h2,
  .outdoor-page .case-study-section .head-box .h2 {
    font-size: 0.48rem;
    line-height: 1;
  }
  .index-page .case-study-section .head-box .swiper-btn,
  .outdoor-page .case-study-section .head-box .swiper-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.18rem;
  }
  .index-page .case-study-section .head-box .swiper-btn .btn-prev, .index-page .case-study-section .head-box .swiper-btn .btn-next,
  .outdoor-page .case-study-section .head-box .swiper-btn .btn-prev,
  .outdoor-page .case-study-section .head-box .swiper-btn .btn-next {
    width: 0.36rem;
    height: 0.36rem;
    margin-left: 0;
  }
  .index-page .case-study-section .case-swiper,
  .outdoor-page .case-study-section .case-swiper {
    margin-top: 0.24rem;
  }
  .index-page .case-study-section .case-swiper .swiper-slide,
  .outdoor-page .case-study-section .case-swiper .swiper-slide {
    width: 5.6rem;
  }
  .index-page .case-study-section .case-swiper .card-box .img-box,
  .outdoor-page .case-study-section .case-swiper .card-box .img-box {
    height: 3.88rem;
  }
  .index-page .case-study-section .case-swiper .card-box .img-box .tag-box,
  .outdoor-page .case-study-section .case-swiper .card-box .img-box .tag-box {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
  }
  .index-page .case-study-section .case-swiper .card-box .img-box .tag-box .tag,
  .outdoor-page .case-study-section .case-swiper .card-box .img-box .tag-box .tag {
    font-size: 0.2rem;
    line-height: 0.24rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 0.05rem 0.15rem;
  }
  .index-page .case-study-section .case-swiper .card-box .info,
  .outdoor-page .case-study-section .case-swiper .card-box .info {
    position: static;
    margin-top: 0.24rem;
    padding: 0;
    color: #000000;
  }
  .index-page .case-study-section .case-swiper .card-box .info .title,
  .outdoor-page .case-study-section .case-swiper .card-box .info .title {
    color: #000000;
    font-size: 0.28rem;
    line-height: 0.42rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
  .index-page .case-study-section .case-swiper .card-box .info .title .text-underline,
  .outdoor-page .case-study-section .case-swiper .card-box .info .title .text-underline {
    background-image: none;
  }
  .index-page .case-study-section .btn-box.phone-show,
  .outdoor-page .case-study-section .btn-box.phone-show {
    margin-top: 0.6rem;
    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: 0 0.4rem;
  }
  .index-page .case-study-section .btn-box.phone-show .g-more-btn,
  .outdoor-page .case-study-section .btn-box.phone-show .g-more-btn {
    max-width: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 0.88rem;
    font-size: 0.24rem;
    border: 1px solid #000000;
    color: #000000;
  }
  .index-page .case-study-section .btn-box.phone-show .g-more-btn .btn-text,
  .outdoor-page .case-study-section .btn-box.phone-show .g-more-btn .btn-text {
    color: #000000;
  }
  .index-page .case-study-section .btn-box.phone-show .g-more-btn:hover,
  .outdoor-page .case-study-section .btn-box.phone-show .g-more-btn:hover {
    background-color: #000000;
  }
  .index-page .case-study-section .btn-box.phone-show .g-more-btn:hover .btn-text,
  .outdoor-page .case-study-section .btn-box.phone-show .g-more-btn:hover .btn-text {
    color: #FFFFFF;
  }
  .index-page .case-study-section .btn-box.text-center,
  .outdoor-page .case-study-section .btn-box.text-center {
    display: none;
  }
  .index-page .latest-news-section,
  .outdoor-page .latest-news-section {
    margin-top: 1.2rem;
    margin-bottom: 0;
    overflow: hidden;
  }
  .index-page .latest-news-section .h2,
  .outdoor-page .latest-news-section .h2 {
    margin-bottom: 0.4rem;
    font-size: 0.48rem;
    line-height: 1;
  }
  .index-page .latest-news-section .news-swiper,
  .outdoor-page .latest-news-section .news-swiper {
    margin-top: 0.24rem;
    display: block;
    width: 100%;
    overflow: visible;
  }
  .index-page .latest-news-section .news-swiper .swiper-slide,
  .outdoor-page .latest-news-section .news-swiper .swiper-slide {
    width: 100%;
  }
  .index-page .latest-news-section .news-swiper .news-card,
  .outdoor-page .latest-news-section .news-swiper .news-card {
    display: block;
    background: #F4F3F1;
  }
  .index-page .latest-news-section .news-swiper .news-card .img-box,
  .outdoor-page .latest-news-section .news-swiper .news-card .img-box {
    height: 3.88rem;
    position: relative;
  }
  .index-page .latest-news-section .news-swiper .news-card .img-box .tag,
  .outdoor-page .latest-news-section .news-swiper .news-card .img-box .tag {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
    font-size: 0.2rem;
    line-height: 0.24rem;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 0.05rem 0.15rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
  .index-page .latest-news-section .news-swiper .news-card .con-text,
  .outdoor-page .latest-news-section .news-swiper .news-card .con-text {
    padding: 0.61rem 0.3rem 0.55rem 0.3rem;
  }
  .index-page .latest-news-section .news-swiper .news-card .con-text .date,
  .outdoor-page .latest-news-section .news-swiper .news-card .con-text .date {
    font-size: 0.24rem;
    line-height: 0.29rem;
    color: rgba(0, 0, 0, 0.6);
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
  .index-page .latest-news-section .news-swiper .news-card .con-text .title,
  .outdoor-page .latest-news-section .news-swiper .news-card .con-text .title {
    margin-top: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #000000;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
  .index-page .latest-news-section .news-swiper .news-card .con-text .title .text-underline,
  .outdoor-page .latest-news-section .news-swiper .news-card .con-text .title .text-underline {
    background-image: none;
  }
  .index-page .latest-news-section .news-swiper .swiper-pagination,
  .outdoor-page .latest-news-section .news-swiper .swiper-pagination {
    position: relative;
    margin-top: 0.5rem;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index-page .latest-news-section .news-swiper .swiper-pagination .swiper-pagination-bullet,
  .outdoor-page .latest-news-section .news-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
    border-radius: 0.16rem;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 0.08rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .latest-news-section .news-swiper .swiper-pagination .swiper-pagination-bullet-active,
  .outdoor-page .latest-news-section .news-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #000000;
  }
  .index-page .latest-news-section .btn-box.phone-show,
  .outdoor-page .latest-news-section .btn-box.phone-show {
    margin-top: 0.6rem;
    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: 0 0.4rem;
  }
  .index-page .latest-news-section .btn-box.phone-show .g-more-btn,
  .outdoor-page .latest-news-section .btn-box.phone-show .g-more-btn {
    max-width: none;
    width: unset;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.24rem;
    border: 1px solid #000000;
    color: #000000;
  }
  .index-page .latest-news-section .btn-box.phone-show .g-more-btn .btn-text,
  .outdoor-page .latest-news-section .btn-box.phone-show .g-more-btn .btn-text {
    color: #000000;
  }
  .index-page .latest-news-section .btn-box.phone-show .g-more-btn:hover,
  .outdoor-page .latest-news-section .btn-box.phone-show .g-more-btn:hover {
    background-color: #000000;
  }
  .index-page .latest-news-section .btn-box.phone-show .g-more-btn:hover .btn-text,
  .outdoor-page .latest-news-section .btn-box.phone-show .g-more-btn:hover .btn-text {
    color: #FFFFFF;
  }
  .index-page .bottom-banner-section .info-box .title,
  .outdoor-page .bottom-banner-section .info-box .title {
    font-size: 0.48rem;
    line-height: 0.58rem;
    padding: 0 0.2rem 0 0.2rem;
  }
  .index-page .bottom-banner-section .info-box .btn-box,
  .outdoor-page .bottom-banner-section .info-box .btn-box {
    margin-top: 0.6rem;
  }
  .index-page .bottom-banner-section .info-box .btn-box .g-more-btn,
  .outdoor-page .bottom-banner-section .info-box .btn-box .g-more-btn {
    width: unset;
    min-width: 2.1rem;
    background: #ffffff;
    color: #000000;
  }
}

/* 户外页面end */
/* 阳光系列页面start */
.sunshine-collection-page, .product-detail-sec-page,
.product-detail-micro-page, .master-collection-page {
  padding-top: 0.84rem;
}
.sunshine-collection-page .__crumb, .product-detail-sec-page .__crumb,
.product-detail-micro-page .__crumb, .master-collection-page .__crumb {
  padding-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .sunshine-collection-page .__crumb, .product-detail-sec-page .__crumb,
  .product-detail-micro-page .__crumb, .master-collection-page .__crumb {
    padding-top: 0.84rem;
  }
}
.sunshine-collection-page .page-title, .product-detail-sec-page .page-title,
.product-detail-micro-page .page-title, .master-collection-page .page-title {
  margin-top: 0.63rem;
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .sunshine-collection-page .page-title, .product-detail-sec-page .page-title,
  .product-detail-micro-page .page-title, .master-collection-page .page-title {
    font-size: 0.56rem;
    margin-top: 0.4rem;
  }
}
.sunshine-collection-page .view-container, .product-detail-sec-page .view-container,
.product-detail-micro-page .view-container, .master-collection-page .view-container {
  display: none;
}
.sunshine-collection-page .view-container.active, .product-detail-sec-page .view-container.active,
.product-detail-micro-page .view-container.active, .master-collection-page .view-container.active {
  display: block;
}
.sunshine-collection-page .phone-title-box, .product-detail-sec-page .phone-title-box,
.product-detail-micro-page .phone-title-box, .master-collection-page .phone-title-box {
  display: none;
}
@media screen and (max-width: 800px) {
  .sunshine-collection-page .phone-title-box, .product-detail-sec-page .phone-title-box,
  .product-detail-micro-page .phone-title-box, .master-collection-page .phone-title-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-bottom: 0.3rem;
  }
  .sunshine-collection-page .phone-title-box .series-title, .product-detail-sec-page .phone-title-box .series-title,
  .product-detail-micro-page .phone-title-box .series-title, .master-collection-page .phone-title-box .series-title {
    margin-bottom: 0;
  }
  .sunshine-collection-page .phone-title-box .series-count, .product-detail-sec-page .phone-title-box .series-count,
  .product-detail-micro-page .phone-title-box .series-count, .master-collection-page .phone-title-box .series-count {
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
    font-size: 0.28rem;
    color: #000000;
    margin-left: 0.2rem;
  }
}
.sunshine-collection-page .grid-view .series-card:hover .img-box, .product-detail-sec-page .grid-view .series-card:hover .img-box,
.product-detail-micro-page .grid-view .series-card:hover .img-box, .master-collection-page .grid-view .series-card:hover .img-box {
  background-color: #f0efed;
}
.sunshine-collection-page .grid-view .series-card:hover .img-box .img, .product-detail-sec-page .grid-view .series-card:hover .img-box .img,
.product-detail-micro-page .grid-view .series-card:hover .img-box .img, .master-collection-page .grid-view .series-card:hover .img-box .img {
  opacity: 0;
}
.sunshine-collection-page .grid-view .series-card:hover .img-box .img-hover, .product-detail-sec-page .grid-view .series-card:hover .img-box .img-hover,
.product-detail-micro-page .grid-view .series-card:hover .img-box .img-hover, .master-collection-page .grid-view .series-card:hover .img-box .img-hover {
  opacity: 1;
}

/* 阳光系列页面end */
/* 大师系列页面start */
.master-collection-page main {
  padding-bottom: 1.2rem;
}
.master-collection-page main .__crumb {
  padding-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .master-collection-page main .__crumb {
    padding-top: 0.84rem;
  }
}
@media screen and (max-width: 800px) {
  .master-collection-page main .page-title {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.master-collection-page main .series-section .series-grid {
  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) {
  .master-collection-page main .series-section .series-grid {
    gap: 0.8rem;
  }
}
.master-collection-page main .series-section .series-grid.grid-1 .series-card {
  width: 100%;
}
.master-collection-page main .series-section .series-grid.grid-1 .series-card .img-box {
  aspect-ratio: 1800/640;
}
@media screen and (max-width: 800px) {
  .master-collection-page main .series-section .series-grid.grid-1 .series-card .img-box {
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 800px) {
  .master-collection-page main .series-section .series-card {
    width: 100%;
  }
}
.master-collection-page main .series-section .series-card .img-box {
  aspect-ratio: 880/520;
}
@media screen and (max-width: 800px) {
  .master-collection-page main .series-section .series-card .img-box {
    height: 6.9rem;
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 800px) {
  .master-collection-page main .series-section .series-card .title {
    font-size: 0.28rem;
    line-height: 0.34rem;
    margin-top: 0.3rem;
  }
}
.master-collection-page main .series-section .series-title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  margin-bottom: 0.4rem;
}
.master-collection-page main .series-section.series-sld-section {
  margin-top: 1.2rem;
}

/* 大师系列页面end */
/* 产品详情页面 & 微产品详情页面 start */
.product-detail-sec-page,
.product-detail-micro-page {
  padding-top: 0.64rem;
}
.product-detail-sec-page .__crumb,
.product-detail-micro-page .__crumb {
  padding-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .__crumb,
  .product-detail-micro-page .__crumb {
    padding-top: 0.84rem;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page,
  .product-detail-micro-page {
    padding-top: 1.2rem;
  }
}
.product-detail-sec-page .product-info-section,
.product-detail-micro-page .product-info-section {
  margin-top: 0.13rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section,
  .product-detail-micro-page .product-info-section {
    margin-top: 0.2rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box,
.product-detail-micro-page .product-info-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
@media screen and (min-width: 1025px) {
  .product-detail-sec-page .product-info-section .flex-box,
  .product-detail-micro-page .product-info-section .flex-box {
    margin-left: calc((17.6rem - 100vw) / 2);
    width: calc(100% + (100vw - 17.6rem) / 2);
    gap: 0.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .product-info-section .flex-box,
  .product-detail-micro-page .product-info-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
  }
}
.product-detail-sec-page .product-info-section .left-gallery,
.product-detail-micro-page .product-info-section .left-gallery {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  height: 10rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery,
  .product-detail-micro-page .product-info-section .left-gallery {
    height: auto;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .main-img,
.product-detail-micro-page .product-info-section .left-gallery .main-img {
  background: #f4f4f4;
  padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery .main-img,
  .product-detail-micro-page .product-info-section .left-gallery .main-img {
    padding: 0 0 0 0;
    aspect-ratio: 1/1;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .swiper-wrapper,
.product-detail-micro-page .product-info-section .left-gallery .main-img .swiper-wrapper {
  height: 100%;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .swiper-wrapper .swiper-slide,
.product-detail-micro-page .product-info-section .left-gallery .main-img .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .swiper-wrapper .swiper-slide img,
.product-detail-micro-page .product-info-section .left-gallery .main-img .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns,
.product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 0;
  pointer-events: none;
  z-index: 10;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns .prev-btn,
.product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns .next-btn,
.product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns .prev-btn,
.product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns .next-btn {
  width: 0.44rem;
  height: 0.44rem;
  background: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -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;
  pointer-events: auto;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns .prev-btn img,
.product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns .next-btn img,
.product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns .prev-btn img,
.product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns .next-btn img {
  width: 0.2rem;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns .prev-btn.swiper-button-disabled,
.product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns .next-btn.swiper-button-disabled,
.product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns .prev-btn.swiper-button-disabled,
.product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns .next-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery .main-img .nav-btns,
  .product-detail-micro-page .product-info-section .left-gallery .main-img .nav-btns {
    display: none !important;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns,
.product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.15rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns,
  .product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns {
    top: 0.2rem;
    bottom: auto;
    right: 0.2rem;
    gap: 0.1rem;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .view-3d,
.product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .view-3d {
  background: #fff;
  padding: 0.08rem 0.2rem 0.08rem 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  cursor: pointer;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .view-3d img,
.product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .view-3d img {
  width: 0.16rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .view-3d,
  .product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .view-3d {
    padding: 0.16rem 0.2rem 0.16rem 0.2rem;
    font-size: 0.22rem;
    line-height: 0.24rem;
    gap: 0.2rem;
  }
  .product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .view-3d img,
  .product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .view-3d img {
    width: 0.36rem;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen,
.product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen {
  width: 0.4rem;
  height: 0.4rem;
  background: #fff;
  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;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen img,
.product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen img {
  width: 0.18rem;
  height: 0.18rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen,
  .product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen {
    width: 0.48rem;
    height: 0.48rem;
  }
  .product-detail-sec-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen img,
  .product-detail-micro-page .product-info-section .left-gallery .main-img .tool-btns .fullscreen img {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .thumb-list,
.product-detail-micro-page .product-info-section .left-gallery .main-img .thumb-list {
  position: absolute;
  bottom: 0.3rem;
  left: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery .main-img .thumb-list,
  .product-detail-micro-page .product-info-section .left-gallery .main-img .thumb-list {
    display: none;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .thumb-list .thumb,
.product-detail-micro-page .product-info-section .left-gallery .main-img .thumb-list .thumb {
  width: 0.6rem;
  height: 0.6rem;
  aspect-ratio: 1;
  background: #fff;
  padding: 0.05rem 0.05rem 0.05rem 0.05rem;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .thumb-list .thumb.active,
.product-detail-micro-page .product-info-section .left-gallery .main-img .thumb-list .thumb.active {
  border-color: #000;
}
.product-detail-sec-page .product-info-section .left-gallery .main-img .thumb-list .thumb img,
.product-detail-micro-page .product-info-section .left-gallery .main-img .thumb-list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-sec-page .product-info-section .left-gallery .swiper-pagination,
.product-detail-micro-page .product-info-section .left-gallery .swiper-pagination {
  display: none;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .left-gallery .swiper-pagination,
  .product-detail-micro-page .product-info-section .left-gallery .swiper-pagination {
    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;
    bottom: 0.3rem;
    left: 0;
    width: 100%;
    z-index: 99;
  }
}
.product-detail-sec-page .product-info-section .left-gallery .swiper-pagination .swiper-pagination-bullet,
.product-detail-micro-page .product-info-section .left-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
  margin: 0 0.08rem 0 0.08rem;
}
.product-detail-sec-page .product-info-section .left-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.product-detail-micro-page .product-info-section .left-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.product-detail-sec-page .product-info-section .right-details,
.product-detail-micro-page .product-info-section .right-details {
  width: 5.4rem;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .product-info-section .right-details,
  .product-detail-micro-page .product-info-section .right-details {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details,
  .product-detail-micro-page .product-info-section .right-details {
    padding: 0 0 0 0;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .name,
  .product-detail-micro-page .product-info-section .right-details .name {
    font-size: 0.48rem;
    line-height: 1.2;
    margin-top: 0.4rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .model,
.product-detail-micro-page .product-info-section .right-details .model {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.29rem;
  color: rgb(0, 0, 0);
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .model,
  .product-detail-micro-page .product-info-section .right-details .model {
    font-size: 0.24rem;
    margin-top: 0.1rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .detail-item,
.product-detail-micro-page .product-info-section .right-details .detail-item {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .detail-item,
  .product-detail-micro-page .product-info-section .right-details .detail-item {
    margin-top: 0.56rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .detail-item .label,
.product-detail-micro-page .product-info-section .right-details .detail-item .label {
  font-size: 0.14rem;
  line-height: 0.17rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .detail-item .label,
  .product-detail-micro-page .product-info-section .right-details .detail-item .label {
    font-size: 0.22rem;
    line-height: 0.27rem;
    font-family: var(--sk-font-Montserrat-Regular);
    font-weight: 400;
  }
}
.product-detail-sec-page .product-info-section .right-details .detail-item .label span,
.product-detail-micro-page .product-info-section .right-details .detail-item .label span {
  color: rgba(0, 0, 0, 0.6);
  margin-left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .detail-item .label span,
  .product-detail-micro-page .product-info-section .right-details .detail-item .label span {
    color: #000000;
  }
}
.product-detail-sec-page .product-info-section .right-details .swatches,
.product-detail-micro-page .product-info-section .right-details .swatches {
  margin-top: 0.15rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .swatches,
  .product-detail-micro-page .product-info-section .right-details .swatches {
    margin-top: 0.3rem;
    gap: 0.2rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .swatches .swatch,
.product-detail-micro-page .product-info-section .right-details .swatches .swatch {
  width: 0.52rem;
  height: 0.34rem;
  position: relative;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .swatches .swatch,
  .product-detail-micro-page .product-info-section .right-details .swatches .swatch {
    width: 0.6rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .swatches .swatch::after,
.product-detail-micro-page .product-info-section .right-details .swatches .swatch::after {
  content: "";
  position: absolute;
  top: -0.04rem;
  left: -0.04rem;
  right: -0.04rem;
  bottom: -0.04rem;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-detail-sec-page .product-info-section .right-details .swatches .swatch.active::after,
.product-detail-micro-page .product-info-section .right-details .swatches .swatch.active::after {
  border-color: #000;
}
.product-detail-sec-page .product-info-section .right-details .specs-list,
.product-detail-micro-page .product-info-section .right-details .specs-list {
  margin-top: 0.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .specs-list,
  .product-detail-micro-page .product-info-section .right-details .specs-list {
    margin-top: 0.4rem;
    border-top: 1px solid #eee;
  }
}
.product-detail-sec-page .product-info-section .right-details .specs-list .spec-row,
.product-detail-micro-page .product-info-section .right-details .specs-list .spec-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.15rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.16rem;
  line-height: 0.2rem;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .specs-list .spec-row,
  .product-detail-micro-page .product-info-section .right-details .specs-list .spec-row {
    padding: 0.3rem 0;
    font-size: 0.24rem;
    border-bottom: 1px solid #eee;
  }
}
.product-detail-sec-page .product-info-section .right-details .specs-list .spec-row .label,
.product-detail-micro-page .product-info-section .right-details .specs-list .spec-row .label {
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .specs-list .spec-row .label,
  .product-detail-micro-page .product-info-section .right-details .specs-list .spec-row .label {
    font-size: 0.24rem;
    color: rgba(0, 0, 0, 0.6);
  }
}
.product-detail-sec-page .product-info-section .right-details .specs-list .spec-row .val,
.product-detail-micro-page .product-info-section .right-details .specs-list .spec-row .val {
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .specs-list .spec-row .val,
  .product-detail-micro-page .product-info-section .right-details .specs-list .spec-row .val {
    font-size: 0.24rem;
    color: #000;
  }
}
.product-detail-sec-page .product-info-section .right-details .features-grid,
.product-detail-micro-page .product-info-section .right-details .features-grid {
  margin-top: 0.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem 0.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .features-grid,
  .product-detail-micro-page .product-info-section .right-details .features-grid {
    margin-top: 0.6rem;
    gap: 0.6rem 0.2rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .features-grid .feature-item,
.product-detail-micro-page .product-info-section .right-details .features-grid .feature-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;
}
.product-detail-sec-page .product-info-section .right-details .features-grid .feature-item img,
.product-detail-micro-page .product-info-section .right-details .features-grid .feature-item img {
  width: 0.32rem;
  height: 0.32rem;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .features-grid .feature-item img,
  .product-detail-micro-page .product-info-section .right-details .features-grid .feature-item img {
    width: 0.64rem;
    height: 0.64rem;
    margin-bottom: 0.2rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .features-grid .feature-item span,
.product-detail-micro-page .product-info-section .right-details .features-grid .feature-item span {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .features-grid .feature-item span,
  .product-detail-micro-page .product-info-section .right-details .features-grid .feature-item span {
    font-size: 0.22rem;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.6);
  }
}
.product-detail-sec-page .product-info-section .right-details .btn-box,
.product-detail-micro-page .product-info-section .right-details .btn-box {
  margin-top: 1.03rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .btn-box,
  .product-detail-micro-page .product-info-section .right-details .btn-box {
    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.2rem;
  }
}
.product-detail-sec-page .product-info-section .right-details .btn-box .g-more-btn,
.product-detail-micro-page .product-info-section .right-details .btn-box .g-more-btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-detail-sec-page .product-info-section .right-details .btn-box .g-more-btn.black,
.product-detail-micro-page .product-info-section .right-details .btn-box .g-more-btn.black {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .right-details .btn-box .g-more-btn,
  .product-detail-micro-page .product-info-section .right-details .btn-box .g-more-btn {
    width: 100%;
    height: 0.88rem;
    padding-bottom: 0.2rem;
    padding-top: 0.2rem;
    font-size: 0.24rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-detail-sec-page .description-section,
.product-detail-micro-page .description-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section,
  .product-detail-micro-page .description-section {
    margin-top: 0.8rem;
  }
}
.product-detail-sec-page .description-section .flex-box,
.product-detail-micro-page .description-section .flex-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;
  gap: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .description-section .flex-box,
  .product-detail-micro-page .description-section .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
}
.product-detail-sec-page .description-section .left-img,
.product-detail-micro-page .description-section .left-img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-detail-sec-page .description-section .left-img img,
.product-detail-micro-page .description-section .left-img img {
  width: 100%;
  display: block;
}
.product-detail-sec-page .description-section .right-text,
.product-detail-micro-page .description-section .right-text {
  width: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .description-section .right-text,
  .product-detail-micro-page .description-section .right-text {
    width: 100%;
  }
}
.product-detail-sec-page .description-section .right-text .title,
.product-detail-micro-page .description-section .right-text .title {
  font-size: 0.24rem;
  line-height: 1.4;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section .right-text .title,
  .product-detail-micro-page .description-section .right-text .title {
    font-size: 0.32rem;
    text-align: center;
  }
}
.product-detail-sec-page .description-section .right-text .text,
.product-detail-micro-page .description-section .right-text .text {
  margin-top: 0.3rem;
  font-size: 0.16rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section .right-text .text,
  .product-detail-micro-page .description-section .right-text .text {
    font-size: 0.24rem;
    text-align: center;
  }
}
.product-detail-sec-page .description-section .right-text .btn-box,
.product-detail-micro-page .description-section .right-text .btn-box {
  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.15rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section .right-text .btn-box,
  .product-detail-micro-page .description-section .right-text .btn-box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-detail-sec-page .table-section,
.product-detail-micro-page .table-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .table-section,
  .product-detail-micro-page .table-section {
    margin-top: 0.8rem;
  }
}
.product-detail-sec-page .table-section .table-group,
.product-detail-micro-page .table-section .table-group {
  margin-bottom: 0.8rem;
}
.product-detail-sec-page .table-section .table-group:last-child,
.product-detail-micro-page .table-section .table-group:last-child {
  margin-bottom: 0;
}
.product-detail-sec-page .table-section .section-title,
.product-detail-micro-page .table-section .section-title {
  font-size: 0.36rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .table-section .section-title,
  .product-detail-micro-page .table-section .section-title {
    font-size: 0.44rem;
    margin-bottom: 0.3rem;
  }
}
.product-detail-sec-page .table-section .custom-table-wrapper,
.product-detail-micro-page .table-section .custom-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.product-detail-sec-page .table-section .custom-table-wrapper table,
.product-detail-micro-page .table-section .custom-table-wrapper table {
  width: 100%;
  min-width: 10rem;
  border-collapse: collapse;
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr,
.product-detail-micro-page .table-section .custom-table-wrapper table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr td,
.product-detail-micro-page .table-section .custom-table-wrapper table tr td {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.2rem;
  text-align: center;
  font-size: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .table-section .custom-table-wrapper table tr td,
  .product-detail-micro-page .table-section .custom-table-wrapper table tr td {
    font-size: 0.24rem;
    padding: 0.15rem;
  }
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr td:first-child,
.product-detail-micro-page .table-section .custom-table-wrapper table tr td:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 2rem;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .table-section .custom-table-wrapper table tr td:first-child,
  .product-detail-micro-page .table-section .custom-table-wrapper table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1.8rem;
        -ms-flex: 0 0 1.8rem;
            flex: 0 0 1.8rem;
  }
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr td div,
.product-detail-micro-page .table-section .custom-table-wrapper table tr td div {
  width: 1.4rem;
  height: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr td div img,
.product-detail-micro-page .table-section .custom-table-wrapper table tr td div img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr:first-child,
.product-detail-micro-page .table-section .custom-table-wrapper table tr:first-child {
  border-bottom: none;
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr:first-child td,
.product-detail-micro-page .table-section .custom-table-wrapper table tr:first-child td {
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr:first-child td:first-child,
.product-detail-micro-page .table-section .custom-table-wrapper table tr:first-child td:first-child {
  color: rgba(0, 0, 0, 0.4);
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr:nth-child(2),
.product-detail-micro-page .table-section .custom-table-wrapper table tr:nth-child(2) {
  border-bottom: none;
}
.product-detail-sec-page .table-section .custom-table-wrapper table tr:nth-child(2) td,
.product-detail-micro-page .table-section .custom-table-wrapper table tr:nth-child(2) td {
  padding: 0.3rem 0.2rem;
}
.product-detail-sec-page .table-section .custom-table-wrapper p,
.product-detail-micro-page .table-section .custom-table-wrapper p {
  margin-top: 0.3rem;
  font-size: 0.12rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .table-section .custom-table-wrapper p,
  .product-detail-micro-page .table-section .custom-table-wrapper p {
    font-size: 0.2rem;
  }
}
.product-detail-sec-page .lifestyle-section,
.product-detail-micro-page .lifestyle-section {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .lifestyle-section,
  .product-detail-micro-page .lifestyle-section {
    margin-top: 0.8rem;
  }
}
.product-detail-sec-page .lifestyle-section img,
.product-detail-micro-page .lifestyle-section img {
  width: 100%;
  display: block;
}
.product-detail-sec-page,
.product-detail-micro-page {
  /* 以下为微产品详情页面的特殊样式和覆盖，合并到了上面的类中 */
}
.product-detail-sec-page .product-info-section .flex-box,
.product-detail-micro-page .product-info-section .flex-box {
  gap: 0.8rem;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery,
.product-detail-micro-page .product-info-section .flex-box .left-gallery {
  height: 8.46rem;
  width: 12rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery {
    width: 100vw;
    height: 10rem;
    margin: 0 -0.3rem 0 -0.3rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img {
  background: #f4f4f4;
  padding: 0.4rem;
  display: block;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img {
    padding: 0;
    aspect-ratio: 1/1;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .swiper-wrapper,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .swiper-wrapper {
  height: 100%;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .swiper-wrapper .swiper-slide,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .swiper-wrapper .swiper-slide img,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.3rem 0 0.3rem;
  pointer-events: none;
  z-index: 10;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .prev-btn, .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .next-btn,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .prev-btn,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .next-btn {
  width: 0.44rem;
  height: 0.44rem;
  background: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -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;
  pointer-events: auto;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .prev-btn img, .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .next-btn img,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .prev-btn img,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .next-btn img {
  width: 0.2rem;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .prev-btn.swiper-button-disabled, .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .next-btn.swiper-button-disabled,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .prev-btn.swiper-button-disabled,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns .next-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .nav-btns,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .nav-btns {
    display: none !important;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.15rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns {
    top: 0.2rem;
    bottom: auto;
    right: 0.2rem;
    gap: 0.1rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d {
  background: #fff;
  padding: 0.08rem 0.2rem 0.08rem 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  cursor: pointer;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d img,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d img {
  width: 0.16rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d {
    padding: 0.16rem 0.2rem;
    font-size: 0.22rem;
    line-height: 0.24rem;
    gap: 0.2rem;
  }
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d img,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .view-3d img {
    width: 0.36rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen {
  width: 0.4rem;
  height: 0.4rem;
  background: #fff;
  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;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen img,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen img {
  width: 0.18rem;
  height: 0.18rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen {
    width: 0.48rem;
    height: 0.48rem;
  }
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen img,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .tool-btns .fullscreen img {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .thumb-list,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .thumb-list {
  position: absolute;
  bottom: 0.3rem;
  left: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .thumb-list,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .thumb-list {
    display: none;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .thumb-list .thumb,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .thumb-list .thumb {
  width: 0.6rem;
  height: 0.6rem;
  aspect-ratio: 1;
  background: #fff;
  padding: 0.05rem;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .thumb-list .thumb.active,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .thumb-list .thumb.active {
  border-color: #000;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .main-img .thumb-list .thumb img,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .main-img .thumb-list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .swiper-pagination,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .swiper-pagination {
  display: none;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .left-gallery .swiper-pagination,
  .product-detail-micro-page .product-info-section .flex-box .left-gallery .swiper-pagination {
    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;
    bottom: 0.3rem;
    left: 0;
    width: 100%;
    z-index: 99;
  }
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .swiper-pagination .swiper-pagination-bullet,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
  margin: 0 0.08rem;
}
.product-detail-sec-page .product-info-section .flex-box .left-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.product-detail-micro-page .product-info-section .flex-box .left-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details,
  .product-detail-micro-page .product-info-section .flex-box .right-details {
    padding: 0;
  }
}
.product-detail-sec-page .product-info-section .flex-box .right-details .name,
.product-detail-micro-page .product-info-section .flex-box .right-details .name {
  font-size: 0.4rem;
  line-height: 0.58rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .name,
  .product-detail-micro-page .product-info-section .flex-box .right-details .name {
    font-size: 0.48rem;
    margin-top: 0.4rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box .right-details .model,
.product-detail-micro-page .product-info-section .flex-box .right-details .model {
  margin-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .model,
  .product-detail-micro-page .product-info-section .flex-box .right-details .model {
    font-size: 0.28rem;
    line-height: 0.34rem;
    margin-top: 0.16rem;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .swatches,
  .product-detail-micro-page .product-info-section .flex-box .right-details .swatches {
    margin-top: 0.3rem;
    gap: 0.2rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch,
.product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch {
  width: 0.52rem;
  height: 0.34rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch,
  .product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch {
    width: 0.8rem;
    height: 0.52rem;
  }
}
.product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch,
.product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch {
  position: relative;
  cursor: pointer;
}
.product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch img,
.product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch::after,
.product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch::after {
  content: "";
  position: absolute;
  top: -0.04rem;
  left: -0.04rem;
  right: -0.04rem;
  bottom: -0.04rem;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch.active::after,
.product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch.active::after {
  border-color: #000;
}
.product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch,
.product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch {
  border: none;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .swatches .swatch,
  .product-detail-micro-page .product-info-section .flex-box .right-details .swatches .swatch {
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .specs-list,
  .product-detail-micro-page .product-info-section .flex-box .right-details .specs-list {
    margin-top: 0.86rem;
    border-top: 1px solid #eee;
  }
  .product-detail-sec-page .product-info-section .flex-box .right-details .specs-list .spec-row,
  .product-detail-micro-page .product-info-section .flex-box .right-details .specs-list .spec-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    margin: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .specs-list .spec-row,
  .product-detail-micro-page .product-info-section .flex-box .right-details .specs-list .spec-row {
    padding: 0.22rem 0;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .specs-list .spec-row .label,
  .product-detail-micro-page .product-info-section .flex-box .right-details .specs-list .spec-row .label {
    font-size: 0.24rem;
    color: rgba(0, 0, 0, 0.6);
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .specs-list .spec-row .label,
  .product-detail-micro-page .product-info-section .flex-box .right-details .specs-list .spec-row .label {
    font-size: 0.22rem;
    line-height: 0.27rem;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .specs-list .spec-row .val,
  .product-detail-micro-page .product-info-section .flex-box .right-details .specs-list .spec-row .val {
    font-size: 0.24rem;
    color: #000;
    text-align: right;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .features-grid,
  .product-detail-micro-page .product-info-section .flex-box .right-details .features-grid {
    margin-top: 0.95rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem 0.2rem;
  }
  .product-detail-sec-page .product-info-section .flex-box .right-details .features-grid .feature-item,
  .product-detail-micro-page .product-info-section .flex-box .right-details .features-grid .feature-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;
  }
  .product-detail-sec-page .product-info-section .flex-box .right-details .features-grid .feature-item img,
  .product-detail-micro-page .product-info-section .flex-box .right-details .features-grid .feature-item img {
    width: 0.64rem;
    height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .product-detail-sec-page .product-info-section .flex-box .right-details .features-grid .feature-item span,
  .product-detail-micro-page .product-info-section .flex-box .right-details .features-grid .feature-item span {
    font-size: 0.22rem;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.6);
  }
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .product-info-section .flex-box .right-details .btn-box,
  .product-detail-micro-page .product-info-section .flex-box .right-details .btn-box {
    margin-top: 0.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.2rem;
  }
  .product-detail-sec-page .product-info-section .flex-box .right-details .btn-box .g-more-btn,
  .product-detail-micro-page .product-info-section .flex-box .right-details .btn-box .g-more-btn {
    width: 100%;
    height: 0.88rem;
    font-size: 0.24rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-detail-sec-page .description-section-micro,
.product-detail-micro-page .description-section-micro {
  margin-top: 1.2rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section-micro,
  .product-detail-micro-page .description-section-micro {
    margin-top: 1.6rem;
  }
}
.product-detail-sec-page .description-section-micro .flex-box,
.product-detail-micro-page .description-section-micro .flex-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;
  gap: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .description-section-micro .flex-box,
  .product-detail-micro-page .description-section-micro .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
}
.product-detail-sec-page .description-section-micro .left-img,
.product-detail-micro-page .description-section-micro .left-img {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .description-section-micro .left-img,
  .product-detail-micro-page .description-section-micro .left-img {
    width: 100%;
  }
}
.product-detail-sec-page .description-section-micro .left-img img,
.product-detail-micro-page .description-section-micro .left-img img {
  width: 100%;
  display: block;
}
.product-detail-sec-page .description-section-micro .right-text,
.product-detail-micro-page .description-section-micro .right-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: calc((100vw - 1200px) / 2);
}
@media screen and (max-width: 1300px) {
  .product-detail-sec-page .description-section-micro .right-text,
  .product-detail-micro-page .description-section-micro .right-text {
    padding-right: 0.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .description-section-micro .right-text,
  .product-detail-micro-page .description-section-micro .right-text {
    padding: 0 0.4rem;
    width: 100%;
  }
}
.product-detail-sec-page .description-section-micro .right-text .title,
.product-detail-micro-page .description-section-micro .right-text .title {
  font-size: 0.32rem;
  line-height: 0.38rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section-micro .right-text .title,
  .product-detail-micro-page .description-section-micro .right-text .title {
    font-size: 0.4rem;
    line-height: 0.48rem;
    text-align: left;
  }
}
.product-detail-sec-page .description-section-micro .right-text .text,
.product-detail-micro-page .description-section-micro .right-text .text {
  margin-top: 0.3rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgb(0, 0, 0);
  max-width: 6.88rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section-micro .right-text .text,
  .product-detail-micro-page .description-section-micro .right-text .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
    text-align: left;
  }
}
.product-detail-sec-page .description-section-micro .right-text .btn-box,
.product-detail-micro-page .description-section-micro .right-text .btn-box {
  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.15rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section-micro .right-text .btn-box,
  .product-detail-micro-page .description-section-micro .right-text .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.6rem;
  }
}
.product-detail-sec-page .description-section-micro .right-text .btn-box .top-btns,
.product-detail-micro-page .description-section-micro .right-text .btn-box .top-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.15rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section-micro .right-text .btn-box .top-btns,
  .product-detail-micro-page .description-section-micro .right-text .btn-box .top-btns {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.2rem;
  }
  .product-detail-sec-page .description-section-micro .right-text .btn-box .top-btns .g-more-btn,
  .product-detail-micro-page .description-section-micro .right-text .btn-box .top-btns .g-more-btn {
    width: calc(50% - 0.1rem);
  }
  .product-detail-sec-page .description-section-micro .right-text .btn-box .top-btns .g-more-btn:last-child,
  .product-detail-micro-page .description-section-micro .right-text .btn-box .top-btns .g-more-btn:last-child {
    width: 100%;
  }
}
.product-detail-sec-page .description-section-micro .right-text .btn-box .g-more-btn,
.product-detail-micro-page .description-section-micro .right-text .btn-box .g-more-btn {
  padding: 0 0.3rem;
}
.product-detail-sec-page .description-section-micro .right-text .btn-box .g-more-btn.black,
.product-detail-micro-page .description-section-micro .right-text .btn-box .g-more-btn.black {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .description-section-micro .right-text .btn-box .g-more-btn,
  .product-detail-micro-page .description-section-micro .right-text .btn-box .g-more-btn {
    width: 100%;
    height: 0.8rem;
    padding-right: 0.83rem;
    padding-left: 0.83rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-detail-sec-page .lifestyle-section-micro,
.product-detail-micro-page .lifestyle-section-micro {
  max-width: 17.6rem;
  margin: 1.2rem auto 0 auto;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .lifestyle-section-micro,
  .product-detail-micro-page .lifestyle-section-micro {
    margin-top: 0.8rem;
    max-width: none;
    margin-right: 0.3rem;
    margin-left: 0.3rem;
  }
  .product-detail-sec-page .lifestyle-section-micro.wal,
  .product-detail-micro-page .lifestyle-section-micro.wal {
    padding: 0;
    width: 100%;
    max-width: none;
  }
}
.product-detail-sec-page .lifestyle-section-micro img,
.product-detail-micro-page .lifestyle-section-micro img {
  width: 100%;
  display: block;
}
.product-detail-sec-page .designer-section-micro,
.product-detail-micro-page .designer-section-micro {
  margin-top: 1.2rem;
}
.product-detail-sec-page .designer-section-micro .flex-box,
.product-detail-micro-page .designer-section-micro .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: #f4f4f4;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .designer-section-micro .flex-box,
  .product-detail-micro-page .designer-section-micro .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.product-detail-sec-page .designer-section-micro .left-text,
.product-detail-micro-page .designer-section-micro .left-text {
  width: 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;
  padding-left: 0.8rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .designer-section-micro .left-text,
  .product-detail-micro-page .designer-section-micro .left-text {
    width: 100%;
    padding-top: 0.6rem;
    padding-bottom: 0.98rem;
    padding-left: 0.3rem;
  }
}
.product-detail-sec-page .designer-section-micro .left-text .text-inner,
.product-detail-micro-page .designer-section-micro .left-text .text-inner {
  padding: 0.8rem 0.8rem 0.8rem 0;
  max-width: 6rem;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .designer-section-micro .left-text .text-inner,
  .product-detail-micro-page .designer-section-micro .left-text .text-inner {
    padding: 0;
    max-width: 100%;
  }
}
.product-detail-sec-page .designer-section-micro .left-text .title,
.product-detail-micro-page .designer-section-micro .left-text .title {
  font-size: 0.36rem;
  line-height: 1.2;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .designer-section-micro .left-text .title,
  .product-detail-micro-page .designer-section-micro .left-text .title {
    font-size: 0.48rem;
    line-height: 0.58rem;
    text-align: left;
  }
}
.product-detail-sec-page .designer-section-micro .left-text .text,
.product-detail-micro-page .designer-section-micro .left-text .text {
  margin-top: 0.4rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .designer-section-micro .left-text .text,
  .product-detail-micro-page .designer-section-micro .left-text .text {
    font-size: 0.24rem;
    line-height: 0.36rem;
    text-align: left;
    margin-top: 0.24rem;
    max-width: 6.4rem;
  }
}
.product-detail-sec-page .designer-section-micro .left-text .btn-box,
.product-detail-micro-page .designer-section-micro .left-text .btn-box {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .designer-section-micro .left-text .btn-box,
  .product-detail-micro-page .designer-section-micro .left-text .btn-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-detail-sec-page .designer-section-micro .left-text .btn-box .g-more-btn,
  .product-detail-micro-page .designer-section-micro .left-text .btn-box .g-more-btn {
    width: auto;
    padding: 0 0.4rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .product-detail-sec-page .designer-section-micro .left-text .btn-box .g-more-btn,
  .product-detail-micro-page .designer-section-micro .left-text .btn-box .g-more-btn {
    padding: 0 0.8rem;
  }
}
.product-detail-sec-page .designer-section-micro .right-img,
.product-detail-micro-page .designer-section-micro .right-img {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .product-detail-sec-page .designer-section-micro .right-img,
  .product-detail-micro-page .designer-section-micro .right-img {
    width: 100%;
  }
}
.product-detail-sec-page .designer-section-micro .right-img img,
.product-detail-micro-page .designer-section-micro .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail-sec-page,
.product-detail-micro-page {
  /* 3D Viewer Modal */
}
.product-detail-sec-page .view-3d-modal,
.product-detail-micro-page .view-3d-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f9f9f9;
  z-index: 9999;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.product-detail-sec-page .view-3d-modal.active,
.product-detail-micro-page .view-3d-modal.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.product-detail-sec-page .view-3d-modal .modal-close,
.product-detail-micro-page .view-3d-modal .modal-close {
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  font-size: 0.13rem;
  color: #666;
  cursor: pointer;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .view-3d-modal .modal-close,
  .product-detail-micro-page .view-3d-modal .modal-close {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.product-detail-sec-page .view-3d-modal .modal-content,
.product-detail-micro-page .view-3d-modal .modal-content {
  position: relative;
  width: 70%;
  max-width: 9rem;
  height: 65%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .view-3d-modal .modal-content,
  .product-detail-micro-page .view-3d-modal .modal-content {
    width: 90%;
    height: 50%;
  }
}
.product-detail-sec-page .view-3d-modal .box-inner,
.product-detail-micro-page .view-3d-modal .box-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-detail-sec-page .view-3d-modal .model-container,
.product-detail-micro-page .view-3d-modal .model-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-detail-sec-page .view-3d-modal .message,
.product-detail-micro-page .view-3d-modal .message {
  position: absolute;
  bottom: -0.5rem;
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 0.13rem;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .view-3d-modal .message,
  .product-detail-micro-page .view-3d-modal .message {
    bottom: -3.5rem;
    font-size: 0.24rem;
  }
}
.product-detail-sec-page .view-3d-modal .zoom-controls,
.product-detail-micro-page .view-3d-modal .zoom-controls {
  position: absolute;
  right: -0.6rem;
  top: 50%;
  -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;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .view-3d-modal .zoom-controls,
  .product-detail-micro-page .view-3d-modal .zoom-controls {
    right: 0.2rem;
    top: auto;
    bottom: -1rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    gap: 0.2rem;
  }
}
.product-detail-sec-page .view-3d-modal .zoom-btn,
.product-detail-micro-page .view-3d-modal .zoom-btn {
  width: 0.36rem;
  height: 0.36rem;
  background: #fff;
  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;
  cursor: pointer;
  font-size: 0.2rem;
  color: #666;
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.06);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .view-3d-modal .zoom-btn,
  .product-detail-micro-page .view-3d-modal .zoom-btn {
    width: 0.8rem;
    height: 0.8rem;
    font-size: 0.4rem;
  }
}
.product-detail-sec-page .view-3d-modal .zoom-btn:hover,
.product-detail-micro-page .view-3d-modal .zoom-btn:hover {
  color: #000;
  box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .view-3d-modal svg,
  .product-detail-micro-page .view-3d-modal svg {
    -webkit-transform: translateX(-50%) scale(0.6) !important;
        -ms-transform: translateX(-50%) scale(0.6) !important;
            transform: translateX(-50%) scale(0.6) !important;
    bottom: 0px !important;
  }
}
.product-detail-sec-page,
.product-detail-micro-page {
  /* Fullscreen Gallery Modal */
}
.product-detail-sec-page .fullscreen-gallery-modal,
.product-detail-micro-page .fullscreen-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f9f9f9;
  z-index: 9999;
  display: none;
  -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;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.product-detail-sec-page .fullscreen-gallery-modal.active,
.product-detail-micro-page .fullscreen-gallery-modal.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.product-detail-sec-page .fullscreen-gallery-modal .modal-close,
.product-detail-micro-page .fullscreen-gallery-modal .modal-close {
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  font-size: 0.13rem;
  color: #666;
  cursor: pointer;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .fullscreen-gallery-modal .modal-close,
  .product-detail-micro-page .fullscreen-gallery-modal .modal-close {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.product-detail-sec-page .fullscreen-gallery-modal .modal-content,
.product-detail-micro-page .fullscreen-gallery-modal .modal-content {
  position: relative;
  width: 90%;
  height: 85%;
  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;
}
.product-detail-sec-page .fullscreen-gallery-modal .gallery-container,
.product-detail-micro-page .fullscreen-gallery-modal .gallery-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.product-detail-sec-page .fullscreen-gallery-modal .main-swiper,
.product-detail-micro-page .fullscreen-gallery-modal .main-swiper {
  width: 100%;
  height: 100%;
}
.product-detail-sec-page .fullscreen-gallery-modal .main-swiper .swiper-slide,
.product-detail-micro-page .fullscreen-gallery-modal .main-swiper .swiper-slide {
  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;
}
.product-detail-sec-page .fullscreen-gallery-modal .main-swiper .swiper-slide img,
.product-detail-micro-page .fullscreen-gallery-modal .main-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-detail-sec-page .fullscreen-gallery-modal .nav-btns,
.product-detail-micro-page .fullscreen-gallery-modal .nav-btns {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.4rem 0 0.4rem;
  pointer-events: none;
  z-index: 5;
}
.product-detail-sec-page .fullscreen-gallery-modal .nav-btns .prev-btn, .product-detail-sec-page .fullscreen-gallery-modal .nav-btns .next-btn,
.product-detail-micro-page .fullscreen-gallery-modal .nav-btns .prev-btn,
.product-detail-micro-page .fullscreen-gallery-modal .nav-btns .next-btn {
  width: 0.5rem;
  height: 0.5rem;
  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;
  cursor: pointer;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.product-detail-sec-page .fullscreen-gallery-modal .nav-btns .prev-btn:hover, .product-detail-sec-page .fullscreen-gallery-modal .nav-btns .next-btn:hover,
.product-detail-micro-page .fullscreen-gallery-modal .nav-btns .prev-btn:hover,
.product-detail-micro-page .fullscreen-gallery-modal .nav-btns .next-btn:hover {
  opacity: 0.7;
}
.product-detail-sec-page .fullscreen-gallery-modal .nav-btns .prev-btn img, .product-detail-sec-page .fullscreen-gallery-modal .nav-btns .next-btn img,
.product-detail-micro-page .fullscreen-gallery-modal .nav-btns .prev-btn img,
.product-detail-micro-page .fullscreen-gallery-modal .nav-btns .next-btn img {
  width: 0.3rem;
  height: 0.3rem;
}
.product-detail-sec-page .fullscreen-gallery-modal .thumb-container,
.product-detail-micro-page .fullscreen-gallery-modal .thumb-container {
  width: 0.8rem;
  height: 100%;
  margin-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;
}
@media screen and (max-width: 800px) {
  .product-detail-sec-page .fullscreen-gallery-modal .thumb-container,
  .product-detail-micro-page .fullscreen-gallery-modal .thumb-container {
    display: none;
  }
}
.product-detail-sec-page .fullscreen-gallery-modal .thumb-swiper,
.product-detail-micro-page .fullscreen-gallery-modal .thumb-swiper {
  width: 100%;
  height: 100%;
}
.product-detail-sec-page .fullscreen-gallery-modal .thumb-swiper .swiper-slide,
.product-detail-micro-page .fullscreen-gallery-modal .thumb-swiper .swiper-slide {
  height: auto;
  margin-bottom: 0.15rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.product-detail-sec-page .fullscreen-gallery-modal .thumb-swiper .swiper-slide.active,
.product-detail-micro-page .fullscreen-gallery-modal .thumb-swiper .swiper-slide.active {
  opacity: 1;
}
.product-detail-sec-page .fullscreen-gallery-modal .thumb-swiper .swiper-slide img,
.product-detail-micro-page .fullscreen-gallery-modal .thumb-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* 微产品详情页面end */
.products___section {
  margin-top: 1.2rem;
  padding-bottom: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .products___section {
    margin-top: 0.8rem;
    padding-bottom: 0;
  }
}
.products___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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .products___section .head-box {
    margin-bottom: 0.3rem;
  }
}
.products___section .head-box .head-title {
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .products___section .head-box .head-title {
    font-size: 0.36rem;
  }
}
.products___section .head-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
.products___section .head-box .swiper-btn .btn-prev, .products___section .head-box .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products___section .head-box .swiper-btn .btn-prev img, .products___section .head-box .swiper-btn .btn-next img {
  width: 100%;
  height: 100%;
  display: block;
}
.products___section .head-box .swiper-btn .btn-prev:hover, .products___section .head-box .swiper-btn .btn-next:hover {
  opacity: 0.6;
}
.products___section .products-swiper {
  overflow: visible;
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box {
  display: block;
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
  background: #F0EFEB;
  padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4.18rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box {
    height: 5.6rem;
    width: 5.6rem;
  }
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .img-box .img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .title {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.22rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .products___section .products-swiper .swiper-wrapper .swiper-slide .card-box .title {
    font-size: 0.28rem;
    margin-top: 0.3rem;
    line-height: 0.34rem;
  }
}
.products___section .products-swiper .swiper-wrapper .swiper-slide .card-box:hover .img-box .img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* 加载页面start */
.load-page .load-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background: #ffffff;
}
.load-page .load-banner .wave-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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .load-page .load-banner .wave-container {
    gap: 0.15rem;
  }
}
@media screen and (max-width: 800px) {
  .load-page .load-banner .wave-container {
    gap: 0.1rem;
  }
}
.load-page .load-banner .wave-item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.load-page .load-banner .wave-item.wave-left {
  -webkit-transform: rotate(-18deg);
      -ms-transform: rotate(-18deg);
          transform: rotate(-18deg);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .load-page .load-banner .wave-item.wave-left {
    -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@media screen and (max-width: 800px) {
  .load-page .load-banner .wave-item.wave-left {
    -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
}
.load-page .load-banner .wave-item.wave-center {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}
.load-page .load-banner .wave-item.wave-right {
  -webkit-transform: rotate(18deg);
      -ms-transform: rotate(18deg);
          transform: rotate(18deg);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .load-page .load-banner .wave-item.wave-right {
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@media screen and (max-width: 800px) {
  .load-page .load-banner .wave-item.wave-right {
    -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
            transform: rotate(12deg);
  }
}
.load-page .load-banner .wave-item .image-wrapper {
  position: relative;
  width: 3.2rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .load-page .load-banner .wave-item .image-wrapper {
    width: 2.6rem;
    height: 5rem;
  }
}
@media screen and (max-width: 800px) {
  .load-page .load-banner .wave-item .image-wrapper {
    width: 2.4rem;
    height: 4.2rem;
  }
}
.load-page .load-banner .wave-item .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.load-page .load-banner .wave-item .image-wrapper:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* 加载页面end */
.u-header-transparent-style .u-header, .product-list-page .u-header, .trend-page .u-header, .about-page .u-header, .case-detail-page .u-header, .product-detail-page .u-header, .index-page .u-header,
.outdoor-page .u-header {
  background: transparent;
  border-bottom: none;
  -webkit-transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border-bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border-bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header-transparent-style .u-header .center-nav .nav-list .nav-item .nav-link, .product-list-page .u-header .center-nav .nav-list .nav-item .nav-link, .trend-page .u-header .center-nav .nav-list .nav-item .nav-link, .about-page .u-header .center-nav .nav-list .nav-item .nav-link, .case-detail-page .u-header .center-nav .nav-list .nav-item .nav-link, .product-detail-page .u-header .center-nav .nav-list .nav-item .nav-link, .index-page .u-header .center-nav .nav-list .nav-item .nav-link,
.outdoor-page .u-header .center-nav .nav-list .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header-transparent-style .u-header .center-nav .nav-list .nav-item:hover .nav-link, .product-list-page .u-header .center-nav .nav-list .nav-item:hover .nav-link, .trend-page .u-header .center-nav .nav-list .nav-item:hover .nav-link, .about-page .u-header .center-nav .nav-list .nav-item:hover .nav-link, .case-detail-page .u-header .center-nav .nav-list .nav-item:hover .nav-link, .product-detail-page .u-header .center-nav .nav-list .nav-item:hover .nav-link, .index-page .u-header .center-nav .nav-list .nav-item:hover .nav-link,
.outdoor-page .u-header .center-nav .nav-list .nav-item:hover .nav-link,
.u-header-transparent-style .u-header .center-nav .nav-list .nav-item.active .nav-link,
.product-list-page .u-header .center-nav .nav-list .nav-item.active .nav-link,
.trend-page .u-header .center-nav .nav-list .nav-item.active .nav-link,
.about-page .u-header .center-nav .nav-list .nav-item.active .nav-link,
.case-detail-page .u-header .center-nav .nav-list .nav-item.active .nav-link,
.product-detail-page .u-header .center-nav .nav-list .nav-item.active .nav-link,
.index-page .u-header .center-nav .nav-list .nav-item.active .nav-link,
.outdoor-page .u-header .center-nav .nav-list .nav-item.active .nav-link {
  color: #ffffff;
}
.u-header-transparent-style .u-header .center-nav .nav-list .nav-item.active::after, .product-list-page .u-header .center-nav .nav-list .nav-item.active::after, .trend-page .u-header .center-nav .nav-list .nav-item.active::after, .about-page .u-header .center-nav .nav-list .nav-item.active::after, .case-detail-page .u-header .center-nav .nav-list .nav-item.active::after, .product-detail-page .u-header .center-nav .nav-list .nav-item.active::after, .index-page .u-header .center-nav .nav-list .nav-item.active::after,
.outdoor-page .u-header .center-nav .nav-list .nav-item.active::after {
  background: #ffffff;
  -webkit-transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header-transparent-style .u-header .logo-box, .product-list-page .u-header .logo-box, .trend-page .u-header .logo-box, .about-page .u-header .logo-box, .case-detail-page .u-header .logo-box, .product-detail-page .u-header .logo-box, .index-page .u-header .logo-box,
.outdoor-page .u-header .logo-box {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: filter 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header-transparent-style .u-header .right-actions .search-btn .icon.icon-black, .product-list-page .u-header .right-actions .search-btn .icon.icon-black, .trend-page .u-header .right-actions .search-btn .icon.icon-black, .about-page .u-header .right-actions .search-btn .icon.icon-black, .case-detail-page .u-header .right-actions .search-btn .icon.icon-black, .product-detail-page .u-header .right-actions .search-btn .icon.icon-black, .index-page .u-header .right-actions .search-btn .icon.icon-black,
.outdoor-page .u-header .right-actions .search-btn .icon.icon-black {
  display: none;
}
.u-header-transparent-style .u-header .right-actions .search-btn .icon.icon-white, .product-list-page .u-header .right-actions .search-btn .icon.icon-white, .trend-page .u-header .right-actions .search-btn .icon.icon-white, .about-page .u-header .right-actions .search-btn .icon.icon-white, .case-detail-page .u-header .right-actions .search-btn .icon.icon-white, .product-detail-page .u-header .right-actions .search-btn .icon.icon-white, .index-page .u-header .right-actions .search-btn .icon.icon-white,
.outdoor-page .u-header .right-actions .search-btn .icon.icon-white {
  display: block;
}
.u-header-transparent-style .u-header .right-actions .lang-switch .text, .product-list-page .u-header .right-actions .lang-switch .text, .trend-page .u-header .right-actions .lang-switch .text, .about-page .u-header .right-actions .lang-switch .text, .case-detail-page .u-header .right-actions .lang-switch .text, .product-detail-page .u-header .right-actions .lang-switch .text, .index-page .u-header .right-actions .lang-switch .text,
.outdoor-page .u-header .right-actions .lang-switch .text {
  color: #ffffff;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header-transparent-style .u-header .right-actions .lang-switch .icon-down.icon-black, .product-list-page .u-header .right-actions .lang-switch .icon-down.icon-black, .trend-page .u-header .right-actions .lang-switch .icon-down.icon-black, .about-page .u-header .right-actions .lang-switch .icon-down.icon-black, .case-detail-page .u-header .right-actions .lang-switch .icon-down.icon-black, .product-detail-page .u-header .right-actions .lang-switch .icon-down.icon-black, .index-page .u-header .right-actions .lang-switch .icon-down.icon-black,
.outdoor-page .u-header .right-actions .lang-switch .icon-down.icon-black {
  display: none;
}
.u-header-transparent-style .u-header .right-actions .lang-switch .icon-down.icon-white, .product-list-page .u-header .right-actions .lang-switch .icon-down.icon-white, .trend-page .u-header .right-actions .lang-switch .icon-down.icon-white, .about-page .u-header .right-actions .lang-switch .icon-down.icon-white, .case-detail-page .u-header .right-actions .lang-switch .icon-down.icon-white, .product-detail-page .u-header .right-actions .lang-switch .icon-down.icon-white, .index-page .u-header .right-actions .lang-switch .icon-down.icon-white,
.outdoor-page .u-header .right-actions .lang-switch .icon-down.icon-white {
  display: block;
}
.u-header-transparent-style .u-header.scrolled, .product-list-page .u-header.scrolled, .trend-page .u-header.scrolled, .about-page .u-header.scrolled, .case-detail-page .u-header.scrolled, .product-detail-page .u-header.scrolled, .index-page .u-header.scrolled,
.outdoor-page .u-header.scrolled {
  background: #ffffff;
  border-bottom: 1px solid #E6E6E6;
}
.u-header-transparent-style .u-header.scrolled .nav-list .nav-item .nav-link, .product-list-page .u-header.scrolled .nav-list .nav-item .nav-link, .trend-page .u-header.scrolled .nav-list .nav-item .nav-link, .about-page .u-header.scrolled .nav-list .nav-item .nav-link, .case-detail-page .u-header.scrolled .nav-list .nav-item .nav-link, .product-detail-page .u-header.scrolled .nav-list .nav-item .nav-link, .index-page .u-header.scrolled .nav-list .nav-item .nav-link,
.outdoor-page .u-header.scrolled .nav-list .nav-item .nav-link {
  color: rgba(30, 30, 30, 0.6);
}
.u-header-transparent-style .u-header.scrolled .nav-list .nav-item:hover .nav-link, .product-list-page .u-header.scrolled .nav-list .nav-item:hover .nav-link, .trend-page .u-header.scrolled .nav-list .nav-item:hover .nav-link, .about-page .u-header.scrolled .nav-list .nav-item:hover .nav-link, .case-detail-page .u-header.scrolled .nav-list .nav-item:hover .nav-link, .product-detail-page .u-header.scrolled .nav-list .nav-item:hover .nav-link, .index-page .u-header.scrolled .nav-list .nav-item:hover .nav-link,
.outdoor-page .u-header.scrolled .nav-list .nav-item:hover .nav-link,
.u-header-transparent-style .u-header.scrolled .nav-list .nav-item.active .nav-link,
.product-list-page .u-header.scrolled .nav-list .nav-item.active .nav-link,
.trend-page .u-header.scrolled .nav-list .nav-item.active .nav-link,
.about-page .u-header.scrolled .nav-list .nav-item.active .nav-link,
.case-detail-page .u-header.scrolled .nav-list .nav-item.active .nav-link,
.product-detail-page .u-header.scrolled .nav-list .nav-item.active .nav-link,
.index-page .u-header.scrolled .nav-list .nav-item.active .nav-link,
.outdoor-page .u-header.scrolled .nav-list .nav-item.active .nav-link {
  color: #1E1E1E;
}
.u-header-transparent-style .u-header.scrolled .nav-list .nav-item.active::after, .product-list-page .u-header.scrolled .nav-list .nav-item.active::after, .trend-page .u-header.scrolled .nav-list .nav-item.active::after, .about-page .u-header.scrolled .nav-list .nav-item.active::after, .case-detail-page .u-header.scrolled .nav-list .nav-item.active::after, .product-detail-page .u-header.scrolled .nav-list .nav-item.active::after, .index-page .u-header.scrolled .nav-list .nav-item.active::after,
.outdoor-page .u-header.scrolled .nav-list .nav-item.active::after {
  background: #1E1E1E;
}
.u-header-transparent-style .u-header.scrolled .logo-box, .product-list-page .u-header.scrolled .logo-box, .trend-page .u-header.scrolled .logo-box, .about-page .u-header.scrolled .logo-box, .case-detail-page .u-header.scrolled .logo-box, .product-detail-page .u-header.scrolled .logo-box, .index-page .u-header.scrolled .logo-box,
.outdoor-page .u-header.scrolled .logo-box {
  -webkit-filter: none;
          filter: none;
}
.u-header-transparent-style .u-header.scrolled .right-actions .search-btn .icon.icon-black, .product-list-page .u-header.scrolled .right-actions .search-btn .icon.icon-black, .trend-page .u-header.scrolled .right-actions .search-btn .icon.icon-black, .about-page .u-header.scrolled .right-actions .search-btn .icon.icon-black, .case-detail-page .u-header.scrolled .right-actions .search-btn .icon.icon-black, .product-detail-page .u-header.scrolled .right-actions .search-btn .icon.icon-black, .index-page .u-header.scrolled .right-actions .search-btn .icon.icon-black,
.outdoor-page .u-header.scrolled .right-actions .search-btn .icon.icon-black {
  display: block;
}
.u-header-transparent-style .u-header.scrolled .right-actions .search-btn .icon.icon-white, .product-list-page .u-header.scrolled .right-actions .search-btn .icon.icon-white, .trend-page .u-header.scrolled .right-actions .search-btn .icon.icon-white, .about-page .u-header.scrolled .right-actions .search-btn .icon.icon-white, .case-detail-page .u-header.scrolled .right-actions .search-btn .icon.icon-white, .product-detail-page .u-header.scrolled .right-actions .search-btn .icon.icon-white, .index-page .u-header.scrolled .right-actions .search-btn .icon.icon-white,
.outdoor-page .u-header.scrolled .right-actions .search-btn .icon.icon-white {
  display: none;
}
.u-header-transparent-style .u-header.scrolled .right-actions .lang-switch .text, .product-list-page .u-header.scrolled .right-actions .lang-switch .text, .trend-page .u-header.scrolled .right-actions .lang-switch .text, .about-page .u-header.scrolled .right-actions .lang-switch .text, .case-detail-page .u-header.scrolled .right-actions .lang-switch .text, .product-detail-page .u-header.scrolled .right-actions .lang-switch .text, .index-page .u-header.scrolled .right-actions .lang-switch .text,
.outdoor-page .u-header.scrolled .right-actions .lang-switch .text {
  color: #1E1E1E;
}
.u-header-transparent-style .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black, .product-list-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black, .trend-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black, .about-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black, .case-detail-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black, .product-detail-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black, .index-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black,
.outdoor-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-black {
  display: block;
}
.u-header-transparent-style .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white, .product-list-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white, .trend-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white, .about-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white, .case-detail-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white, .product-detail-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white, .index-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white,
.outdoor-page .u-header.scrolled .right-actions .lang-switch .icon-down.icon-white {
  display: none;
}
@media (hover: hover) {
  .u-header-transparent-style .u-header:hover, .product-list-page .u-header:hover, .trend-page .u-header:hover, .about-page .u-header:hover, .case-detail-page .u-header:hover, .product-detail-page .u-header:hover, .index-page .u-header:hover,
  .outdoor-page .u-header:hover {
    background: #ffffff;
    border-bottom: 1px solid #E6E6E6;
  }
  .u-header-transparent-style .u-header:hover .nav-list .nav-item .nav-link, .product-list-page .u-header:hover .nav-list .nav-item .nav-link, .trend-page .u-header:hover .nav-list .nav-item .nav-link, .about-page .u-header:hover .nav-list .nav-item .nav-link, .case-detail-page .u-header:hover .nav-list .nav-item .nav-link, .product-detail-page .u-header:hover .nav-list .nav-item .nav-link, .index-page .u-header:hover .nav-list .nav-item .nav-link,
  .outdoor-page .u-header:hover .nav-list .nav-item .nav-link {
    color: rgba(30, 30, 30, 0.6);
  }
  .u-header-transparent-style .u-header:hover .nav-list .nav-item:hover .nav-link, .product-list-page .u-header:hover .nav-list .nav-item:hover .nav-link, .trend-page .u-header:hover .nav-list .nav-item:hover .nav-link, .about-page .u-header:hover .nav-list .nav-item:hover .nav-link, .case-detail-page .u-header:hover .nav-list .nav-item:hover .nav-link, .product-detail-page .u-header:hover .nav-list .nav-item:hover .nav-link, .index-page .u-header:hover .nav-list .nav-item:hover .nav-link,
  .outdoor-page .u-header:hover .nav-list .nav-item:hover .nav-link,
  .u-header-transparent-style .u-header:hover .nav-list .nav-item.active .nav-link,
  .product-list-page .u-header:hover .nav-list .nav-item.active .nav-link,
  .trend-page .u-header:hover .nav-list .nav-item.active .nav-link,
  .about-page .u-header:hover .nav-list .nav-item.active .nav-link,
  .case-detail-page .u-header:hover .nav-list .nav-item.active .nav-link,
  .product-detail-page .u-header:hover .nav-list .nav-item.active .nav-link,
  .index-page .u-header:hover .nav-list .nav-item.active .nav-link,
  .outdoor-page .u-header:hover .nav-list .nav-item.active .nav-link {
    color: #1E1E1E;
  }
  .u-header-transparent-style .u-header:hover .nav-list .nav-item.active::after, .product-list-page .u-header:hover .nav-list .nav-item.active::after, .trend-page .u-header:hover .nav-list .nav-item.active::after, .about-page .u-header:hover .nav-list .nav-item.active::after, .case-detail-page .u-header:hover .nav-list .nav-item.active::after, .product-detail-page .u-header:hover .nav-list .nav-item.active::after, .index-page .u-header:hover .nav-list .nav-item.active::after,
  .outdoor-page .u-header:hover .nav-list .nav-item.active::after {
    background: #1E1E1E;
  }
  .u-header-transparent-style .u-header:hover .logo-box, .product-list-page .u-header:hover .logo-box, .trend-page .u-header:hover .logo-box, .about-page .u-header:hover .logo-box, .case-detail-page .u-header:hover .logo-box, .product-detail-page .u-header:hover .logo-box, .index-page .u-header:hover .logo-box,
  .outdoor-page .u-header:hover .logo-box {
    -webkit-filter: none;
            filter: none;
  }
  .u-header-transparent-style .u-header:hover .right-actions .search-btn .icon.icon-black, .product-list-page .u-header:hover .right-actions .search-btn .icon.icon-black, .trend-page .u-header:hover .right-actions .search-btn .icon.icon-black, .about-page .u-header:hover .right-actions .search-btn .icon.icon-black, .case-detail-page .u-header:hover .right-actions .search-btn .icon.icon-black, .product-detail-page .u-header:hover .right-actions .search-btn .icon.icon-black, .index-page .u-header:hover .right-actions .search-btn .icon.icon-black,
  .outdoor-page .u-header:hover .right-actions .search-btn .icon.icon-black {
    display: block;
  }
  .u-header-transparent-style .u-header:hover .right-actions .search-btn .icon.icon-white, .product-list-page .u-header:hover .right-actions .search-btn .icon.icon-white, .trend-page .u-header:hover .right-actions .search-btn .icon.icon-white, .about-page .u-header:hover .right-actions .search-btn .icon.icon-white, .case-detail-page .u-header:hover .right-actions .search-btn .icon.icon-white, .product-detail-page .u-header:hover .right-actions .search-btn .icon.icon-white, .index-page .u-header:hover .right-actions .search-btn .icon.icon-white,
  .outdoor-page .u-header:hover .right-actions .search-btn .icon.icon-white {
    display: none;
  }
  .u-header-transparent-style .u-header:hover .right-actions .lang-switch .text, .product-list-page .u-header:hover .right-actions .lang-switch .text, .trend-page .u-header:hover .right-actions .lang-switch .text, .about-page .u-header:hover .right-actions .lang-switch .text, .case-detail-page .u-header:hover .right-actions .lang-switch .text, .product-detail-page .u-header:hover .right-actions .lang-switch .text, .index-page .u-header:hover .right-actions .lang-switch .text,
  .outdoor-page .u-header:hover .right-actions .lang-switch .text {
    color: #1E1E1E;
  }
  .u-header-transparent-style .u-header:hover .right-actions .lang-switch .icon-down.icon-black, .product-list-page .u-header:hover .right-actions .lang-switch .icon-down.icon-black, .trend-page .u-header:hover .right-actions .lang-switch .icon-down.icon-black, .about-page .u-header:hover .right-actions .lang-switch .icon-down.icon-black, .case-detail-page .u-header:hover .right-actions .lang-switch .icon-down.icon-black, .product-detail-page .u-header:hover .right-actions .lang-switch .icon-down.icon-black, .index-page .u-header:hover .right-actions .lang-switch .icon-down.icon-black,
  .outdoor-page .u-header:hover .right-actions .lang-switch .icon-down.icon-black {
    display: block;
  }
  .u-header-transparent-style .u-header:hover .right-actions .lang-switch .icon-down.icon-white, .product-list-page .u-header:hover .right-actions .lang-switch .icon-down.icon-white, .trend-page .u-header:hover .right-actions .lang-switch .icon-down.icon-white, .about-page .u-header:hover .right-actions .lang-switch .icon-down.icon-white, .case-detail-page .u-header:hover .right-actions .lang-switch .icon-down.icon-white, .product-detail-page .u-header:hover .right-actions .lang-switch .icon-down.icon-white, .index-page .u-header:hover .right-actions .lang-switch .icon-down.icon-white,
  .outdoor-page .u-header:hover .right-actions .lang-switch .icon-down.icon-white {
    display: none;
  }
}
.u-header-transparent-style .u-header-phone, .product-list-page .u-header-phone, .trend-page .u-header-phone, .about-page .u-header-phone, .case-detail-page .u-header-phone, .product-detail-page .u-header-phone, .index-page .u-header-phone,
.outdoor-page .u-header-phone {
  background: transparent;
  border-bottom: none;
  -webkit-transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border-bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border-bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header-transparent-style .u-header-phone .logo-box, .product-list-page .u-header-phone .logo-box, .trend-page .u-header-phone .logo-box, .about-page .u-header-phone .logo-box, .case-detail-page .u-header-phone .logo-box, .product-detail-page .u-header-phone .logo-box, .index-page .u-header-phone .logo-box,
.outdoor-page .u-header-phone .logo-box {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: filter 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black, .product-list-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black, .trend-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black, .about-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black, .case-detail-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black, .product-detail-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black, .index-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black,
.outdoor-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black {
  display: none;
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white, .product-list-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white, .trend-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white, .about-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white, .case-detail-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white, .product-detail-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white, .index-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white,
.outdoor-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white {
  display: block;
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .m-search-btn .icon, .product-list-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon, .trend-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon, .about-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon, .case-detail-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon, .product-detail-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon, .index-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon,
.outdoor-page .u-header-phone .header-main-phone .right-actions .m-search-btn .icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle {
  width: 0.48rem;
  height: 0.48rem;
  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;
  cursor: pointer;
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .img, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img {
  position: absolute;
  width: 0.32rem;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w {
  opacity: 1;
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu {
  opacity: 0;
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn {
  position: absolute;
  font-size: 0;
  width: 0.32rem;
  height: 0.32rem;
  display: none;
  cursor: pointer;
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.02rem;
  background: #fff;
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.u-header-transparent-style .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-list-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .trend-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .about-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .case-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-detail-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after, .index-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after,
.outdoor-page .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.u-header-transparent-style .u-header-phone.scrolled, .product-list-page .u-header-phone.scrolled, .trend-page .u-header-phone.scrolled, .about-page .u-header-phone.scrolled, .case-detail-page .u-header-phone.scrolled, .product-detail-page .u-header-phone.scrolled, .index-page .u-header-phone.scrolled,
.outdoor-page .u-header-phone.scrolled, .u-header-transparent-style .u-header-phone.menu-opened, .product-list-page .u-header-phone.menu-opened, .trend-page .u-header-phone.menu-opened, .about-page .u-header-phone.menu-opened, .case-detail-page .u-header-phone.menu-opened, .product-detail-page .u-header-phone.menu-opened, .index-page .u-header-phone.menu-opened,
.outdoor-page .u-header-phone.menu-opened {
  background: #ffffff;
  border-bottom: 1px solid #E6E6E6;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .logo-box, .product-list-page .u-header-phone.scrolled .header-main-phone .logo-box, .trend-page .u-header-phone.scrolled .header-main-phone .logo-box, .about-page .u-header-phone.scrolled .header-main-phone .logo-box, .case-detail-page .u-header-phone.scrolled .header-main-phone .logo-box, .product-detail-page .u-header-phone.scrolled .header-main-phone .logo-box, .index-page .u-header-phone.scrolled .header-main-phone .logo-box,
.outdoor-page .u-header-phone.scrolled .header-main-phone .logo-box, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .logo-box, .product-list-page .u-header-phone.menu-opened .header-main-phone .logo-box, .trend-page .u-header-phone.menu-opened .header-main-phone .logo-box, .about-page .u-header-phone.menu-opened .header-main-phone .logo-box, .case-detail-page .u-header-phone.menu-opened .header-main-phone .logo-box, .product-detail-page .u-header-phone.menu-opened .header-main-phone .logo-box, .index-page .u-header-phone.menu-opened .header-main-phone .logo-box,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .logo-box {
  -webkit-filter: none;
          filter: none;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-black, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-black {
  display: block;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon.icon-white, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon.icon-white {
  display: none;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .m-search-btn .icon, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .m-search-btn .icon {
  -webkit-filter: none;
          filter: none;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img {
  -webkit-filter: none;
          filter: none;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w {
  opacity: 0;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .img.icon-menu, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu {
  opacity: 1;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn {
  opacity: 0;
}
.u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::before, .u-header-transparent-style .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-list-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after, .trend-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after, .about-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after, .case-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-detail-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after, .index-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after,
.outdoor-page .u-header-phone.scrolled .header-main-phone .right-actions .menu-toggle .close-btn::after, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::before, .u-header-transparent-style .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-list-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after, .trend-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after, .about-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after, .case-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after, .product-detail-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after, .index-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after,
.outdoor-page .u-header-phone.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn::after {
  background: #000;
}
.u-header-transparent-style .u-header-phone.scrolled.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .u-header-transparent-style .u-header-phone.scrolled.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .u-header-transparent-style .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-list-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .trend-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .about-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .case-detail-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .product-detail-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .index-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu,
.outdoor-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu, .u-header-transparent-style .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-list-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .trend-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .about-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .case-detail-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .product-detail-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w, .index-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w,
.outdoor-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .img.icon-menu-w {
  opacity: 0;
}
.u-header-transparent-style .u-header-phone.scrolled.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .u-header-transparent-style .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .product-list-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .trend-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .about-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .case-detail-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .product-detail-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn, .index-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn,
.outdoor-page .u-header-phone.menu-opened.menu-opened .header-main-phone .right-actions .menu-toggle .close-btn {
  display: block;
  opacity: 1;
}

/* 趋势页面start */
.trend-page {
  padding-top: 0;
}
.trend-page main {
  overflow: hidden;
}
.trend-page section {
  margin-top: 1.6rem;
}
@media screen and (max-width: 800px) {
  .trend-page section {
    padding-top: 0.8rem;
  }
}
.trend-page .t-text-description {
  color: rgb(0, 0, 0);
  width: 8rem;
  margin: 0.24rem auto 0 auto;
}
@media screen and (max-width: 800px) {
  .trend-page .t-text-description {
    font-size: 0.28rem;
    margin-top: 0.3rem;
  }
}
.trend-page .trend-banner {
  padding-top: 0;
  margin-top: 0;
}
.trend-page .trend-banner .banner-box {
  width: 100%;
  padding: 0.8rem 0 0 0;
}
.trend-page .wood-intro-section {
  padding-top: 0;
}
.trend-page .wood-intro-section .bg-box {
  position: relative;
  width: 100%;
  height: 8.8rem;
  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) {
  .trend-page .wood-intro-section .bg-box {
    height: 10rem;
  }
}
.trend-page .wood-intro-section .bg-box .u-img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.trend-page .wood-intro-section .bg-box .content {
  text-align: center;
  color: #FFFFFF;
  max-width: 10rem;
  margin: 2.84rem auto 0 auto;
}
.trend-page .wood-intro-section .bg-box .content .t-text-description {
  color: rgb(255, 255, 255);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
.trend-page .aesthetic-trends-section {
  margin-top: 1.6rem;
}
.trend-page .aesthetic-trends-section .head-box {
  text-align: center;
  max-width: 12rem;
  margin: 0 auto;
}
.trend-page .aesthetic-trends-section .head-box .t-heading-section {
  font-size: 0.48rem;
}
@media screen and (max-width: 800px) {
  .trend-page .aesthetic-trends-section .head-box .t-heading-section {
    font-size: 0.56rem;
  }
}
.trend-page .aesthetic-trends-section .head-box .t-text-description {
  margin-top: 0.4rem;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
.trend-page .large-image-section {
  margin-top: 1rem;
  height: 8.8rem;
}
.trend-page .large-image-section .c-img-container {
  width: 100%;
}
.trend-page .large-image-section .c-img-container img {
  width: 100%;
  display: block;
}
.trend-page .trend-content-section.backyard-garden-section .u-flex-between {
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 2.95rem;
}
.trend-page .trend-content-section.backyard-garden-section .u-flex-between .left-box {
  width: 8.65rem;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
.trend-page .trend-content-section.backyard-garden-section .u-flex-between .right-box .c-img-container {
  width: 6rem;
}
.trend-page .trend-content-section.backyard-garden-section .u-flex-between .right-box .info-box .t-text-description {
  max-width: 6rem;
}
.trend-page .trend-content-section .u-flex-between {
  display: -webkit-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.8rem;
}
@media screen and (max-width: 800px) {
  .trend-page .trend-content-section .u-flex-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
}
.trend-page .trend-content-section .head-box {
  margin: 0 auto 0.83rem auto;
}
.trend-page .trend-content-section .head-box .t-heading-section {
  font-size: 0.32rem;
  line-height: 0.38rem;
  margin-bottom: 0.24rem;
}
.trend-page .trend-content-section .img-list {
  gap: 0.3rem;
}
.trend-page .trend-content-section .img-list .c-img-container {
  overflow: hidden;
  width: 8.65rem;
}
.trend-page .trend-content-section .img-list .c-img-container img {
  width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.trend-page .trend-content-section .img-list .c-img-container:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.trend-page .trend-content-section .info-box {
  max-width: 6rem;
}
@media screen and (max-width: 800px) {
  .trend-page .trend-content-section .info-box {
    max-width: 100%;
    text-align: center;
  }
}
.trend-page .trend-content-section.backyard-garden-section .left-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.trend-page .trend-content-section.backyard-garden-section .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 800px) {
  .trend-page .trend-content-section.backyard-garden-section .right-box {
    gap: 0.6rem;
  }
}
.trend-page .trend-content-section.second-nature-section .head-box {
  text-align: center;
  max-width: 10rem;
  margin: 0 auto 0.8rem;
}
@media screen and (max-width: 800px) {
  .trend-page .trend-content-section.second-nature-section .head-box {
    margin-bottom: 0.6rem;
  }
}
.trend-page .trend-content-section.second-nature-section .img-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.29rem;
}
@media screen and (max-width: 800px) {
  .trend-page .trend-content-section.second-nature-section .img-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.trend-page .trend-content-section.second-nature-section .img-list .img-item {
  overflow: hidden;
}
.trend-page .trend-content-section.second-nature-section .img-list .img-item img {
  width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.trend-page .trend-content-section.second-nature-section .img-list .img-item:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.trend-page .trend-content-section.habitat-connection-section .u-flex-between {
  gap: 2.8rem;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.trend-page .trend-content-section.habitat-connection-section .u-flex-between .left-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
}
@media screen and (max-width: 800px) {
  .trend-page .trend-content-section.habitat-connection-section .u-flex-between .left-box {
    gap: 0.6rem;
  }
}
.trend-page .trend-content-section.habitat-connection-section .u-flex-between .left-box .c-img-container {
  width: 6rem;
}
.trend-page .trend-content-section.habitat-connection-section .u-flex-between .left-box .t-heading-section {
  font-size: 0.32rem;
  line-height: 0.38rem;
  margin-bottom: 0.24rem;
}
.trend-page .trend-content-section.habitat-connection-section .u-flex-between .left-box .t-text-description {
  max-width: 6rem;
  line-height: 0.24rem;
}
.trend-page .trend-content-section.habitat-connection-section .u-flex-between .right-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.trend-page .trend-content-section.habitat-connection-section .u-flex-between .right-box .c-img-container {
  width: 8.8rem;
}
.trend-page .trend-content-section.orient-scape-section .head-box {
  text-align: center;
  max-width: 10rem;
  margin: 0 auto 0.8rem;
}
@media screen and (max-width: 800px) {
  .trend-page .trend-content-section.orient-scape-section .head-box {
    margin-bottom: 0.6rem;
  }
}
.trend-page .trend-content-section.orient-scape-section .c-img-container {
  width: 100%;
}
.trend-page .discover-more-section {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .trend-page .discover-more-section {
    padding-bottom: 1.25rem;
    padding-top: 1.2rem;
    background: #F0EFEB;
    margin-bottom: 0;
  }
}
.trend-page .discover-more-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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 800px) {
  .trend-page .discover-more-section .head-box {
    margin-bottom: 0.4rem;
    padding: 0 0.32rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.trend-page .discover-more-section .head-box .t-heading-section {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .trend-page .discover-more-section .head-box .t-heading-section {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
}
.trend-page .discover-more-section .head-box .swiper-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.trend-page .discover-more-section .head-box .swiper-btn .btn-prev,
.trend-page .discover-more-section .head-box .swiper-btn .btn-next {
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 0.18rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 800px) {
  .trend-page .discover-more-section .head-box .swiper-btn .btn-prev,
  .trend-page .discover-more-section .head-box .swiper-btn .btn-next {
    width: 0.4rem;
    height: 0.4rem;
    margin-left: 0.2rem;
  }
}
.trend-page .discover-more-section .head-box .swiper-btn .btn-prev:hover,
.trend-page .discover-more-section .head-box .swiper-btn .btn-next:hover {
  opacity: 0.6;
}
.trend-page .discover-more-section .head-box .swiper-btn .btn-prev .img,
.trend-page .discover-more-section .head-box .swiper-btn .btn-next .img {
  width: 100%;
  height: 100%;
  display: block;
}
.trend-page .discover-more-section .related-swiper .swiper-slide .card-box {
  display: block;
}
.trend-page .discover-more-section .related-swiper .swiper-slide .card-box .c-img-container {
  width: 100%;
  aspect-ratio: 370/494;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .trend-page .discover-more-section .related-swiper .swiper-slide .card-box .c-img-container {
    aspect-ratio: 560/740;
  }
}
.trend-page .discover-more-section .related-swiper .swiper-slide .card-box .c-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.trend-page .discover-more-section .related-swiper .swiper-slide .card-box .title {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .trend-page .discover-more-section .related-swiper .swiper-slide .card-box .title {
    font-size: 0.28rem;
    text-align: left;
    margin-top: 0.24rem;
  }
}
.trend-page .discover-more-section .related-swiper .swiper-slide .card-box:hover .c-img-container img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 800px) {
  .trend-page .u-header-phone {
    background: unset;
    border-bottom: unset;
  }
  .trend-page main {
    padding-top: 0;
  }
  .trend-page section {
    margin-top: 1rem;
    padding-top: 0;
  }
  .trend-page .u-banner-hero {
    height: 10.08rem;
    padding-bottom: 0;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trend-page .trend-banner .banner-box {
    text-align: center;
    padding: 0 0.32rem;
    width: 100%;
  }
  .trend-page .t-text-description {
    width: 100%;
    max-width: 100%;
    margin: 0.24rem 0 0 0;
  }
  .trend-page .wood-intro-section {
    margin-top: 1.2rem;
  }
  .trend-page .wood-intro-section .bg-box {
    height: 10.8rem;
  }
  .trend-page .wood-intro-section .bg-box .content {
    margin: 2.5rem auto 0 auto;
    padding: 0 0.32rem;
  }
  .trend-page .wood-intro-section .bg-box .content .t-heading-section {
    font-size: 0.48rem;
    line-height: 0.58rem;
    margin-bottom: 0.24rem;
  }
  .trend-page .wood-intro-section .bg-box .content .t-text-description {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .trend-page .aesthetic-trends-section {
    background-color: #F0EFEB;
    margin-top: 1rem;
    padding-top: 1.2rem;
    padding-bottom: 1.06rem;
  }
  .trend-page .aesthetic-trends-section .head-box .u-title-md {
    font-size: 0.48rem;
    line-height: 0.58rem;
  }
  .trend-page .aesthetic-trends-section .head-box .t-text-description {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .trend-page .large-image-section {
    margin-top: 0.6rem;
    height: auto;
  }
  .trend-page .trend-content-section .u-flex-between {
    gap: 0.48rem;
  }
  .trend-page .trend-content-section .info-box {
    text-align: center;
  }
  .trend-page .trend-content-section.backyard-garden-section .backyard-box {
    text-align: center;
  }
  .trend-page .trend-content-section.backyard-garden-section .backyard-box .t-heading-section {
    font-size: 0.4rem;
    line-height: 0.48rem;
    margin-bottom: 0.24rem;
  }
  .trend-page .trend-content-section.backyard-garden-section .backyard-box .t-text-description {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .trend-page .trend-content-section.backyard-garden-section .backyard-box .img-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.3rem;
    margin-top: 0.6rem;
  }
  .trend-page .trend-content-section.backyard-garden-section .backyard-box .img-list .left-container {
    width: 4.2rem;
  }
  .trend-page .trend-content-section.backyard-garden-section .backyard-box .img-list .right-container {
    width: 2.4rem;
  }
  .trend-page .trend-content-section.second-nature-section {
    margin-top: 1.2rem;
  }
  .trend-page .trend-content-section.second-nature-section .head-box {
    margin-bottom: 0.6rem;
    padding: 0 0.32rem;
  }
  .trend-page .trend-content-section.second-nature-section .head-box .t-heading-section {
    font-size: 0.4rem;
    line-height: 0.48rem;
    margin-bottom: 0.24rem;
  }
  .trend-page .trend-content-section.second-nature-section .head-box .t-text-description {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .trend-page .trend-content-section.second-nature-section .img-list {
    gap: 0.3rem;
  }
  .trend-page .trend-content-section.second-nature-section .img-list .c-img-container {
    width: 100%;
  }
  .trend-page .trend-content-section.habitat-connection-section .left-box {
    gap: 0.48rem;
  }
  .trend-page .trend-content-section.habitat-connection-section .habitat-box {
    text-align: center;
  }
  .trend-page .trend-content-section.habitat-connection-section .habitat-box .t-heading-section {
    font-size: 0.4rem;
    line-height: 0.48rem;
    margin-bottom: 0.24rem;
  }
  .trend-page .trend-content-section.habitat-connection-section .habitat-box .t-text-description {
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .trend-page .trend-content-section.habitat-connection-section .habitat-box .img-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.3rem;
    margin-top: 0.6rem;
  }
  .trend-page .trend-content-section.habitat-connection-section .habitat-box .img-list .left-container {
    width: 2.4rem;
  }
  .trend-page .trend-content-section.habitat-connection-section .habitat-box .img-list .right-container {
    width: 4.2rem;
  }
  .trend-page .trend-content-section.orient-scape-section {
    margin-top: 1.2rem;
  }
  .trend-page .trend-content-section.orient-scape-section .head-box {
    margin-bottom: 0.48rem;
    padding: 0 0.32rem;
  }
  .trend-page .trend-content-section.orient-scape-section .head-box .t-heading-section.u-title-md {
    font-size: 0.4rem;
    line-height: 0.48rem;
    margin-bottom: 0.24rem;
  }
}

/* 趋势页面end */
/* global-site-page start */
.global-site-page .global-site-main {
  padding-top: 0.94rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-main {
    padding-top: 0.8rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .global-site-page .global-site-main .wal {
    padding: 0;
    max-width: none;
  }
}
.global-site-page .global-site-container {
  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;
  height: 8.66rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100vh - 0.8rem);
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    position: relative;
    overflow: hidden;
  }
}
.global-site-page .global-site-container .sidebar-box {
  padding-top: 0.02rem;
  width: 4.2rem;
  height: 100%;
  -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;
  background: #fff;
  z-index: 10;
  margin-right: 0.6rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 0.8rem - 0.4rem); /* Allow it to cover most of the map */
    border-right: none;
    border-bottom: none;
    background: #fff;
    padding: 0 0.4rem;
    border-radius: 0.2rem 0.2rem 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    -webkit-transform: translateY(calc(100% - 1.2rem));
        -ms-transform: translateY(calc(100% - 1.2rem));
            transform: translateY(calc(100% - 1.2rem)); /* Initial translation, adjusted by JS */
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .global-site-page .global-site-container .sidebar-box.dragging {
    -webkit-transition: none;
    transition: none;
  }
}
.global-site-page .global-site-container .sidebar-box .store-detail-view {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}
.global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding-bottom: 0.32rem;
}
.global-site-page .global-site-container .sidebar-box .mobile-drag-handle {
  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: 0.1rem 0;
}
.global-site-page .global-site-container .sidebar-box .mobile-drag-handle span {
  width: 0.4rem;
  height: 0.04rem;
  background: #D1D1D1;
  border-radius: 0.02rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .mobile-drag-handle span {
    width: 0.72rem;
    height: 0.06rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list-view {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .filter-section {
    padding: 0.4rem 0 0.4rem 0;
  }
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box {
  position: relative;
  margin-bottom: 0.24rem;
  border-bottom: 1px solid #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .address-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.14rem;
  line-height: 0.17rem;
  padding-bottom: 0.17rem;
  color: #000;
  background: transparent;
  padding-right: 0.4rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .address-input {
    font-size: 0.24rem;
    line-height: 0.24rem;
    padding-bottom: 0.31rem;
  }
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .address-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .address-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .address-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .address-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .img-box {
  width: 0.22rem;
  height: 0.22rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .img-box {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.global-site-page .global-site-container .sidebar-box .filter-section .search-input-box .img-box img {
  width: 100%;
  height: 100%;
  display: block;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select {
  width: 100%;
  position: relative;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select.on .-select-front .select-arrow-img {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select.on .-select-layer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-front {
  position: relative;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0.24rem;
  background: transparent;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-front {
    font-size: 0.24rem;
    line-height: 0.24rem;
    padding-bottom: 0.31rem;
    padding-right: 0.4rem;
  }
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-front input {
  color: #000;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-front::after {
  display: none;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-front .select-arrow-img {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.16rem;
  height: 0.16rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-front .select-arrow-img {
    width: 0.24rem;
    height: 0.24rem;
    right: 5px;
  }
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% + 0.02rem);
  bottom: auto;
  -webkit-transform: translateY(0.08rem);
      -ms-transform: translateY(0.08rem);
          transform: translateY(0.08rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  box-shadow: 0 0.04rem 0.12rem 0 rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  background: #fff;
  z-index: 12;
  height: auto;
  overflow: visible;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer .-inner {
  padding: 0.12rem 0.16rem 0.12rem 0.16rem;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer .-inner .select-option {
  display: -webkit-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.12rem;
  cursor: pointer;
  padding: 0.04rem 0 0.04rem 0;
  margin-top: 0.08rem;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer .-inner .select-option:first-child {
  margin-top: 0;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer .-inner .select-option .option-icon {
  width: 0.18rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer .-inner .select-option .option-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer .-inner .select-option .option-text {
  color: rgba(0, 0, 0, 0.42);
  font-size: 0.14rem;
  line-height: 0.18rem;
}
.global-site-page .global-site-container .sidebar-box .filter-section .type-select .-select-layer .-inner .select-option.active .option-text {
  color: #000;
}
.global-site-page .global-site-container .sidebar-box .store-list {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: auto;
  padding: 0;
  max-height: 6.5rem;
  margin-top: 0.3rem;
}
.global-site-page .global-site-container .sidebar-box .store-list.-scroll {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.global-site-page .global-site-container .sidebar-box .store-list.-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list {
    max-height: none;
    padding: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 0;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item {
  padding: 0.24rem;
  border: 1px solid #e8e8e8;
  margin-bottom: 0.1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list .store-item {
    margin-bottom: 0.3rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item:hover, .global-site-page .global-site-container .sidebar-box .store-list .store-item.active {
  border-color: #000;
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item .item-header {
  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;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list .store-item .item-header {
    margin-bottom: 0.31rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item .item-header .store-name {
  font-size: 0.18rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  line-height: 0.24rem;
  color: #000;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list .store-item .item-header .store-name {
    font-size: 0.28rem;
    line-height: 0.24rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item .item-header .store-distance {
  font-size: 0.14rem;
  color: #B29D7D;
  white-space: nowrap;
  margin-left: 0.16rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list .store-item .item-header .store-distance {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item .item-info .info-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0.08rem;
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list .store-item .item-info .info-row {
    margin-bottom: 0.15rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item .item-info .info-row .icon-box {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.08rem;
  margin-top: 0.02rem;
  -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;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list .store-item .item-info .info-row .icon-box {
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 0.16rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item .item-info .info-row .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.global-site-page .global-site-container .sidebar-box .store-list .store-item .item-info .info-row span {
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-list .store-item .item-info .info-row span {
    font-size: 0.28rem;
    line-height: 0.24rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-detail-view .detail-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.2rem 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-header {
    padding-bottom: 0.45rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-detail-view .detail-header .back-btn {
  border: none;
  background: transparent;
  padding: 0.1rem;
  cursor: pointer;
  position: absolute;
  left: -0.1rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-header .back-btn {
    width: 0.56rem;
    height: 0.56rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-detail-view .detail-header .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 0.18rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-header .title {
    font-size: 0.32rem;
    line-height: 0.32rem;
  }
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-box {
    width: 6.9rem;
    height: 3.88rem;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-box .store-main-img {
    width: 100%;
    height: 100%;
    margin-bottom: 0.2rem;
    display: block;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box {
    background: #fff;
    padding: 0.2rem;
    border-radius: 0.04rem;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box {
    padding-top: 0.45rem;
  }
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item {
    border: none;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    border-radius: 0 0 0 0;
    cursor: default;
    -webkit-transition: none;
    transition: none;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row:last-child {
    margin-bottom: 0;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row span,
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row a {
    color: rgb(0, 0, 0);
    font-family: var(--sk-font-Montserrat-Regular);
    font-weight: 400;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row a {
    text-decoration: underline;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-header {
    margin-bottom: 0.24rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-header .store-name {
    font-size: 0.28rem;
    line-height: 0.28rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-header .store-distance {
    font-size: 0.24rem;
    line-height: 0.29rem;
    color: #956730;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row {
    margin-bottom: 0.15rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row .icon-box {
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 0.21rem;
  }
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row span,
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .store-info-box .store-item.detail-store-item .item-info .info-row a {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .sidebar-box .store-detail-view .detail-content .navigate-btn-fixed {
    padding-top: 0.28rem;
    padding-bottom: 0.28rem;
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.global-site-page .global-site-container .sidebar-box .store-detail-view .navigate-btn-fixed {
  background: #000;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  text-decoration: none;
  font-family: var(--sk-font-Montserrat-SemiBold);
  font-weight: 600;
}
.global-site-page .global-site-container .map-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: calc(100% - 0.32rem);
  position: relative;
  background: #f5f5f5;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .map-box {
    height: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.global-site-page .global-site-container .map-box {
  /* Hide Google Maps default InfoWindow UI */
}
.global-site-page .global-site-container .map-box .gm-ui-hover-effect {
  display: none !important;
}
.global-site-page .global-site-container .map-box .gm-style-iw-tc {
  display: none !important;
}
.global-site-page .global-site-container .map-box .gm-style-iw {
  padding: 0 !important;
  max-height: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media screen and (max-width: 800px) {
  .global-site-page .global-site-container .map-box .gm-style-iw {
    display: none !important;
  }
}
.global-site-page .global-site-container .map-box .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
}
.global-site-page .global-site-container .map-box .map-container {
  width: 100%;
  height: 100%;
}
.global-site-page .map-info-window {
  width: 3.2rem;
  padding: 0;
  background: #fff;
  border: 1px solid #000000;
  box-shadow: 0 0.04rem 0.24rem rgba(0, 0, 0, 0.1);
}
.global-site-page .map-info-window .img-box {
  width: 100%;
  height: 1.8rem;
  margin-bottom: 0;
}
.global-site-page .map-info-window .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-site-page .map-info-window .info-content {
  padding: 0.24rem 0.24rem 0.24rem;
}
.global-site-page .map-info-window .info-content .item-header {
  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;
  margin-bottom: 0.16rem;
}
.global-site-page .map-info-window .info-content .item-header .store-name {
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1.2;
  color: #000;
  letter-spacing: 0.01rem;
}
.global-site-page .map-info-window .info-content .item-header .store-distance {
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  font-size: 0.14rem;
  color: #c9a063;
}
.global-site-page .map-info-window .info-content .item-info {
  margin-bottom: 0.16rem;
}
.global-site-page .map-info-window .info-content .item-info .info-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0.08rem;
  font-size: 0.13rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
.global-site-page .map-info-window .info-content .item-info .info-row .icon-box {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.12rem;
  margin-top: 0.02rem;
  -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;
}
.global-site-page .map-info-window .info-content .item-info .info-row .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
@media screen and (max-width: 800px) {
  .global-site-page .map-info-window .info-content .item-info .info-row span {
    font-size: 0.28rem;
    line-height: 0.24rem;
  }
}
.global-site-page .map-info-window .info-content .navigate-btn {
  width: 100%;
  height: 0.48rem;
  background: #000;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 0.14rem;
  line-height: 1;
  letter-spacing: 0.01rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.global-site-page .map-info-window .info-content .navigate-btn:hover {
  background: #333;
  color: #fff;
}
.global-site-page .map-info-window .info-content .navigate-btn::before {
  display: none;
}

/* global-site-page end */
/* 案例列表页面start */
.case-list-page {
  padding-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .case-list-page {
    padding-top: 1.2rem;
  }
}
.case-list-page .preview-panel {
  display: none;
}
.case-list-page.view-gallery .__crumb {
  display: none;
}
.case-list-page.view-gallery .main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: calc(100vh - 0.64rem);
  padding-bottom: 0;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    padding-bottom: 0.8rem;
  }
}
.case-list-page.view-gallery .main .preview-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  background-color: #F3F2EE;
  -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: -webkit-sticky;
  position: sticky;
  top: 0.64rem;
  height: calc(100vh - 0.64rem);
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .preview-panel {
    width: 100%;
    height: auto;
    position: static;
    background-color: #F0EFEB;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    margin-bottom: 0.69rem;
    padding-bottom: 0.88rem;
  }
}
.case-list-page.view-gallery .main .preview-panel .preview-inner {
  width: 4rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .preview-panel .preview-inner {
    width: 100%;
    padding: 0 0.95rem;
  }
}
.case-list-page.view-gallery .main .preview-panel .preview-inner .img-box {
  position: relative;
  width: 100%;
  margin-bottom: 0.2rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .preview-panel .preview-inner .img-box {
    aspect-ratio: 345/431;
    margin-bottom: 0.4rem;
  }
}
.case-list-page.view-gallery .main .preview-panel .preview-inner .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.case-list-page.view-gallery .main .preview-panel .preview-inner .img-box .tag-box {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.03rem 0.1rem 0.07rem 0.1rem;
  backdrop-filter: blur(0.2rem);
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .preview-panel .preview-inner .img-box .tag-box {
    top: 0.1rem;
    right: 0.1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.08rem 0.3rem 0.12rem 0.3rem;
  }
}
.case-list-page.view-gallery .main .preview-panel .preview-inner .img-box .tag-box .tag {
  color: #fff;
  font-size: 0.14rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .preview-panel .preview-inner .img-box .tag-box .tag {
    font-size: 0.2rem;
    line-height: 0.24rem;
  }
}
.case-list-page.view-gallery .main .preview-panel .preview-inner .info .name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  margin-bottom: 0.1rem;
  color: #000000;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .preview-panel .preview-inner .info .name {
    font-size: 0.28rem;
    line-height: 0.34rem;
    margin-bottom: 0.2rem;
  }
}
.case-list-page.view-gallery .main .preview-panel .preview-inner .info .desc {
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: rgba(30, 30, 30, 0.6);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .preview-panel .preview-inner .info .desc {
    font-size: 0.24rem;
    line-height: 0.29rem;
    color: #000000;
  }
}
.case-list-page.view-gallery .main .list-panel {
  width: 50%;
  padding: 0.4rem 0;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel {
    display: contents;
  }
}
.case-list-page.view-gallery .main .list-panel .wal {
  padding: 0 0.8rem;
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .wal {
    padding: 0 0.3rem;
  }
}
.case-list-page.view-gallery .main .list-panel .head-box {
  margin-top: 0;
  margin-bottom: 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;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .head-box {
    display: contents;
  }
}
.case-list-page.view-gallery .main .list-panel .head-box .title-box .h1 {
  font-size: 0.18rem;
  line-height: 0.24rem;
  margin-right: 0.12rem;
}
.case-list-page.view-gallery .main .list-panel .head-box .title-box .num {
  font-size: 0.18rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .head-box .title-box {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.1rem;
    margin-bottom: 0.32rem;
    padding: 0 0.3rem;
  }
  .case-list-page.view-gallery .main .list-panel .head-box .title-box .h1, .case-list-page.view-gallery .main .list-panel .head-box .title-box .num {
    font-size: 0.24rem;
    line-height: 0.24rem;
    font-family: var(--sk-font-ARCHIA-Regular);
    font-weight: 400;
  }
}
.case-list-page.view-gallery .main .list-panel .head-box .filter-box {
  margin-top: 0;
  width: auto;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .head-box .filter-box {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    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;
    padding: 0.3rem 0;
    padding-bottom: 0.4rem;
    background-color: #F0EFEB;
  }
}
.case-list-page.view-gallery .main .list-panel .head-box .filter-box .filter-item {
  display: none;
}
.case-list-page.view-gallery .main .list-panel .head-box .filter-box .view-by {
  margin-left: auto;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .head-box .filter-box .view-by {
    margin: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
    padding: 0;
    gap: 0.4rem;
  }
  .case-list-page.view-gallery .main .list-panel .head-box .filter-box .view-by .label {
    font-size: 0.22rem;
  }
  .case-list-page.view-gallery .main .list-panel .head-box .filter-box .view-by .icons {
    gap: 0.3rem;
  }
  .case-list-page.view-gallery .main .list-panel .head-box .filter-box .view-by .icons .icon-item img {
    width: 0.36rem;
  }
}
.case-list-page.view-gallery .main .list-panel .head-box .filter-box .view-by .arrow-icon-item {
  display: none;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .list-section {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    padding: 0;
  }
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  row-gap: 0.8rem;
  -webkit-column-gap: 1.06rem;
     -moz-column-gap: 1.06rem;
          column-gap: 1.06rem;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .list-section .case-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0.3rem 0.4rem;
    gap: 0.6rem;
    -webkit-overflow-scrolling: touch;
  }
  .case-list-page.view-gallery .main .list-panel .list-section .case-list::-webkit-scrollbar {
    display: none;
  }
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card {
  aspect-ratio: 1;
  width: 1.2rem;
  height: 1.5rem;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1.6rem;
        -ms-flex: 0 0 1.6rem;
            flex: 0 0 1.6rem;
    width: 1.6rem;
    height: 2.3rem;
    padding-bottom: 0.3rem;
    aspect-ratio: unset;
    position: relative;
  }
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card .img-box {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  position: relative;
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card .img-box img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card .img-box img {
    opacity: 0.5;
  }
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card .img-box .tag-box {
  display: none;
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card .info {
  display: none;
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card.active .img-box::before, .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card:hover .img-box::before {
  opacity: 1;
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card.active .img-box img, .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card:hover .img-box img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}
.case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card.active .img-box::after, .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card:hover .img-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.32rem;
  height: 0.32rem;
  background: url(../images/base/case-list/case-list19.svg) center center/contain no-repeat;
  opacity: 1;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card.active .img-box::after, .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card:hover .img-box::after {
    width: 0.48rem;
    height: 0.48rem;
  }
}
@media screen and (max-width: 800px) {
  .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card.active::after, .case-list-page.view-gallery .main .list-panel .list-section .case-list .case-card:hover::after {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    width: 100%;
    height: 0.08rem;
    background: #000;
  }
}
.case-list-page.view-gallery .main .list-panel .list-section .btn-box {
  display: none;
}
.case-list-page .main {
  padding-bottom: 1.2rem;
}
.case-list-page .main .head-box {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }
}
.case-list-page .main .head-box .title-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.case-list-page .main .head-box .title-box .h1 {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .title-box .h1 {
    font-size: 0.56rem;
    line-height: 1.2;
  }
}
.case-list-page .main .head-box .title-box .num {
  font-size: 0.48rem;
  line-height: 0.58rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .title-box .num {
    font-size: 0.56rem;
    line-height: 0.72rem;
  }
}
.case-list-page .main .head-box .filter-box {
  margin-top: 1rem;
  display: -webkit-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.6rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box {
    margin-top: 0.4rem;
    -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;
    gap: 0.2rem;
    width: 100%;
  }
}
.case-list-page .main .head-box .filter-box .filter-item {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .filter-item {
    width: 100%;
  }
}
.case-list-page .main .head-box .filter-box .filter-item.active-dropdown .label-box .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.case-list-page .main .head-box .filter-box .filter-item .label-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 0.1rem;
  width: 2.8rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .filter-item .label-box {
    width: 100%;
    padding: 0.4rem 0 0.4rem 0;
  }
}
.case-list-page .main .head-box .filter-box .filter-item .label-box .label {
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .filter-item .label-box .label {
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
.case-list-page .main .head-box .filter-box .filter-item .label-box .icon {
  width: 0.12rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .filter-item .label-box .icon {
    width: 0.32rem;
  }
}
.case-list-page .main .head-box .filter-box .filter-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 0.1rem 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.1rem);
      -ms-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
  pointer-events: none;
  -webkit-transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.32s, -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.32s, -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.32s;
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.32s, -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.case-list-page .main .head-box .filter-box .filter-item .dropdown.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
  -webkit-transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s, -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s, -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s;
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s, -webkit-transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.case-list-page .main .head-box .filter-box .filter-item .dropdown .li {
  padding: 0.1rem 0.2rem;
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .filter-item .dropdown .li {
    font-size: 0.28rem;
    padding: 0.2rem 0.3rem;
  }
}
.case-list-page .main .head-box .filter-box .filter-item .dropdown .li:hover, .case-list-page .main .head-box .filter-box .filter-item .dropdown .li.active {
  background: #f7f7f7;
  color: #000;
}
.case-list-page .main .head-box .filter-box .view-by {
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .view-by {
    margin-left: 0;
    margin-top: 0.4rem;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0.24rem;
    padding-bottom: 0.24rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    gap: 0.4rem;
  }
}
.case-list-page .main .head-box .filter-box .view-by .label {
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .view-by .label {
    font-size: 0.22rem;
  }
}
.case-list-page .main .head-box .filter-box .view-by .icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .view-by .icons {
    gap: 0.3rem;
  }
}
.case-list-page .main .head-box .filter-box .view-by .icons .icon-item {
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case-list-page .main .head-box .filter-box .view-by .icons .icon-item.active {
  opacity: 1;
}
.case-list-page .main .head-box .filter-box .view-by .icons .icon-item:hover {
  opacity: 1;
}
.case-list-page .main .head-box .filter-box .view-by .icons .icon-item img {
  width: 0.16rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .head-box .filter-box .view-by .icons .icon-item img {
    width: 0.36rem;
  }
}
.case-list-page .main .hr {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .hr {
    margin-bottom: 0.4rem;
  }
}
.case-list-page .main .list-section .case-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem 0.31rem;
}
@media screen and (max-width: 1024px) {
  .case-list-page .main .list-section .case-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .case-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.case-list-page .main .list-section .case-list .case-card {
  display: block;
}
.case-list-page .main .list-section .case-list .case-card .img-box {
  position: relative;
  width: 5.66rem;
  height: 7.08rem;
  overflow: hidden;
  background: #f7f7f7;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .case-list .case-card .img-box {
    width: 100%;
    height: auto;
    aspect-ratio: 345/431;
  }
}
.case-list-page .main .list-section .case-list .case-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.case-list-page .main .list-section .case-list .case-card .img-box .tag-box {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .case-list .case-card .img-box .tag-box {
    top: 0.1rem;
    right: 0.1rem;
    gap: 0.1rem;
  }
}
.case-list-page .main .list-section .case-list .case-card .img-box .tag-box .tag {
  padding: 0.05rem 0.15rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 0.12rem;
  line-height: 0.14rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  backdrop-filter: blur(0.2rem);
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .case-list .case-card .img-box .tag-box .tag {
    font-size: 0.2rem;
    padding: 0.12rem 0.32rem 0.12rem 0.32rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: unset;
  }
}
.case-list-page .main .list-section .case-list .case-card .info {
  margin-top: 0.3rem;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .case-list .case-card .info {
    margin-top: 0.4rem;
  }
}
.case-list-page .main .list-section .case-list .case-card .info .name {
  font-size: 0.18rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .case-list .case-card .info .name {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.case-list-page .main .list-section .case-list .case-card .info .desc {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: rgb(0, 0, 0);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .case-list .case-card .info .desc {
    font-size: 0.28rem;
    margin-top: 0.2rem;
    color: rgba(0, 0, 0, 0.6);
  }
}
.case-list-page .main .list-section .case-list .case-card:hover .img-box img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.case-list-page .main .list-section .btn-box {
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .case-list-page .main .list-section .btn-box {
    margin-top: 1.2rem;
  }
}

/* 案例列表页面end */
/* 客户服务页面start */
.customer-service-page {
  padding-top: 0.64rem;
}
@media screen and (max-width: 800px) {
  .customer-service-page {
    padding-top: 1.2rem;
  }
}
.customer-service-page .service-title-section {
  padding-top: 1.64rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-title-section {
    padding-top: 0.63rem;
    padding-bottom: 0.8rem;
  }
}
.customer-service-page .service-title-section .t-heading-section {
  font-size: 0.48rem;
  line-height: 0.58rem;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-title-section .t-heading-section {
    font-size: 0.56rem;
    line-height: 1.2;
  }
}
.customer-service-page .service-list-section {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-list-section {
    margin-bottom: 1.6rem;
  }
}
@media screen and (min-width: 801px) {
  .customer-service-page .service-list-section {
    margin-bottom: 0;
  }
}
.customer-service-page .service-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;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-list {
    gap: 1.2rem;
  }
}
.customer-service-page .service-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.52rem;
    margin-bottom: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.customer-service-page .service-item .img-box {
  width: 8.8rem;
  height: 8.36rem;
}
.customer-service-page .service-item .img-box img {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-item .img-box {
    width: 100%;
    height: auto;
    aspect-ratio: 345/328;
  }
}
.customer-service-page .service-item .info-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 5rem;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-item .info-box {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }
}
.customer-service-page .service-item .info-box .num-box {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-item .info-box .num-box {
    margin-bottom: 0.4rem;
  }
}
.customer-service-page .service-item .info-box .num-box .num {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 0.14rem;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-item .info-box .num-box .num {
    width: 0.72rem;
    height: 0.72rem;
    font-size: 0.28rem;
  }
}
.customer-service-page .service-item .info-box .t-heading-section {
  margin-bottom: 0.24rem;
  font-size: 0.32rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-item .info-box .t-heading-section {
    font-size: 0.48rem;
    line-height: 1.2;
    margin-bottom: 0.24rem;
  }
}
.customer-service-page .service-item .info-box .t-text-description {
  list-style: none;
  padding: 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.customer-service-page .service-item .info-box .t-text-description li {
  position: relative;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-item .info-box .t-text-description li {
    font-size: 0.24rem;
    line-height: 0.36rem;
    color: rgb(0, 0, 0);
  }
}
.customer-service-page .service-footer-section {
  position: relative;
  height: 9.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .customer-service-page .service-footer-section {
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-footer-section {
    height: 10.8rem;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.customer-service-page .service-footer-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.customer-service-page .service-footer-section .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.customer-service-page .service-footer-section .content-box {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.customer-service-page .service-footer-section .content-box .text {
  font-size: 0.32rem;
  line-height: 1.5;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .customer-service-page .service-footer-section .content-box .text {
    font-size: 0.4rem;
    line-height: 0.48rem;
    margin-top: 5rem;
  }
}

/* 客户服务页面end */
/* header部分start */
.u-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 0.64rem;
  background: #fff;
  border-bottom: 1px solid #E6E6E6;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.u-header.header-hide {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.u-header .header-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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 0.64rem;
}
.u-header .logo-box {
  height: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-header .logo-box .img {
  height: 100%;
  width: auto;
  color: #1E1E1E;
}
.u-header .center-nav {
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 1.8rem;
}
.u-header .center-nav .nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.u-header .center-nav .nav-list .nav-item {
  position: relative;
  padding: 0 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.u-header .center-nav .nav-list .nav-item .nav-link {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(30, 30, 30, 0.6);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 2px;
}
.u-header .center-nav .nav-list .nav-item:hover .nav-link, .u-header .center-nav .nav-list .nav-item.active .nav-link {
  color: #1E1E1E;
}
.u-header .center-nav .nav-list .nav-item.active::after {
  content: "";
  position: absolute;
  left: 0.24rem;
  bottom: -0.01rem;
  width: calc(100% - 0.48rem);
  height: 0.02rem;
  background: #1E1E1E;
  z-index: 2;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer {
  position: fixed;
  top: 0.64rem;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  pointer-events: none;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 0.6s, -webkit-clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 0.6s, -webkit-clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 0.6s;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 0.6s, -webkit-clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
  padding: 0.48rem 0;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .dropdown-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.41rem;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: -webkit-transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions {
  width: 3.2rem;
  border-right: none;
  padding-right: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
}
.product-nav-item .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions {
  border-right: 0.01rem solid #E6E6E6;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions:last-child {
  border-right: none;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(30, 30, 30, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  --color: #1E1E1E;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .btn-next, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .icon {
  width: 0.14rem;
  height: 0.14rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 0.1rem;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .btn-next .img, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .btn-next .icon, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .icon .img, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .icon .icon {
  width: 100%;
  height: 100%;
  display: block;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .btn-next path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link .icon path {
  stroke: #1E1E1E;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link:hover, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link.active {
  color: #1E1E1E;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link:hover .btn-next, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link:hover .icon, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link.active .btn-next, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link.active .icon {
  opacity: 1;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link:hover .btn-next .img path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link:hover .icon .img path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link.active .btn-next .img path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions .menu-link.active .icon .img path {
  fill-opacity: 1;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-solutions.product-col-solutions, .u-header .center-nav .nav-list .nav-item .dropdown-layer .download-col-solutions {
  border-right: 1px solid #E6E6E6;
  padding-right: 0.94rem;
  width: auto;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series {
  width: 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;
  border-right: 0.01rem solid #D8D8D8;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series.no-border {
  border-right-color: transparent;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .group-title {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(30, 30, 30, 0.4);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-transform: uppercase;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(30, 30, 30, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  --color: #1E1E1E;
  text-transform: uppercase;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .btn-next, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .icon {
  width: 0.14rem;
  height: 0.14rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 0.1rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .btn-next .img, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .btn-next .icon, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .icon .img, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .icon .icon {
  width: 100%;
  height: 100%;
  display: block;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .btn-next path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link .icon path {
  stroke: #1E1E1E;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link:hover, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link.active {
  color: #1E1E1E;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link:hover .btn-next, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link:hover .icon, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link.active .btn-next, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link.active .icon {
  opacity: 1;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link:hover .btn-next .img path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link:hover .icon .img path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link.active .btn-next .img path, .u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series .series-group .menu-link.active .icon .img path {
  fill-opacity: 1;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-series-right {
  border-right: none;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  position: relative;
  height: 2.8rem;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image {
  display: none;
  gap: 0.2rem;
  height: 100%;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image .dropdown-img {
  height: 100%;
  object-fit: cover;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image .case-box {
  width: 2.8rem;
  height: 100%;
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  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;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image .case-box:hover {
  opacity: 0.9;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image .case-box .brand {
  font-size: 0.2rem;
  line-height: 1.2;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image .case-box .cross {
  font-size: 0.16rem;
  margin: 0.1rem 0;
  opacity: 0.6;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image-wrapper .col-image .case-box .title {
  font-size: 0.2rem;
  line-height: 1.2;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image.product-col-img {
  display: block;
  width: 4.51rem;
  height: 2.8rem;
  margin-left: auto;
}
.u-header .center-nav .nav-list .nav-item .dropdown-layer .col-image.product-col-img .dropdown-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-header .center-nav .nav-list .nav-item:hover .dropdown-layer, .u-header .center-nav .nav-list .nav-item.active .dropdown-layer {
  opacity: 1;
  visibility: visible;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  pointer-events: auto;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s, -webkit-clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s, -webkit-clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s, -webkit-clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.u-header .center-nav .nav-list .nav-item:hover .dropdown-layer .dropdown-inner, .u-header .center-nav .nav-list .nav-item.active .dropdown-layer .dropdown-inner {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.u-header .right-actions {
  display: -webkit-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.32rem;
}
.u-header .right-actions .search-btn {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.16rem;
}
.u-header .right-actions .search-btn .icon {
  width: 0.24rem;
  height: 0.24rem;
  color: #1E1E1E;
}
.u-header .right-actions .search-btn .icon.icon-white {
  display: none;
}
.u-header .right-actions .search-btn .icon.icon-black {
  display: block;
}
.u-header .right-actions .lang-switch {
  display: -webkit-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.04rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-header .right-actions .lang-switch .text {
  font-size: 0.16rem;
  line-height: 0.21rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-SemiBold);
  font-weight: 600;
  text-transform: uppercase;
}
.u-header .right-actions .lang-switch .icon-down {
  width: 0.11rem;
  height: 0.11rem;
  color: #1E1E1E;
  margin-bottom: 0.05rem;
}
.u-header .right-actions .lang-switch .icon-down.icon-white {
  display: none;
}
.u-header .right-actions .lang-switch .icon-down.icon-black {
  display: block;
}
.u-header .search-dropdown-layer {
  position: fixed;
  top: 0.64rem;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
  box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.05);
  /* 丝滑下拉的关键属性 */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s;
  transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s;
}
.u-header .search-dropdown-layer .wal {
  padding-top: 0.4rem;
  padding-bottom: 0.27rem;
}
.u-header .search-dropdown-layer .search-input-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.01rem solid #000000;
  padding-bottom: 0.16rem;
  margin-bottom: 0.3rem;
}
.u-header .search-dropdown-layer .search-input-wrapper .search-icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.22rem;
}
.u-header .search-dropdown-layer .search-input-wrapper input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  border: none;
  outline: none;
  background: transparent;
}
.u-header .search-dropdown-layer .search-input-wrapper input::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.u-header .search-dropdown-layer .search-input-wrapper input::-moz-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.u-header .search-dropdown-layer .search-input-wrapper input:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.u-header .search-dropdown-layer .search-input-wrapper input::placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.u-header .search-dropdown-layer .search-input-wrapper .close-btn {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: rgba(30, 30, 30, 0.6);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-header .search-dropdown-layer .search-input-wrapper .close-btn:hover {
  color: #1E1E1E;
}
.u-header .search-dropdown-layer .search-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-header .search-dropdown-layer .search-content .section-title {
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: rgba(30, 30, 30, 0.6);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01rem;
}
.u-header .search-dropdown-layer .search-content .popular-searches {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 4.9rem;
}
.u-header .search-dropdown-layer .search-content .popular-searches .tags-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.12rem;
}
.u-header .search-dropdown-layer .search-content .popular-searches .tags-list .tag-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.1rem 0.2rem;
  background: #F3F3F1;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #000000;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: capitalize;
}
.u-header .search-dropdown-layer .search-content .popular-searches .tags-list .tag-item:hover {
  background: #E6E6E6;
}
.u-header .search-dropdown-layer .search-content .popular-products .products-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
.u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item {
  width: 2.4rem;
  height: 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;
  gap: 0.1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
.u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item .img-box {
  width: 100%;
  aspect-ratio: 1;
  background: #F3F3F1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item .name {
  font-size: 0.14rem;
  line-height: 0.17rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  letter-spacing: 0.01rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
.u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item:hover .img-box img {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item:hover .name {
  opacity: 0.7;
}
.u-header {
  /* 当搜索框打开时给 header 加上 active-search 类即可 */
}
.u-header.active-search .search-dropdown-layer {
  max-height: 10rem; /* 设置一个足够大的高度 */
  opacity: 1;
  visibility: visible;
}

.u-header-phone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-header-phone .icon-arrow {
  width: 0.18rem;
  height: 0.18rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-header-phone .icon-arrow path {
  stroke: #1E1E1E;
}
.u-header-phone .header-main-phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 1.12rem;
  padding: 0 0.32rem;
}
.u-header-phone .header-main-phone .logo-box {
  height: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-header-phone .header-main-phone .logo-box .img {
  height: 100%;
  width: auto;
  color: #1E1E1E;
}
.u-header-phone .header-main-phone .right-actions {
  display: -webkit-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.32rem;
}
.u-header-phone .header-main-phone .right-actions .m-search-btn {
  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;
}
.u-header-phone .header-main-phone .right-actions .m-search-btn .icon {
  width: 0.32rem;
  height: 0.32rem;
}
.u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-white {
  display: none;
}
.u-header-phone .header-main-phone .right-actions .m-search-btn .icon.icon-black {
  display: block;
}
.u-header-phone .header-main-phone .right-actions .menu-toggle {
  width: 0.48rem;
  height: 0.48rem;
  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;
  cursor: pointer;
  z-index: 110;
}
.u-header-phone .header-main-phone .right-actions .menu-toggle .img {
  position: absolute;
  width: 0.32rem;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu {
  opacity: 1;
}
.u-header-phone .header-main-phone .right-actions .menu-toggle .img.icon-menu-w {
  opacity: 0;
}
.u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn {
  position: absolute;
  font-size: 0;
  width: 0.32rem;
  height: 0.32rem;
  display: none;
  cursor: pointer;
}
.u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before, .u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.02rem;
  background: #000;
}
.u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.u-header-phone .header-main-phone .right-actions .menu-toggle .close-btn::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.u-header-phone .mobile-nav-layer {
  position: fixed;
  top: 1.12rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 1.12rem);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 90;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
.u-header-phone .mobile-nav-layer .mobile-nav-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 0.48rem 0.32rem 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;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-nav-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.24rem;
  line-height: 0.24rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  letter-spacing: 0.04rem;
  cursor: pointer;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item.active > .m-nav-title .icon-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu {
  display: none;
  padding-top: 0.66rem;
  padding-left: 0.5rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-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;
  gap: 0.5rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level2-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.24rem;
  line-height: 0.24rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  letter-spacing: 0.02rem;
  text-decoration: none;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level2-title .icon-arrow {
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.18rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level2-title .icon-arrow path {
  stroke: #1E1E1E;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item.active > .m-level2-title .icon-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu {
  display: none;
  padding-top: 0.52rem;
  padding-left: 0.8rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-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;
  gap: 0.48rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-list .m-level3-item .m-level3-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.24rem;
  line-height: 0.24rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  letter-spacing: 0.02rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-list .m-level3-item .m-level3-title .icon-arrow {
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.4rem;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-list .m-level3-item .m-level3-title .icon-arrow path {
  stroke: #1E1E1E;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-list .m-level3-item.active > .m-level3-title .icon-arrow {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-list .m-level3-item .m-level4-menu {
  display: none;
  padding-top: 0.38rem;
  padding-left: 0.24rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-list .m-level3-item .m-level4-menu .m-level4-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;
  gap: 0.38rem;
}
.u-header-phone .mobile-nav-layer .mobile-nav-list .m-nav-item .m-sub-menu .m-level2-list .m-level2-item .m-level3-menu .m-level3-list .m-level3-item .m-level4-menu .m-level4-list .m-level4-link {
  display: block;
  font-size: 0.24rem;
  line-height: 0.34rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01rem;
}
.u-header-phone .mobile-nav-layer .mobile-lang-switch {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.32rem;
}
.u-header-phone .mobile-nav-layer .mobile-lang-switch .lang-item {
  font-size: 0.28rem;
  line-height: 0.4rem;
  color: #1E1E1E;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
.u-header-phone .mobile-nav-layer .mobile-lang-switch .lang-item.active {
  color: #1E1E1E;
}
.u-header-phone .mobile-nav-layer .mobile-lang-switch .separator {
  font-size: 0.24rem;
  color: #1E1E1E;
}
.u-header-phone.menu-opened .header-main-phone .menu-toggle .img.icon-menu,
.u-header-phone.menu-opened .header-main-phone .menu-toggle .img.icon-menu-w {
  opacity: 0;
}
.u-header-phone.menu-opened .header-main-phone .menu-toggle .close-btn {
  display: block;
}
.u-header-phone.menu-opened .mobile-nav-layer {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 800px) {
  .u-header {
    height: 1.2rem;
    border-bottom: unset;
  }
  .u-header .header-main {
    height: 1.2rem;
  }
  .u-header .center-nav .nav-list .nav-item .nav-link {
    color: #1E1E1E;
  }
  .u-header .close-btn {
    font-size: 0;
    width: 0.32rem;
    height: 0.32rem;
    position: relative;
  }
  .u-header .close-btn::before, .u-header .close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.02rem;
    background: #000;
  }
  .u-header .close-btn::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .u-header .close-btn::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .u-header .search-dropdown-layer {
    top: 1.12rem;
    padding-top: 0.64rem;
    padding-bottom: 0.8rem;
    height: calc(100vh - 1.12rem);
    overflow-y: auto;
    box-shadow: none;
  }
  .u-header .search-dropdown-layer .wal {
    padding: 0 0.32rem;
  }
  .u-header .search-dropdown-layer .search-input-wrapper {
    border-bottom: 0.02rem solid #E6E6E6;
    padding-bottom: 0.32rem;
    margin-bottom: 0.6rem;
  }
  .u-header .search-dropdown-layer .search-input-wrapper .search-icon {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.24rem;
  }
  .u-header .search-dropdown-layer .search-input-wrapper input {
    font-size: 0.24rem;
    line-height: 0.24rem;
    color: #1E1E1E;
  }
  .u-header .search-dropdown-layer .search-input-wrapper input::-webkit-input-placeholder {
    color: #CCCCCC;
  }
  .u-header .search-dropdown-layer .search-input-wrapper input::-moz-placeholder {
    color: #CCCCCC;
  }
  .u-header .search-dropdown-layer .search-input-wrapper input:-ms-input-placeholder {
    color: #CCCCCC;
  }
  .u-header .search-dropdown-layer .search-input-wrapper input::placeholder {
    color: #CCCCCC;
  }
  .u-header .search-dropdown-layer .search-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
  }
  .u-header .search-dropdown-layer .search-content .section-title {
    font-size: 0.24rem;
    line-height: 0.29rem;
    color: rgba(30, 30, 30, 0.6);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02rem;
  }
  .u-header .search-dropdown-layer .search-content .popular-searches {
    width: 100%;
  }
  .u-header .search-dropdown-layer .search-content .popular-searches .tags-list {
    gap: 0.24rem;
    max-width: 5rem;
  }
  .u-header .search-dropdown-layer .search-content .popular-searches .tags-list .tag-item {
    padding: 0.1rem 0.2rem;
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
  .u-header .search-dropdown-layer .search-content .popular-products {
    overflow: auto;
  }
  .u-header .search-dropdown-layer .search-content .popular-products .products-list {
    gap: 0.3rem;
  }
  .u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item {
    width: 100%;
    height: auto;
    -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;
  }
  .u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item .img-box {
    width: 4rem;
    height: 4rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .u-header .search-dropdown-layer .search-content .popular-products .products-list .product-item .name {
    font-size: 0.28rem;
    line-height: 0.34rem;
    text-align: left;
    font-family: var(--sk-font-Montserrat-Medium);
    font-weight: 500;
  }
  .u-header .search-dropdown-layer .featured-box {
    margin: 0.8rem -0.32rem -0.8rem;
    height: 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-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: url(../images/base/header/header11.png) no-repeat center/cover;
    color: #fff;
    text-align: center;
  }
  .u-header .search-dropdown-layer .featured-box .brand {
    font-size: 0.48rem;
    line-height: 1.2;
    font-family: var(--sk-font-Montserrat-Medium);
    font-weight: 500;
    letter-spacing: 0.04rem;
    margin-bottom: 0.16rem;
  }
  .u-header .search-dropdown-layer .featured-box .title {
    font-size: 0.64rem;
    line-height: 1.2;
    font-family: var(--sk-font-Montserrat-SemiBold);
    font-weight: 600;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
  }
}
/* header部分end */
/* footer部分start */
.footer {
  background-color: #000;
  color: #fff;
  padding: 0.67rem 0.8rem 0.38rem 0.8rem;
}
.footer .footer-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;
  margin-bottom: 1.03rem;
}
.footer .footer-top .footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
.footer .footer-top .footer-links .link-col .col-title-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  margin-bottom: 0.2rem;
}
.footer .footer-top .footer-links .link-col .col-title {
  display: block;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #fff;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.01rem;
}
.footer .footer-top .footer-links .link-col .icon-arrow {
  width: 0.16rem;
  height: 0.16rem;
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer-top .footer-links .link-col .icon-arrow path {
  stroke: #fff;
}
.footer .footer-top .footer-links .link-col.active .icon-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.footer .footer-top .footer-links .link-col .col-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;
  gap: 0.1rem;
}
.footer .footer-top .footer-links .link-col .col-list li a {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.01rem;
}
.footer .footer-top .footer-links .link-col .col-list li a:hover {
  color: #fff;
}
.footer .footer-top .footer-subscribe {
  width: 4.4rem;
}
.footer .footer-top .footer-subscribe .subscribe-title {
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #fff;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01rem;
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group {
  display: -webkit-box;
  display: -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;
  border-bottom: 0.01rem solid #D8D8D8;
  padding-bottom: 0.12rem;
  margin-bottom: 0.2rem;
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #fff;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group .btn-submit {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #fff;
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer-top .footer-subscribe .subscribe-form .input-group .btn-submit:hover {
  opacity: 0.7;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.12rem;
  cursor: pointer;
  position: relative;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group input:checked ~ .checkmark {
  background-color: transparent;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group input:checked ~ .checkmark::after {
  display: block;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .checkmark {
  position: relative;
  top: 0.02rem;
  width: 0.18rem;
  height: 0.18rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.6);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.05rem;
  top: 0.01rem;
  width: 0.04rem;
  height: 0.08rem;
  border: solid #fff;
  border-width: 0 0.02rem 0.02rem 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .text {
  font-size: 0.12rem;
  line-height: 0.15rem;
  color: rgb(255, 255, 255);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  max-width: 3.87rem;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .text a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .text a:hover {
  color: #fff;
}
.footer .footer-top .footer-subscribe .subscribe-form .checkbox-group:hover .checkmark {
  border-color: #fff;
}
.footer .footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.footer .footer-bottom .copyright {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgb(255, 255, 255);
  font-family: var(--sk-font-Montserrat-Medium);
  font-weight: 500;
  letter-spacing: 0.01rem;
}
.footer .footer-bottom .social-links {
  display: -webkit-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.6rem;
  position: absolute;
  left: 51%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer .footer-bottom .social-links .social-icon {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.8;
}
.footer .footer-bottom .social-links .social-icon img {
  width: 100%;
  height: 100%;
}
.footer .footer-bottom .social-links .social-icon img path {
  fill: #fff;
}
.footer .footer-bottom .social-links .social-icon:hover {
  opacity: 1;
  -webkit-transform: translateY(-0.02rem);
      -ms-transform: translateY(-0.02rem);
          transform: translateY(-0.02rem);
}
.footer .footer-bottom .legal-links {
  display: -webkit-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.31rem;
}
.footer .footer-bottom .legal-links a {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sk-font-Montserrat-Regular);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.01rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer-bottom .legal-links a:hover {
  color: #fff;
}
.footer {
  /* 移动端适配 */
}
@media screen and (max-width: 800px) {
  .footer {
    padding: 0.8rem 0 0.45rem 0;
  }
  .footer .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.93rem;
    margin-bottom: 0.71rem;
  }
  .footer .footer-top .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.18rem;
  }
  .footer .footer-top .footer-links .link-col {
    padding-bottom: 0.32rem;
  }
  .footer .footer-top .footer-links .link-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer .footer-top .footer-links .link-col .col-title-btn {
    margin-bottom: 0;
  }
  .footer .footer-top .footer-links .link-col .col-title {
    margin-bottom: 0;
    font-size: 0.28rem;
    line-height: 0.36rem;
  }
  .footer .footer-top .footer-links .link-col .icon-arrow {
    display: block;
    width: 0.24rem;
    height: 0.24rem;
  }
  .footer .footer-top .footer-links .link-col .col-list {
    display: none;
    padding-top: 0.2rem;
    gap: 0.2rem;
  }
  .footer .footer-top .footer-links .link-col .col-list li a {
    font-size: 0.24rem;
    line-height: 0.56rem;
  }
  .footer .footer-top .footer-subscribe {
    width: 100%;
  }
  .footer .footer-top .footer-subscribe .subscribe-title {
    font-size: 0.28rem;
    line-height: 0.42rem;
    margin-bottom: 0.49rem;
  }
  .footer .footer-top .footer-subscribe .subscribe-form .input-group {
    padding-bottom: 0.2rem;
    margin-bottom: 0.21rem;
  }
  .footer .footer-top .footer-subscribe .subscribe-form .input-group input, .footer .footer-top .footer-subscribe .subscribe-form .input-group .btn-submit {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
  .footer .footer-top .footer-subscribe .subscribe-form .checkbox-group {
    gap: 0.2rem;
    width: 100%;
  }
  .footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .checkmark {
    width: 0.24rem;
    height: 0.24rem;
    top: 0.04rem;
  }
  .footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .checkmark::after {
    left: 0.06rem;
    top: 0.02rem;
    width: 0.06rem;
    height: 0.12rem;
    border-width: 0 0.03rem 0.03rem 0;
  }
  .footer .footer-top .footer-subscribe .subscribe-form .checkbox-group .text {
    font-size: 0.22rem;
    line-height: 0.32rem;
    width: 100%;
    max-width: unset;
  }
  .footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
    position: static;
  }
  .footer .footer-bottom .social-links {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    gap: 0.9rem;
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: auto;
  }
  .footer .footer-bottom .social-links .social-icon {
    width: 0.4rem;
    height: 0.4rem;
  }
  .footer .footer-bottom .legal-links {
    -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.32rem;
    margin-top: 0.6rem;
  }
  .footer .footer-bottom .legal-links a {
    font-size: 0.2rem;
    line-height: 0.24rem;
  }
  .footer .footer-bottom .copyright {
    text-align: center;
    font-size: 0.24rem;
    line-height: 0.36rem;
    margin-top: -0.09rem;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    color: rgb(255, 255, 255);
  }
}

/* footer部分end */
/* 全球网点页面start */
/* 产品列表页面start */
.product-list-page .product-list-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .product-list-page .product-list-banner {
    height: 10.08rem;
  }
}
.product-list-page .product-list-banner .banner-box {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0.6rem;
  left: 0.8rem;
  padding: 0;
}
.product-list-page .product-list-banner .banner-box .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-list-page .product-list-banner .banner-box .wal {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .product-list-page .product-list-banner .banner-box .wal {
    bottom: 0.4rem;
  }
}
.product-list-page .description-section {
  padding: 1rem 0;
}
@media screen and (max-width: 800px) {
  .product-list-page .description-section {
    padding: 1.2rem 0;
  }
}
.product-list-page .description-section .description-box {
  max-width: 10rem;
  margin: 0 auto;
}
.product-list-page .description-section .description-box .t-text-description {
  font-size: 0.2rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 800px) {
  .product-list-page .description-section .description-box .t-text-description {
    font-size: 0.28rem;
  }
}
.product-list-page .collection-list-section {
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .product-list-page .collection-list-section {
    padding-bottom: 1.19rem;
  }
}
.product-list-page .collection-list-section .collection-list {
  gap: 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-list-page .collection-list-section .collection-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3rem;
  }
}
.product-list-page .collection-list-section .collection-card {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 800px) {
  .product-list-page .collection-list-section .collection-card {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.product-list-page .collection-list-section .collection-card .img-box {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.product-list-page .collection-list-section .collection-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-list-page .collection-list-section .collection-card .info-box {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .product-list-page .collection-list-section .collection-card .info-box {
    left: 0;
    width: 100%;
    text-align: center;
  }
}
.product-list-page .collection-list-section .collection-card .info-box .title {
  font-size: 0.32rem;
  font-family: var(--sk-font-ARCHIA-Regular);
  font-weight: 400;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .product-list-page .collection-list-section .collection-card .info-box .title {
    font-size: 0.4rem;
  }
}
.product-list-page .collection-list-section .collection-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  z-index: 1;
}
.product-list-page .collection-list-section .collection-card:hover .img-box {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 800px) {
  .product-list-page .product-list-banner .banner-box {
    left: 0;
    width: 100%;
    text-align: center;
  }
  .product-list-page .product-list-banner .banner-box .u-title-lg {
    font-size: 0.56rem;
    line-height: 0.72rem;
    max-width: 3.25rem;
    margin: 0 auto;
    text-align: center;
  }
  .product-list-page .product-list-banner .__crumb {
    color: rgba(255, 255, 255, 0.4);
  }
  .product-list-page .product-list-banner .__crumb .ul .li {
    color: rgba(255, 255, 255, 0.4);
  }
  .product-list-page .product-list-banner .__crumb .ul .li:last-child {
    color: rgb(255, 255, 255);
  }
}
/* 产品列表页面end */
@media screen and (max-width: 800px) {
  .sunshine-collection-page main, .product-detail-sec-page main,
  .product-detail-micro-page main, .master-collection-page main {
    padding-bottom: 1.2rem;
  }
}
.sunshine-collection-page .series-card:hover .img-box, .product-detail-sec-page .series-card:hover .img-box,
.product-detail-micro-page .series-card:hover .img-box, .master-collection-page .series-card:hover .img-box {
  background-color: #f0efed;
}
@media screen and (min-width: 801px) {
  .sunshine-collection-page .series-card:hover .img-box .img, .product-detail-sec-page .series-card:hover .img-box .img,
  .product-detail-micro-page .series-card:hover .img-box .img, .master-collection-page .series-card:hover .img-box .img {
    opacity: 0;
  }
}
@media screen and (min-width: 801px) {
  .sunshine-collection-page .series-card:hover .img-box .img-hover, .product-detail-sec-page .series-card:hover .img-box .img-hover,
  .product-detail-micro-page .series-card:hover .img-box .img-hover, .master-collection-page .series-card:hover .img-box .img-hover {
    opacity: 1;
  }
}

.firstScreenAnimate_si {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
.firstScreenAnimate_si .top,
.firstScreenAnimate_si .bottom {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  -webkit-transform: scaleY(1.01);
      -ms-transform: scaleY(1.01);
          transform: scaleY(1.01);
}
.firstScreenAnimate_si .mid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.firstScreenAnimate_si .mid .left,
.firstScreenAnimate_si .mid .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  -webkit-transform: scaleY(1.01);
      -ms-transform: scaleY(1.01);
          transform: scaleY(1.01);
  margin-right: -0.1rem;
  margin-left: -0.1rem;
}
.firstScreenAnimate_si .mid .center {
  position: relative;
}
.firstScreenAnimate_si .mid .center .black {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.firstScreenAnimate_si .mid .center .a_logo {
  width: 2.4rem;
  height: auto;
}
.firstScreenAnimate_si .mid .center .a_text {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  .firstScreenAnimate_si .mid .center .a_logo {
    width: 4rem;
    height: auto;
  }
}

.product-detail-micro-page .product-info-section._sp .right-details .model_section {
  margin-top: 0.37rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top {
  display: -webkit-box;
  display: -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;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .label {
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 0.17rem;
  letter-spacing: 0.01rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.14rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .prev-btn,
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .next-btn {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .prev-btn .ar_iocn,
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .next-btn .ar_iocn {
  width: 100%;
  height: 100%;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .prev-btn .ar_iocn path,
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .next-btn .ar_iocn path {
  fill: #000000;
  fill-opacity: 1;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .prev-btn.swiper-button-disabled .ar_iocn path,
.product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .next-btn.swiper-button-disabled .ar_iocn path {
  fill: #000000;
  fill-opacity: 0.6;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select {
  margin-top: 0.23rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select .swiper-wrapper .swiper-slide {
  cursor: pointer;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select .swiper-wrapper .swiper-slide img {
  width: 1.32rem;
  height: 1.32rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select .swiper-wrapper .swiper-slide .mitem_name {
  margin-top: 0.1rem;
  font-size: 0.14rem;
  color: #000000;
  line-height: 0.17rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select .swiper-wrapper .swiper-slide.active img {
  border: 0.01rem solid #000000;
}
.product-detail-micro-page .product-info-section._sp .right-details .pcolor_section {
  margin-top: 0.44rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .label {
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 0.17rem;
  letter-spacing: 0.01rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .color_list {
  margin-top: 0.21rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.15rem;
}
.product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .color_list .color_item {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  overflow: hidden;
}
.product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .color_list .color_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .product-detail-micro-page .product-info-section._sp .right-details .model_section {
    margin-top: 0.96rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .model_section .top .label {
    font-size: 0.24rem;
    line-height: 0.29rem;
    letter-spacing: 0.02rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.18rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .prev-btn,
  .product-detail-micro-page .product-info-section._sp .right-details .model_section .top .nav-btn .next-btn {
    width: 0.3rem;
    height: 0.3rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select {
    margin-top: 0.2rem;
    overflow: hidden;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select .swiper-wrapper .swiper-slide img {
    width: 2rem;
    height: 2rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .model_section .model_select .swiper-wrapper .swiper-slide .mitem_name {
    margin-top: 0.2rem;
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .pcolor_section {
    margin-top: 0.56rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .label {
    font-size: 0.24rem;
    line-height: 0.29rem;
    letter-spacing: 0.02rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .color_list {
    margin-top: 0.23rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .color_list .color_item {
    width: 0.48rem;
    height: 0.48rem;
  }
  .product-detail-micro-page .product-info-section._sp .right-details .pcolor_section .color_list .color_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
