@charset "UTF-8";
@font-face {
  font-family: "Gilroy-Medium";
  src: url(../fonts/Gilroy-Medium-2.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.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: .64rem;
  position: relative;
  width: 4rem;
}
.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.32rem;
}
.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.18rem;
}
.sk_select .-select-front::after {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  background: url(../images/target/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.16rem;
  padding: 0.18rem 0.04rem 0.21rem 0.2rem;
}
.sk_select .-select-layer .-inner .-scroll {
  max-height: 4rem;
  overflow-y: auto;
}
.sk_select .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.12rem;
  font-size: 0.18rem;
  color: #1E1A34;
  font-family: var(--sk-font-Medium);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.sk_select .-select-layer .-inner dl dd:hover {
  color: rgba(30, 26, 52, 0.8);
}
@media screen and (max-width: 800px) {
  .sk_select {
    --h: .9rem;
    border-radius: 0.45rem;
    width: 100%;
  }
  .sk_select .-select-front {
    padding: 0.33rem 0.2rem 0.33rem 0.3rem;
    height: var(--h);
    border-radius: 0.45rem 0.45rem 0.45rem 0.45rem;
  }
  .sk_select .-select-front input {
    font-size: 0.26rem;
  }
  .sk_select .-select-front::after {
    width: 0.42rem;
    height: 0.42rem;
  }
  .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);
  -webkit-backdrop-filter: blur(0.15rem);
          backdrop-filter: blur(0.15rem);
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-sk-nav.-top0 {
  top: 0;
}
.-sk-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 0.6rem;
}
.-sk-nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.64rem;
}
.-sk-nav ul li:last-child {
  margin-right: 0;
}
.-sk-nav ul li.on a {
  color: #000;
  font-family: var(--sk-font-Medium);
}
.-sk-nav ul li.on a::before {
  opacity: 1;
  visibility: visible;
}
.-sk-nav ul li a {
  position: relative;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0.18rem 0;
}
.-sk-nav ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  width: 100%;
  height: 0.01rem;
  background: -webkit-linear-gradient(left, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
  background: linear-gradient(to right, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 800px) {
  .-sk-nav ul li a:hover {
    color: #000000;
  }
}
@media screen and (max-width: 800px) {
  .-sk-nav ul {
    position: relative;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 1rem;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 0.4rem;
  }
  .-sk-nav ul li {
    margin-right: 0.7rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .-sk-nav ul li a {
    position: relative;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.24rem;
    line-height: 0.24rem;
    padding: 0.38rem 0;
  }
  .-sk-nav ul li a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 100%;
    height: 2px;
    background: -webkit-linear-gradient(left, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
    background: linear-gradient(to right, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
    opacity: 0;
    visibility: hidden;
  }
}

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

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

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

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

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

body {
  font-family: var(--sk-font-Medium);
  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-Medium);
}

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

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

@media screen and (max-width: 1700px) {
  body {
    font-size: 16px;
  }

  html {
    font-size: 94px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }

  html {
    font-size: 82px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 68px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 70px;
  }
}
@media screen and (min-width: 800px) {
  .pc-show {
    display: block;
  }

  .phone-show {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 72px;
  }

  .wal {
    width: 100%;
    padding: 0 0.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;
  }
}
@-webkit-keyframes icon-forward {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes icon-forward {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
  25.1% {
    opacity: 0;
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0.2rem 0.28rem 0;
  width: 100%;
}
.g-header .g-head {
  border-radius: 0.32rem;
  height: 0.64rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 5;
  background: rgba(30, 26, 52, 0.6);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.g-header .g-head .g-head-main {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .logo-box {
  padding-left: 0.4rem;
  position: relative;
  z-index: 10;
}
.g-header .g-head .g-head-main .logo-box .img {
  width: 1.4rem;
}
.g-header .g-head .g-head-main .center-nav {
  margin-left: 0.77rem;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.g-header .g-head .g-head-main .center-nav.hide {
  opacity: 0;
  visibility: hidden;
}
.g-header .g-head .g-head-main .center-nav .center-list {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.g-header .g-head .g-head-main .center-nav .center-list.pro-box {
  opacity: 0;
  -webkit-transform: translateY(-100%) rotateX(90deg) translateZ(-0.32rem);
          transform: translateY(-100%) rotateX(90deg) translateZ(-0.32rem);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item {
  height: 100%;
  margin-left: 0.64rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item:first-child {
  margin-left: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item:hover .a, .g-header .g-head .g-head-main .center-nav .center-list .nav-item.on .a {
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .a {
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(255, 255, 255, 0.6);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .a.on {
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer {
  max-height: 80vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #1E1A34;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  border-radius: 0.32rem 0.32rem;
  height: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 0.6rem);
  object-position: center bottom;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp {
  position: relative;
  z-index: 10;
  margin-top: 0.6rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products {
  padding: 0.44rem 3.43rem 0.29rem 3.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 76vh;
  overflow-y: auto;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #999999;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products::-webkit-scrollbar-thumb:vertical {
  background-color: #999999;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products::-webkit-scrollbar-width {
  width: 0.08rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .left-cell {
  width: 3.29rem;
  padding-right: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .left-cell .pro-class {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  margin-bottom: 0.24rem;
  opacity: 0.5;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .left-cell .pro-class.on {
  opacity: 1;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .left-cell .pro-class.on .svg {
  display: block;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .left-cell .pro-class .txt {
  font-size: 0.24rem;
  line-height: 0.28rem;
  margin-right: 0.12rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .left-cell .pro-class .svg {
  width: 0.22rem;
  height: 0.22rem;
  display: none;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .left-cell .pro-class .svg path {
  fill: #fff;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: none;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box {
  width: calc(50% - 0.35rem);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .class-box {
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .class-box .class-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;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .class-box .class-link .calss-text {
  font-size: 0.2rem;
  line-height: 0.24rem;
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .class-box .class-link .img-box {
  margin-left: 0.11rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .class-box .class-link .img-box .svg {
  width: 0.16rem;
  height: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .class-box .class-link .img-box .svg path {
  fill: #FFFFFF;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .class-box .class-link:hover .img-box .svg {
  -webkit-animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: icon-forward 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .pro_wrapper {
  margin-top: 0.3rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .pro_wrapper .pro-card {
  margin-right: 0;
  width: 100%;
  margin-bottom: 0.5rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .pro_wrapper .pro-card .img-box {
  width: 3.33rem;
  height: 1.76rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .pro_wrapper .pro-card .img-box .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .pro_wrapper .pro-card .tag-text {
  text-align: center;
  color: #FFFFFF;
  margin-top: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list.col2 .item-box .pro_wrapper .pro-card .name {
  margin-top: 0.07rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list .pro-card {
  width: calc((100% - 2.84rem) / 3);
  margin-right: 1.42rem;
  margin-bottom: 0.38rem;
  display: -webkit-box;
  display: -webkit-flex;
  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;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list .pro-card:nth-child(3n) {
  margin-right: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list .pro-card .img-box {
  height: 1.53rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list .pro-card .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__products .rigth-pro-list .pro-card .name {
  color: #fff;
  margin-top: 0.18rem;
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.21rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__solution {
  padding: 0.21rem 0.4rem 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__solution .left-txt {
  color: #FFFFFF;
  margin-top: 0.3rem;
  width: 5rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__solution .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__solution .card-list .card-box {
  margin-left: 0.2rem;
  display: block;
  width: 5rem;
  height: 2.8rem;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  overflow: hidden;
  position: relative;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__solution .card-list .card-box:hover .bg-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__solution .card-list .card-box .bg-img {
  height: 100%;
  width: 100%;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__solution .card-list .card-box .tit {
  position: absolute;
  bottom: 0.2rem;
  left: 0.3rem;
  color: #FFFFFF;
  font-size: 0.24rem;
  line-height: 0.28rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__link-list {
  padding-top: 0.22rem;
  padding-bottom: 0.5rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__link-list .link {
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.16rem;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__link-list .link:last-child {
  margin-bottom: 0;
}
.g-header .g-head .g-head-main .center-nav .center-list .nav-item .layer .layer__wp .layer__link-list .link:hover {
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .g-head-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.g-header .g-head .g-head-main .g-head-right .search-language {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-header .g-head .g-head-main .g-head-right .search-language.hide {
  display: none;
}
.g-header .g-head .g-head-main .g-head-right .search-language .search-box {
  cursor: pointer;
}
.g-header .g-head .g-head-main .g-head-right .search-language .search-box .svg {
  width: 0.22rem;
  height: 0.22rem;
}
.g-header .g-head .g-head-main .g-head-right .search-language .search-box .svg path {
  fill: #fff;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box {
  margin-left: 0.32rem;
  cursor: pointer;
  position: relative;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box .svg {
  width: 0.22rem;
  height: 0.22rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box .svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #fff;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box .language-layer {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box .language-layer .layer__wp {
  min-width: 1.6rem;
  padding: 0.2rem 0.3rem 0.22rem;
  background: #1E1A34;
  display: -webkit-box;
  display: -webkit-flex;
  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;
  border-radius: 0.16rem;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box .language-layer .layer__wp .language-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.16rem;
  line-height: 0.19rem;
  margin-bottom: 0.12rem;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box .language-layer .layer__wp .language-link:last-child {
  margin-bottom: 0;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box .language-layer .layer__wp .language-link:hover, .g-header .g-head .g-head-main .g-head-right .search-language .language-box .language-layer .layer__wp .language-link.on {
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .g-head-right .search-language .language-box:hover .language-layer {
  opacity: 1;
  visibility: visible;
}
.g-header .g-head .g-head-main .g-head-right .integ-o-s {
  cursor: pointer;
  height: 0.48rem;
  padding: 0 0.25rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  margin: 0.08rem 0.08rem 0.08rem 0.36rem;
  min-width: auto;
}
.g-header .g-head .g-head-main .g-head-right .integ-o-s .btn-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .g-head-right .integ-o-s .btn-txt .svg {
  width: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .integ-o-s .btn-txt .svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .g-head-right .integ-o-s .btn-txt .txt {
  margin-left: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
}
.g-header .g-head .g-head-main .g-head-right .integ-o-s:hover .btn-txt .svg path {
  fill: #fff;
}
.g-header .g-head .g-head-main .search-layer {
  max-height: 80vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #1E1A34;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  border-radius: 0.32rem 0.32rem;
  height: 0;
}
.g-header .g-head .g-head-main .search-layer .layer-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 0.6rem);
  object-position: center bottom;
}
.g-header .g-head .g-head-main .search-layer .layer__wp {
  position: relative;
  z-index: 10;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box {
  height: 0.64rem;
  margin: 0 auto;
  width: 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;
  position: relative;
  z-index: 10;
  padding: 0 0.5rem;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.01rem;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box .svg {
  width: 0.22rem;
  height: 0.22rem;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box .svg path {
  fill: rgba(255, 255, 255, 0.5);
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box input {
  color: #fff;
  padding: 0 0.15rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  caret-color: #fff;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.g-header .g-head .g-head-main .search-layer .layer__wp .input-box .search-btn {
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .close-svg {
  cursor: pointer;
  position: absolute;
  width: 0.22rem;
  height: 0.22rem;
  right: -2.4rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links {
  padding: 0.37rem 5.31rem 0.61rem;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .label {
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: rgba(255, 255, 255, 0.5);
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .link-list {
  margin-top: 0.18rem;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .link-list .link-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;
  margin-bottom: 0.12rem;
  --color: #fff;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .link-list .link-box:last-child {
  margin-bottom: 0;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .link-list .link-box .txt {
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: #FFFFFF;
  margin-right: 0.1rem;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .link-list .link-box .svg {
  opacity: 0;
  visibility: hidden;
  height: 0.18rem;
  width: 0.18rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .link-list .link-box .svg path {
  fill: #fff;
}
.g-header .g-head .g-head-main .search-layer .layer__wp .quick-links .link-list .link-box:hover .svg {
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head-phone {
  border-radius: 0.54rem;
  height: 1.08rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 5;
  background: rgba(30, 26, 52, 0.6);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.g-header .g-head-phone .g-head-main {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.4rem;
}
.g-header .g-head-phone .g-head-main .logo {
  width: 2rem;
  display: none;
}
.g-header .g-head-phone .g-head-main .logo.show {
  display: block;
}
.g-header .g-head-phone .g-head-main .logo .img {
  width: 2rem;
}
.g-header .g-head-phone .g-head-main .bark-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;
  color: #fff;
  display: none;
}
.g-header .g-head-phone .g-head-main .bark-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head-phone .g-head-main .bark-box .svg {
  height: 0.25rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.g-header .g-head-phone .g-head-main .bark-box .svg path {
  fill: #fff;
}
.g-header .g-head-phone .g-head-main .bark-box .txt {
  margin-left: 0.19rem;
  font-size: 0.28rem;
  line-height: 0.33rem;
}
.g-header .g-head-phone .g-head-main .search-input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0.4rem 0 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;
  display: none;
}
.g-header .g-head-phone .g-head-main .search-input.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head-phone .g-head-main .search-input .search-svg {
  width: 0.44rem;
}
.g-header .g-head-phone .g-head-main .search-input .search-svg path {
  fill: rgba(255, 255, 255, 0.5);
}
.g-header .g-head-phone .g-head-main .search-input input {
  color: #fff;
  caret-color: white;
  padding: 0 0.24rem;
  font-size: 0.28rem;
}
.g-header .g-head-phone .g-head-main .search-input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-header .g-head-phone .g-head-main .search-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-header .g-head-phone .g-head-main .search-input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-header .g-head-phone .g-head-main .search-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-header .g-head-phone .g-head-main .search-input .search-btn {
  color: #fff;
  font-size: 0.28rem;
  line-height: 0.33rem;
}
.g-header .g-head-phone .g-head-main .right-search-tree {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head-phone .g-head-main .right-search-tree .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: none;
}
.g-header .g-head-phone .g-head-main .right-search-tree .search-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head-phone .g-head-main .right-search-tree .search-box .img {
  width: 0.38rem;
}
.g-header .g-head-phone .g-head-main .right-search-tree .search-box .img path {
  fill: #fff;
}
.g-header .g-head-phone .g-head-main .right-search-tree .tree-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0.48rem;
  display: none;
}
.g-header .g-head-phone .g-head-main .right-search-tree .tree-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head-phone .g-head-main .right-search-tree .tree-box .img {
  width: 0.44rem;
}
.g-header .g-head-phone .g-head-main .right-search-tree .close-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: none;
}
.g-header .g-head-phone .g-head-main .right-search-tree .close-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head-phone .g-head-main .right-search-tree .close-box .img {
  width: 0.38rem;
}
.g-header .g-head-phone .g-head-main .right-search-tree .close-box .img path {
  fill: #fff;
}
.g-header .g-head-phone .g-head-main .product-select {
  display: none;
}
.g-header .head-phone-nav {
  position: fixed;
  left: 0.2rem;
  top: 1.48rem;
  height: calc(100vh - 1.68rem);
  width: calc(100vw - 0.4rem);
  background: #1E1A34;
  z-index: 10;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  height: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
  opacity: 0;
}
.g-header .head-phone-nav.show {
  height: calc(100vh - 1.68rem);
  opacity: 1;
}
.g-header .head-phone-nav .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.24rem;
  z-index: -1;
}
.g-header .head-phone-nav .nav-list-box {
  height: 100%;
  color: #fff;
  padding: 0.79rem 0.4rem 0.4rem;
  position: relative;
}
.g-header .head-phone-nav .nav-list-box .nav-box {
  margin-bottom: 0.49rem;
  color: #fff;
  display: block;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .txt {
  font-size: 0.4rem;
  line-height: 0.47rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .img {
  position: relative;
  z-index: -1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0.3rem;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .img path {
  fill: #fff;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .lang-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .lang-left .svg-go {
  width: 0.42rem;
  height: 0.42rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .lang-left .svg-go path {
  fill: #fff;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .lang-left .left-txt {
  margin-left: 0.19rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .lang-left .left-txt .label {
  font-size: 0.36rem;
  line-height: 0.42rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-cell .lang-left .left-txt .value {
  margin-top: 0.1rem;
  font-size: 0.28rem;
  line-height: 0.33rem;
  color: rgba(255, 255, 255, 0.6);
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: #1E1A34;
  border-radius: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box.show {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .link-link {
  padding: 0.79rem 0.4rem 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;
  margin-bottom: 0.53rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .link-link .link-box {
  color: #fff;
  margin-bottom: 0.53rem;
  font-size: 0.36rem;
  line-height: 0.42rem;
}
.g-header .head-phone-nav .nav-list-box .nav-box .nav-two-box .link-link .link-box.on {
  color: rgba(255, 255, 255, 0.6);
}
.g-header .head-phone-nav .nav-list-box .lang-box {
  margin-top: 0.84rem;
}
.g-header .head-phone-nav .nav-list-box .integ-o-s {
  position: absolute;
  width: calc(100% - 0.8rem);
  left: 0.36rem;
  bottom: 0.4rem;
  height: 0.9rem;
  background: #FFFFFF;
  border-radius: 0.45rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-header .head-phone-nav .nav-list-box .integ-o-s .svg {
  width: 0.39rem;
}
.g-header .head-phone-nav .nav-list-box .integ-o-s .txt {
  margin-left: 0.16rem;
  color: #1E1A34;
  font-size: 0.28rem;
  line-height: 0.32rem;
}
.g-header .head-search-layer {
  position: fixed;
  left: 0.2rem;
  top: 1.48rem;
  width: calc(100vw - 0.4rem);
  background: #1E1A34;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  padding: 0.68rem 0.4rem 1.18rem;
  opacity: 0;
  z-index: 20;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header .head-search-layer.show {
  opacity: 1;
  visibility: visible;
}
.g-header .head-search-layer .label {
  font-size: 0.28rem;
  line-height: 0.33rem;
  color: rgba(255, 255, 255, 0.5);
}
.g-header .head-search-layer .link-list {
  margin-top: 0.34rem;
}
.g-header .head-search-layer .link-list .link-box {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.24rem;
}
.g-header .head-search-layer .link-list .link-box:last-child {
  margin-bottom: 0;
}
.g-header .head-search-layer .link-list .link-box .txt {
  margin-right: 0.16rem;
}
.g-header .head-search-layer .link-list .link-box .img {
  width: 0.22rem;
}
.g-header .head-search-layer .link-list .link-box .img path {
  fill: #fff;
}
.g-header .dropdown-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(18, 22, 34, 0.3);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.g-header.dialog__wrapper .dropdown-wrapper {
  opacity: 1;
  visibility: visible;
}
.g-header.dialog__wrapper .g-head .g-head-main .search-layer .layer__wp .close-svg {
  opacity: 1;
  visibility: visible;
}
.g-header.hide .g-head .g-head-main .center-nav .center-list.nav-box {
  -webkit-transform: rotateX(-90deg) translateZ(-0.32rem);
          transform: rotateX(-90deg) translateZ(-0.32rem);
}
.g-header.hide .g-head .g-head-main .center-nav .center-list.pro-box {
  opacity: 1;
  -webkit-transform: translateY(-100%) rotateX(0) translateZ(-0.32rem);
          transform: translateY(-100%) rotateX(0) translateZ(-0.32rem);
}

.topA,
.messageA {
  position: fixed;
  right: 0.2rem;
  bottom: 0.2rem;
  z-index: 40;
  background: #302D43;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  box-shadow: 0 -3px 10px -1px rgba(210, 97, 95, 0.4), 0 3px 10px -1px rgba(138, 80, 125, 0.4), -3px 0 10px -1px rgba(103, 77, 160, 0.4), 3px 0 10px -1px rgba(103, 108, 196, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topA.show,
.messageA.show {
  opacity: 1;
  visibility: visible;
}
.topA:hover,
.messageA:hover {
  box-shadow: 0 -3px 10px -1px rgba(210, 97, 95, 0.8), 0 3px 10px -1px rgba(138, 80, 125, 0.8), -3px 0 10px -1px rgba(103, 77, 160, 0.8), 3px 0 10px -1px rgba(103, 108, 196, 0.8);
}
.topA .svg,
.messageA .svg {
  width: 0.14rem;
  height: 0.14rem;
}
.topA .svg path,
.messageA .svg path {
  fill: #fff;
}

.messageA {
  bottom: 0.8rem;
}

.g-text-hover {
  --color: var(--fcolor-black);
}
.g-text-hover:hover .tent-lint {
  background-size: 100% 100%;
}
@media screen and (max-width: 800px) {
  .g-text-hover:hover .tent-lint {
    background-size: 0 100%;
  }
}
.g-text-hover .tent-lint {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0, #0b5ace));
  background-image: -webkit-linear-gradient(top, transparent 95%, var(--color) 0);
  background-image: linear-gradient(to bottom, transparent 95%, var(--color) 0);
  background-repeat: no-repeat;
  background-size: 0 100%;
  text-decoration: none;
  -webkit-transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
  transition: background-size 0.36s cubic-bezier(0.32, 0.17, 0, 1);
}

.hry__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 0.64rem;
  padding: 0 0.5rem;
  background: #fff;
  border-radius: 0.32rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.18rem;
  line-height: 0.32rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hry__btn.black {
  background: #1E1A34;
}
@media screen and (max-width: 800px) {
  .hry__btn {
    height: 0.9rem;
    border-radius: 0.45rem;
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
}
.hry__btn.arrow .btn-txt {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(0.15rem);
      -ms-transform: translateX(0.15rem);
          transform: translateX(0.15rem);
}
.hry__btn .btn-txt {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hry__btn .btn-txt .hry__btn__svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 0.16rem;
  height: 0.16rem;
  opacity: 0;
  margin-left: 0.14rem;
}
.hry__btn .btn-txt .hry__btn__svg path {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hry__btn::before {
  -webkit-filter: blur(15px);
          filter: blur(15px);
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: -webkit-linear-gradient(321deg, #D2615F -95%, #8A507D 42%, #674DA0 35%, #676CC4 147%);
  background: linear-gradient(129deg, #D2615F -95%, #8A507D 42%, #674DA0 35%, #676CC4 147%);
}
@media screen and (min-width: 800px) {
  .hry__btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
  }
  .hry__btn:hover.black {
    background: rgba(30, 26, 52, 0.3) !important;
  }
  .hry__btn:hover .btn-txt {
    color: #fff;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .hry__btn:hover .btn-txt .hry__btn__svg {
    opacity: 1;
  }
  .hry__btn:hover::before {
    opacity: 1;
  }
}

.g-footer {
  background: #121622;
  border-radius: 0.16rem 0.16rem 0rem 0rem;
  position: relative;
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .g-footer {
    overflow: hidden;
    border-radius: 0.24rem 0.24rem 0rem 0rem;
  }
}
.g-footer .bg-img {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  border-radius: 0.16rem 0.16rem 0rem 0rem;
}
@media screen and (max-width: 800px) {
  .g-footer .bg-img {
    border-radius: 0.24rem 0.24rem 0rem 0rem;
  }
}
.g-footer .footer-content {
  position: relative;
  z-index: 10;
}
.g-footer .footer-content .content-main {
  padding: 1.38rem 1rem 0.35rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main {
    padding: 1.32rem 0.3rem 0.32rem;
    overflow: hidden;
  }
}
.g-footer .footer-content .content-main .tit-email {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g-footer .footer-content .content-main .tit-email .tit {
  width: 6rem;
  font-size: 0.96rem;
  line-height: 1.06rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .tit {
    width: 100%;
    font-size: 0.96rem;
    line-height: 1rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box {
  width: 6.22rem;
  padding-top: 0.22rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box {
    width: 100%;
    padding-top: 0.61rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .label {
  font-size: 0.24rem;
  line-height: 0.28rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .label {
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn {
  margin-top: 0.31rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .input-btn {
    margin-top: 0.4rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 0.1rem;
  padding: 0 0.2rem;
  font-size: 0.16rem;
  height: 0.64rem;
  border-radius: 0.1rem;
  caret-color: white;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .input-btn input {
    height: 0.9rem;
    padding: 0 0.3rem;
    font-size: 0.28rem;
    border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn .btn {
  height: 0.64rem;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.18rem;
  line-height: 0.21rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.29rem;
  border-radius: 0.1rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .input-btn .btn {
    height: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0 0.36rem;
    border-radius: 0.16rem;
    font-size: 0.28rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .input-btn .btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .check-by {
    margin-top: 0.3rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by .check-box {
  width: 0.2rem;
  height: 0.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.12rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .check-by .check-box {
    width: 0.36rem;
    height: 0.36rem;
    margin-right: 0.16rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by .check-box .check-img {
  height: 100%;
  width: 100%;
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by .check-box .check-img.true {
  display: none;
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by .check-box.on .check-img.true {
  display: block;
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by .check-box.on .check-img.false {
  display: none;
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by .txt {
  margin-top: 0.02rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .check-by .txt {
    margin-top: 0.04rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.g-footer .footer-content .content-main .tit-email .email-box .check-by .txt a {
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: #ffffff;
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .tit-email .email-box .check-by .txt a {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.g-footer .footer-content .content-main .logo-nav {
  margin-top: 2.03rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav {
    margin-top: 1.26rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g-footer .footer-content .content-main .logo-nav .logo-box {
  height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .logo-box {
    height: 0.66rem;
  }
}
.g-footer .footer-content .content-main .logo-nav .logo-box .logo-img {
  height: 100%;
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper {
    margin-top: 0.68rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li {
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li {
    margin-left: 0;
    margin-bottom: 0.45rem;
  }
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li:last-child {
    margin-bottom: 0;
  }
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-body {
    margin-top: 0;
    height: 0;
    overflow: hidden;
  }
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li.show .nav-body {
    height: auto;
    margin-top: 0.3rem;
  }
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li.show .nav-cell .expand .svg.false {
    display: block;
  }
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li.show .nav-cell .expand .svg.true {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell:nth-child(n+2) {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell:nth-child(n+2) {
    margin-top: 0.45rem;
  }
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell .label {
  color: #FFFFFF;
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell .label {
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell .expand {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell .expand .svg {
  height: 100%;
  width: 100%;
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell .expand .svg path {
  fill: #fff;
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-cell .expand .svg.false {
  display: none;
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-body {
  margin-top: 0.19rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-body {
    margin-top: 0;
    padding-left: 0.4rem;
  }
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-body .link-box {
  margin-bottom: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-body .link-box {
    margin-bottom: 0.24rem;
    color: #FFFFFF;
    font-size: 0.3rem;
    line-height: 0.36rem;
  }
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-body .link-box:hover {
  color: #FFFFFF;
}
.g-footer .footer-content .content-main .logo-nav .nav-wrapper .nav-li .nav-body .link-box:last-child {
  margin-bottom: 0;
}
.g-footer .footer-content .content-main .footer-bttom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.95rem;
  -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;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .footer-bttom {
    margin-top: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.g-footer .footer-content .content-main .footer-bttom .left-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;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .footer-bttom .left-link {
    margin-top: 0.14rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.g-footer .footer-content .content-main .footer-bttom .left-link .support_foot {
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.48rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .footer-bttom .left-link .support_foot {
    font-size: 0.24rem;
    line-height: 0.28rem;
    margin-left: 0.1rem;
  }
  .g-footer .footer-content .content-main .footer-bttom .left-link .support_foot::before {
    content: "|";
    margin-right: 0.1rem;
  }
}
.g-footer .footer-content .content-main .footer-bttom .left-link .support_foot:hover {
  color: #fff;
}
.g-footer .footer-content .content-main .footer-bttom .link-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  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) {
  .g-footer .footer-content .content-main .footer-bttom .link-icon {
    top: -1.52rem;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.g-footer .footer-content .content-main .footer-bttom .link-icon .icon-box {
  cursor: pointer;
  margin-right: 0.3rem;
  width: 0.2rem;
  height: 0.2rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .footer-bttom .link-icon .icon-box {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.5rem;
  }
}
.g-footer .footer-content .content-main .footer-bttom .link-icon .icon-box:last-child {
  margin-right: 0;
}
.g-footer .footer-content .content-main .footer-bttom .link-icon .icon-box .svg {
  height: 100%;
  width: 100%;
}
.g-footer .footer-content .content-main .footer-bttom .link-icon .icon-box .svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 800px) {
  .g-footer .footer-content .content-main .footer-bttom .link-icon .icon-box:hover .svg path {
    fill: #fff;
  }
}
.g-footer .footer-content .content-main .footer-bttom .link-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .footer-bttom .link-txt {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 102%;
  }
}
.g-footer .footer-content .content-main .footer-bttom .link-txt .link {
  margin-left: 0.48rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .g-footer .footer-content .content-main .footer-bttom .link-txt .link {
    margin-left: 0;
    font-size: 0.24rem;
    line-height: 0.28rem;
    position: relative;
  }
  .g-footer .footer-content .content-main .footer-bttom .link-txt .link::after {
    content: "|";
    margin: 0 0.08rem;
  }
  .g-footer .footer-content .content-main .footer-bttom .link-txt .link:last-child::after {
    display: none;
  }
}
.g-footer .footer-content .content-main .footer-bttom .link-txt .link:hover {
  color: #fff;
}
.g-footer .footer-logo-box {
  z-index: 10;
  position: relative;
  width: 100%;
  height: 2.04rem;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-logo-box {
    height: 0.8rem;
  }
}
.g-footer .footer-logo-box .footer-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.g-footer .footer-logo-box .footer-mask .footer-gradient {
  top: calc(var(--mouse-y) * 1px);
  left: calc(var(--mouse-x) * 1px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: -webkit-radial-gradient(center, circle, #d8d8d8 0%, rgba(216, 216, 216, 0) 100%);
  background: radial-gradient(circle at center, #d8d8d8 0%, rgba(216, 216, 216, 0) 100%);
  -webkit-filter: blur(1rem);
          filter: blur(1rem);
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .g-footer .footer-logo-box .footer-mask .footer-gradient {
    position: absolute;
    width: 25rem;
    height: 0.8rem;
    top: auto;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #d8d8d8;
    opacity: 1;
    -webkit-filter: blur(0.5rem);
            filter: blur(0.5rem);
  }
}

.cookie-set {
  position: fixed;
  z-index: 50;
  width: 6.4rem;
  background: #F7F7F6;
  border-radius: 0.16rem;
  padding: 0.23rem 0.2rem 0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
  left: 0.2rem;
  bottom: 0.2rem;
  display: none;
  color: var(--fcolor-black);
}
@media screen and (max-width: 800px) {
  .cookie-set {
    width: calc(100% - 0.4rem);
    padding: 0.4rem 0.3rem 0.3rem;
    border-radius: 0.24rem;
  }
}
.cookie-set.show {
  display: block;
}
.cookie-set .cookie-set-txt {
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(30, 26, 52, 0.8);
}
@media screen and (max-width: 800px) {
  .cookie-set .cookie-set-txt {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.cookie-set .cookie-set-txt a {
  color: #676CC4;
}
.cookie-set .cookie-set-footer {
  margin-top: 0.31rem;
  display: -webkit-box;
  display: -webkit-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) {
  .cookie-set .cookie-set-footer {
    margin-top: 0.48rem;
  }
}
.cookie-set .cookie-set-footer .cookie-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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1.5rem;
  padding: 0 0.2rem;
  border-radius: 0.2rem;
  border: 0.01rem solid #1E1A34;
  height: 0.4rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .cookie-set .cookie-set-footer .cookie-btn {
    height: 0.8rem;
    min-width: 2.2rem;
    border-radius: 0.4rem 0.4rem 0.4rem 0.4rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.cookie-set .cookie-set-footer .cookie-btn .svg {
  height: 0.16rem;
  width: 0.16rem;
}
@media screen and (max-width: 800px) {
  .cookie-set .cookie-set-footer .cookie-btn .svg {
    height: 0.28rem;
    width: 0.28rem;
  }
}
.cookie-set .cookie-set-footer .cookie-btn .txt {
  margin-left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .cookie-set .cookie-set-footer .cookie-btn .txt {
    margin-left: 0.15rem;
  }
}
.cookie-set .cookie-set-footer .cookie-btn:hover {
  background-color: #1E1A34;
  color: #fff;
}
.cookie-set .cookie-set-footer .cookie-btn:hover path {
  fill: #Fff;
}
.cookie-set .cookie-set-footer .rigth-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookie-set .cookie-set-footer .rigth-btns .btn {
  margin-left: 0.1rem;
  padding: 0 0.2rem;
  min-width: 1.5rem;
  font-size: 0.14rem;
  line-height: 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;
  height: 0.4rem;
  border: 0.01rem solid #1E1A34;
  border-radius: 0.2rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .cookie-set .cookie-set-footer .rigth-btns .btn {
    margin-left: 0.2rem;
    min-width: 1.8rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
    height: 0.8rem;
    border-radius: 0.4rem;
  }
}
@media screen and (min-width: 800px) {
  .cookie-set .cookie-set-footer .rigth-btns .btn:hover {
    background: #1E1A34;
    color: #fff;
  }
}
.cookie-set .cookie-set-footer .rigth-btns .btn.on {
  background: #1E1A34;
  color: #fff;
}
.cookie-set .cookie-set-footer .rigth-btns .btn.on:hover {
  opacity: 0.9;
}

.solinteg-cookies-set {
  width: 6.4rem;
  position: fixed;
  bottom: 0.2rem;
  z-index: 50;
  left: 0.2rem;
  padding: 0.27rem 0.2rem 0.18rem;
  border-radius: 0.16rem;
  background: #F7F7F6;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
  display: none;
  color: var(--fcolor-black);
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set {
    width: calc(100% - 0.4rem);
    border-radius: 0.24rem;
    padding: 0.46rem 0.3rem 0.3rem;
  }
}
.solinteg-cookies-set.show {
  display: block;
}
.solinteg-cookies-set .close-box {
  position: absolute;
  right: 0.26rem;
  top: 0.22rem;
  width: 0.18rem;
  height: 0.18rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .close-box {
    width: 0.8rem;
    height: 0.8rem;
    background: #EFEFED;
    border-radius: 0.12rem;
    top: 0.3rem;
    right: 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;
  }
}
.solinteg-cookies-set .close-box .img {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .close-box .img {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.solinteg-cookies-set .cookies-set-heder {
  display: -webkit-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) {
  .solinteg-cookies-set .cookies-set-heder {
    -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;
  }
}
.solinteg-cookies-set .cookies-set-heder .logo {
  width: 0.86rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-heder .logo {
    width: 1.58rem;
  }
}
.solinteg-cookies-set .cookies-set-heder .tit {
  margin-left: 0.18rem;
  font-size: 0.2rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-heder .tit {
    margin-top: 0.4rem;
    margin-left: 0;
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.solinteg-cookies-set .cookies-set-body {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body {
    margin-top: 0.27rem;
  }
}
.solinteg-cookies-set .cookies-set-body .con-txt {
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.14rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .con-txt {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.solinteg-cookies-set .cookies-set-body .con-txt a {
  color: #676CC4;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences {
  margin-top: 0.37rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences {
    margin-top: 0.65rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-heder {
  display: -webkit-box;
  display: -webkit-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;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-heder .manage-tit {
  font-size: 0.16rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-heder .manage-tit {
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-heder .sel-all {
  cursor: pointer;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: #676CC4;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-heder .sel-all {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body {
    margin-top: 0.34rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item {
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item {
    margin-bottom: 0.4rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item:last-child {
  margin-bottom: 0;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item.show .item-cell .left-txt .expand .img.true {
  display: none;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item.show .item-cell .left-txt .expand .img.false {
  display: block;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item.show .item-txt {
  display: block;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt .expand {
  width: 0.11rem;
  height: 0.11rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt .expand {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt .expand .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt .expand .img.true {
  display: block;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt .expand .img.false {
  display: none;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt .manage-name {
  margin-left: 0.09rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .left-txt .manage-name {
    margin-left: 0.17rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .switch-box {
  cursor: pointer;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .switch-box .img {
  height: 0.18rem;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .switch-box .img {
    height: 0.36rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .switch-box .img.false {
  display: none;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .switch-box .img.true {
  display: block;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .switch-box.on .img.true {
  display: none;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-cell .switch-box.on .img.false {
  display: block;
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-txt {
  margin-top: 0.12rem;
  padding: 0.1rem;
  background: #EFEFED;
  border-radius: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(30, 26, 52, 0.8);
  display: none;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-body .manage-item .item-txt {
    margin-top: 0.16rem;
    padding: 0.17rem 0.4rem 0.23rem 0.3rem;
    border-radius: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-footer {
  margin-top: 0.28rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-footer {
    margin-top: 0.48rem;
  }
}
.solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-footer .btn {
  cursor: pointer;
  height: 0.4rem;
  padding: 0 0.28rem;
  background: #1E1A34;
  color: #FFFFFF;
  font-size: 0.14rem;
  line-height: 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;
  border-radius: 0.36rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-footer .btn {
    height: 0.8rem;
    padding: 0 0.7rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
    border-radius: 0.4rem 0.4rem 0.4rem 0.4rem;
  }
}
@media screen and (min-width: 800px) {
  .solinteg-cookies-set .cookies-set-body .manage-consent-preferences .manage-footer .btn:hover {
    opacity: 0.9;
  }
}

.pagination_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination_wrapper .prev {
  background: #EFEFED;
  border-radius: 0.06rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .prev {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.12rem;
  }
  .pagination_wrapper .prev:active {
    background: #DEDEDB;
  }
}
@media screen and (min-width: 800px) {
  .pagination_wrapper .prev:hover {
    background: #DEDEDB;
  }
}
.pagination_wrapper .prev .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 0.13rem;
  height: 0.13rem;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .prev .icon {
    width: 0.26rem;
    height: 0.26rem;
  }
}
.pagination_wrapper .pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination_wrapper .pager .number {
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 0.06rem;
  border: 0.01rem solid rgba(171, 172, 164, 0.6);
  font-size: 0.16rem;
  line-height: 0.19rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.1rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .pager .number {
    width: 0.8rem;
    height: 0.8rem;
    border: 0.02rem solid rgba(171, 172, 164, 0.6);
    font-size: 0.28rem;
    line-height: 0.33rem;
    color: #1E1A34;
    border-radius: 0.12rem;
  }
  .pagination_wrapper .pager .number.on, .pagination_wrapper .pager .number:active {
    background: #DEDEDB;
    border-color: transparent;
  }
}
@media screen and (min-width: 800px) {
  .pagination_wrapper .pager .number.on, .pagination_wrapper .pager .number:hover {
    background: #DEDEDB;
    border-color: transparent;
  }
}
.pagination_wrapper .next {
  background: #EFEFED;
  border-radius: 0.06rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  cursor: pointer;
  margin-left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .next {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.12rem;
    margin-left: 0.2rem;
  }
}
@media screen and (min-width: 800px) {
  .pagination_wrapper .next:hover {
    background: #DEDEDB;
  }
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .next:active {
    background: #DEDEDB;
  }
}
.pagination_wrapper .next .icon {
  width: 0.13rem;
  height: 0.13rem;
}
@media screen and (max-width: 800px) {
  .pagination_wrapper .next .icon {
    width: 0.26rem;
    height: 0.26rem;
  }
}

.download-page {
  color: #1E1A34;
  background: #F7F7F6;
}
@media screen and (min-width: 800px) {
  .download-page .wal {
    width: 15.2rem;
  }
}
.download-page .download-header {
  height: 5.4rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .download-page .download-header {
    height: 9.6rem;
  }
}
.download-page .download-header .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  transition: none;
}
.download-page .download-header .flex-body {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 1.13rem;
}
@media screen and (max-width: 800px) {
  .download-page .download-header .flex-body {
    -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: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 0.3rem 0.2rem;
  }
}
@media screen and (max-width: 800px) {
  .download-page .download-header .flex-body .left-con {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-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%;
  }
}
.download-page .download-header .flex-body .left-con .h1 {
  font-size: 0.72rem;
  line-height: 0.85rem;
}
@media screen and (max-width: 800px) {
  .download-page .download-header .flex-body .left-con .h1 {
    margin-top: 0.13rem;
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.download-page .download-header .flex-body .left-con .txt {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  padding-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .download-page .download-header .flex-body .left-con .txt {
    margin-top: 0.36rem;
    font-size: 0.32rem;
    line-height: 0.38rem;
    padding-bottom: 0;
    width: 90%;
    text-align: center;
  }
}
.download-page .download-header .flex-body .right-con .input-box {
  width: 4.8rem;
  height: 0.64rem;
  background: #FFFFFF;
  border-radius: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.2rem;
}
@media screen and (max-width: 800px) {
  .download-page .download-header .flex-body .right-con .input-box {
    width: 6.9rem;
    height: 0.9rem;
    border-radius: 0.45rem;
    padding: 0.3rem;
  }
}
.download-page .download-header .flex-body .right-con .input-box input {
  font-size: 0.18rem;
  line-height: 0.21rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .download-page .download-header .flex-body .right-con .input-box input {
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.download-page .download-header .flex-body .right-con .input-box input::-webkit-input-placeholder {
  color: #ABACA4;
}
.download-page .download-header .flex-body .right-con .input-box input::-moz-placeholder {
  color: #ABACA4;
}
.download-page .download-header .flex-body .right-con .input-box input:-ms-input-placeholder {
  color: #ABACA4;
}
.download-page .download-header .flex-body .right-con .input-box input::placeholder {
  color: #ABACA4;
}
.download-page .download-header .flex-body .right-con .input-box .search-box {
  cursor: pointer;
  width: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .download-page .download-header .flex-body .right-con .input-box .search-box {
    width: 0.3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.download-page .download-header .flex-body .right-con .input-box .search-box:hover {
  opacity: 0.6;
}
.download-page .download-header .flex-body .right-con .input-box .search-box .search-svg {
  width: 100%;
}
.download-page .main-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;
  padding-top: 1.09rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box {
    padding-top: 1.6rem;
    padding-bottom: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.download-page .main-box .filter-btn {
  height: 0.9rem;
  width: 100%;
  border-radius: 0.45rem;
  border: 0.02rem solid #000000;
  display: -webkit-box;
  display: -webkit-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;
}
.download-page .main-box .filter-btn .svg {
  width: 0.3rem;
}
.download-page .main-box .filter-btn .txt {
  font-size: 0.28rem;
  line-height: 0.32rem;
  margin-left: 0.16rem;
}
.download-page .main-box .left-tree-box {
  width: 4rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #F7F7F6;
    z-index: 200;
    padding: 1.46rem 0.3rem;
    overflow-y: auto;
  }
  .download-page .main-box .left-tree-box.show {
    display: block;
  }
  .download-page .main-box .left-tree-box .close-icon {
    position: fixed;
    top: 0.3rem;
    right: 0.3rem;
    width: 0.8rem;
    height: 0.8rem;
    background: #EFEFED;
    border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .download-page .main-box .left-tree-box .close-icon .img {
    width: 0.24rem;
    height: 0.24rem;
  }
  .download-page .main-box .left-tree-box .filter-tit {
    font-size: 0.56rem;
    line-height: 0.32rem;
  }
}
.download-page .main-box .left-tree-box .left-tree {
  position: -webkit-sticky;
  position: sticky;
  top: 1.4rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree {
    margin-top: 0.69rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-bottom: 0.31rem;
  padding-top: 0.29rem;
  border-bottom: 0.01rem solid rgba(171, 172, 164, 0.6);
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item {
    padding-top: 0.41rem;
    padding-bottom: 0.41rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item:first-child {
  padding-top: 0;
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-node {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.2rem;
  line-height: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-node {
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-node .icon {
  width: 0.15rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-node .icon {
    width: 0.29rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-node .icon.show {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children {
  padding-top: 0.24rem;
  color: rgba(30, 26, 52, 0.8);
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children {
    padding-top: 0.41rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item {
  padding-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item {
    padding-bottom: 0.3rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item:last-child {
  padding-bottom: 0;
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two {
  display: -webkit-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.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two {
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two .expand-icon {
  width: 0.14rem;
  height: 0.14rem;
  margin-right: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two .expand-icon {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.2rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two .expand-icon .icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two .checkbox {
  margin-right: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two .checkbox {
    margin-right: 0.2rem;
    width: 0.32rem;
    height: 0.32rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-two .checkbox .icon {
  width: 100%;
  height: 100%;
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content {
  padding-top: 0.16rem;
  padding-bottom: 0.09rem;
  padding-left: 0.43rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    padding-left: 0.7rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content .tree-three {
  margin-bottom: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: rgba(30, 26, 52, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content .tree-three {
    font-size: 0.26rem;
    line-height: 0.31rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content .tree-three:last-child {
  margin-bottom: 0;
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content .tree-three .checkbox {
  margin-right: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content .tree-three .checkbox {
    margin-right: 0.2rem;
    width: 0.32rem;
    height: 0.32rem;
  }
}
.download-page .main-box .left-tree-box .left-tree .tree-item .tree-children .tree-children-item .tree-content .tree-three .checkbox .icon {
  width: 100%;
  height: 100%;
}
.download-page .main-box .right-con {
  width: 10rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.download-page .main-box .right-con .tit {
  font-size: 0.36rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .tit {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.download-page .main-box .right-con .tit span {
  opacity: 0.5;
}
.download-page .main-box .right-con .tag-s {
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .tag-s {
    margin-top: 0.5rem;
    gap: 0.2rem;
  }
}
.download-page .main-box .right-con .tag-s .tag-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0.4rem;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  border: 0.01rem solid #1E1A34;
  border-radius: 0.06rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
  padding: 0 0.1rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .tag-s .tag-box {
    margin: 0;
    height: 0.72rem;
    border: 0.02rem solid #1E1A34;
    border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
    padding: 0 0.2rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.download-page .main-box .right-con .tag-s .tag-box .label {
  margin-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .tag-s .tag-box .label {
    margin-right: 0.26rem;
  }
}
.download-page .main-box .right-con .tag-s .tag-box .close-box {
  width: 0.1rem;
  height: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .tag-s .tag-box .close-box {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.download-page .main-box .right-con .tag-s .tag-box .close-box .img {
  width: 100%;
  height: 100%;
}
.download-page .main-box .right-con .tag-s .closeAll {
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.6);
  margin-left: 0.37rem;
  margin-bottom: 0.1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .tag-s .closeAll {
    color: #1E1A34;
    text-decoration: underline;
    font-size: 0.28rem;
    line-height: 0.33rem;
    margin-left: 0.4rem;
    margin-bottom: 0;
  }
}
.download-page .main-box .right-con .tag-s .closeAll:hover {
  color: #1E1A34;
}
.download-page .main-box .right-con .content-box {
  margin-top: 0.5rem;
  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) {
  .download-page .main-box .right-con .content-box {
    margin-top: 1rem;
  }
}
.download-page .main-box .right-con .content-box .download-card {
  margin-bottom: 0.2rem;
  background: #EFEFED;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  padding: 0.28rem 0.2rem 0.29rem 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;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .download-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0.51rem 0.2rem 0.2rem 0.3rem;
    margin-bottom: 0.3rem;
  }
}
.download-page .main-box .right-con .content-box .download-card:last-child {
  margin-bottom: 0;
}
.download-page .main-box .right-con .content-box .download-card .txt-con .name {
  font-size: 0.24rem;
  line-height: 0.28rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .download-card .txt-con .name {
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.download-page .main-box .right-con .content-box .download-card .txt-con .tag {
  color: rgba(30, 26, 52, 0.6);
  font-size: 0.16rem;
  line-height: 0.19rem;
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .download-card .txt-con .tag {
    margin-top: 0.21rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.download-page .main-box .right-con .content-box .download-card .btn-s {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .download-card .btn-s {
    margin-top: 0.73rem;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.download-page .main-box .right-con .content-box .download-card .btn-s .btn {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.1rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.1rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .download-card .btn-s .btn {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.12rem;
    margin-left: 0.2rem;
  }
}
.download-page .main-box .right-con .content-box .download-card .btn-s .btn .img-box {
  overflow: hidden;
  width: 0.18rem;
  height: 0.18rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .download-card .btn-s .btn .img-box {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.download-page .main-box .right-con .content-box .download-card .btn-s .btn .img-box .hover-box {
  height: 100%;
  width: 100%;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.download-page .main-box .right-con .content-box .download-card .btn-s .btn .img-box .hover-box .img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.download-page .main-box .right-con .content-box .download-card .btn-s .btn .img-box .hover-box .left {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-110%);
      -ms-transform: translateX(-110%);
          transform: translateX(-110%);
}
@media screen and (min-width: 800px) {
  .download-page .main-box .right-con .content-box .download-card .btn-s .btn:hover .img-box .hover-box {
    -webkit-transform: translateX(110%);
        -ms-transform: translateX(110%);
            transform: translateX(110%);
  }
}
.download-page .main-box .right-con .content-box .video-card {
  margin-top: 0.6rem;
  width: calc(50% - 0.2rem);
  position: relative;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .video-card {
    margin-top: 0.8rem;
    width: 100%;
  }
}
.download-page .main-box .right-con .content-box .video-card .cover-box {
  height: 3.2rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .video-card .cover-box {
    height: 4.6rem;
    border-radius: 0.24rem;
  }
}
.download-page .main-box .right-con .content-box .video-card .cover-box .cover-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.download-page .main-box .right-con .content-box .video-card .cover-box::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: -webkit-radial-gradient(-40% 35%, 98% 98%, rgba(18, 22, 34, 0.3) 1%, rgba(18, 22, 34, 0.45) 45%, rgba(18, 22, 34, 0.75) 99%);
  background: radial-gradient(98% 98% at -40% 35%, rgba(18, 22, 34, 0.3) 1%, rgba(18, 22, 34, 0.45) 45%, rgba(18, 22, 34, 0.75) 99%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .video-card .cover-box::after {
    opacity: 1;
    visibility: visible;
  }
}
.download-page .main-box .right-con .content-box .video-card .cover-box .play-box {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0.64rem;
  width: 0.64rem;
  border-radius: 50%;
  cursor: pointer;
  background: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .video-card .cover-box .play-box {
    height: 1rem;
    width: 1rem;
    opacity: 1;
    visibility: visible;
  }
}
.download-page .main-box .right-con .content-box .video-card .cover-box .play-box .play-img {
  height: 100%;
}
.download-page .main-box .right-con .content-box .video-card .cover-box:hover::after {
  opacity: 1;
  visibility: visible;
}
.download-page .main-box .right-con .content-box .video-card .cover-box:hover .play-box {
  opacity: 1;
  visibility: visible;
}
.download-page .main-box .right-con .content-box .video-card .name {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .video-card .name {
    margin-top: 0.3rem;
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.download-page .main-box .right-con .content-box .pagination_wrapper {
  width: 100%;
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .download-page .main-box .right-con .content-box .pagination_wrapper {
    margin-top: 0.8rem;
  }
}

.news-blog-page {
  background: #F7F7F6;
  color: #1E1A34;
}
@media screen and (min-width: 800px) {
  .news-blog-page .wal {
    width: 15.2rem;
  }
}
.news-blog-page .news-blog-main {
  padding-top: 2.74rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main {
    padding-top: 3.28rem;
    padding-bottom: 2.4rem;
  }
}
.news-blog-page .news-blog-main .h1 {
  text-align: center;
  font-size: 0.72rem;
  line-height: 0.85rem;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .h1 {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.news-blog-page .news-blog-main .swiper-container {
  margin-top: 0.8rem;
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box {
  height: 5.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .lt {
  width: 8.1rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border-radius: 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .lt {
    width: 100%;
    height: 4.6rem;
    border-radius: 0.24rem;
  }
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .lt .lt-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri {
  margin-left: 0.6rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri {
    margin-left: 0;
    width: 100%;
  }
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .tag {
  display: inline-block;
  margin-top: 0.53rem;
  padding: 0.08rem 0.09rem 0.08rem 0.11rem;
  background: #E6E6E4;
  border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(30, 26, 52, 0.6);
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .tag {
    margin-top: 0.4rem;
    padding: 0.18rem 0.34rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
    border-radius: 0.16rem;
  }
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .tit {
  margin-top: 0.38rem;
  font-size: 0.36rem;
  line-height: 0.42rem;
  display: inline-block;
  padding-bottom: 0.02rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .tit {
    margin-top: 0.3rem;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .date {
  margin-top: 0.15rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .date {
    margin-top: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .txt {
  margin-top: 0.32rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .txt {
    margin-top: 0.42rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .hry__btn {
  min-width: 2.4rem;
  margin-top: 0.48rem;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box .ri .hry__btn {
    margin-top: 0.6rem;
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .news-blog-page .news-blog-main .swiper-container .swiper-wrapper .swiper-slide .card-box:hover .lt .lt-img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.news-blog-page .news-blog-main .swiper-pagination {
  padding: 0.08rem 0.1rem 0.07rem;
  background: #E6E6E4;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0.6rem auto 0;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-pagination {
    margin: 0.8rem auto 0;
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
  }
}
.news-blog-page .news-blog-main .swiper-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: rgba(30, 26, 52, 0.3);
  border-radius: 50%;
  margin-right: 0.08rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-pagination .swiper-pagination-bullet {
    height: 0.12rem;
    width: 0.12rem;
    margin-right: 0.1rem;
  }
}
.news-blog-page .news-blog-main .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.news-blog-page .news-blog-main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1E1A34;
  border-radius: 0.04rem;
  width: 0.33rem;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.52rem;
    border-radius: 0.06rem;
  }
}
.news-blog-page .news-blog-main .tag-s {
  margin-top: 1.52rem;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .tag-s {
    margin-top: 2.4rem;
    overflow-y: auto;
  }
}
.news-blog-page .news-blog-main .tag-s .tag-we {
  display: -webkit-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) {
  .news-blog-page .news-blog-main .tag-s .tag-we {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.news-blog-page .news-blog-main .tag-s .tag-we .tag-btn {
  padding: 0 0.25rem;
  height: 0.48rem;
  border: 0.01rem solid #1E1A34;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.32rem;
  margin-right: 0.1rem;
  font-size: 0.18rem;
  line-height: 0.32rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .tag-s .tag-we .tag-btn {
    height: 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.28rem;
    line-height: 0.32rem;
    padding: 0 0.38rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-right: 0.2rem;
  }
}
.news-blog-page .news-blog-main .tag-s .tag-we .tag-btn.on {
  border-color: transparent;
  background: #1E1A34;
  cursor: pointer;
  color: #fff;
}
@media screen and (min-width: 800px) {
  .news-blog-page .news-blog-main .tag-s .tag-we .tag-btn:hover {
    border-color: transparent;
    background: #1E1A34;
    cursor: pointer;
    color: #fff;
  }
}
.news-blog-page .news-blog-main .news-card-list {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .news-card-list {
    margin-top: 0.8rem;
  }
}
.news-blog-page .news-blog-main .news-card-list .news-card {
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .news-card-list .news-card {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.news-blog-page .news-blog-main .news-card-list .news-card:nth-child(3n) {
  margin-right: 0;
}
.news-blog-page .news-blog-main .news-card-list .news-card .cover-box {
  height: 3.2rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .news-card-list .news-card .cover-box {
    height: 4.6rem;
    border-radius: 0.24rem;
  }
}
.news-blog-page .news-blog-main .news-card-list .news-card .cover-box .cover-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-blog-page .news-blog-main .news-card-list .news-card .tit {
  margin-top: 0.22rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-bottom: 0.01rem;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .news-card-list .news-card .tit {
    margin-top: 0.4rem;
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.news-blog-page .news-blog-main .news-card-list .news-card .date {
  margin-top: 0.19rem;
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .news-blog-page .news-blog-main .news-card-list .news-card .date {
    margin-top: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
@media screen and (min-width: 800px) {
  .news-blog-page .news-blog-main .news-card-list .news-card:hover .cover-box .cover-img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.g-breadcrumb {
  padding: 0 1rem;
}
@media screen and (max-width: 800px) {
  .g-breadcrumb {
    padding: 0 0.3rem;
  }
}
.g-breadcrumb .breadcrumb-item {
  color: rgba(30, 26, 52, 0.5);
  font-size: 0.16rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .g-breadcrumb .breadcrumb-item {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.g-breadcrumb .breadcrumb-item::after {
  content: "/";
  display: inline-block;
  margin: 0 0.04rem;
}
.g-breadcrumb .breadcrumb-item:last-child {
  color: #1E1A34;
  cursor: initial;
}
.g-breadcrumb .breadcrumb-item:last-child::after {
  display: none;
}

.news-details-page {
  padding-top: 1.04rem;
  background: #F7F7F6;
}
@media screen and (min-width: 800px) {
  .news-details-page .wal {
    width: 15.2rem;
  }
}
@media screen and (max-width: 800px) {
  .news-details-page {
    padding-top: 1.64rem;
  }
}
.news-details-page .news-details-main {
  width: 10rem;
  margin: 1.11rem auto;
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main {
    margin-top: 1.36rem;
    width: 100%;
    padding: 0 0.3rem;
  }
}
.news-details-page .news-details-main .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .h1 {
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.news-details-page .news-details-main .tag-infor {
  margin-top: 0.34rem;
  display: -webkit-box;
  display: -webkit-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) {
  .news-details-page .news-details-main .tag-infor {
    margin-top: 0.48rem;
    -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-details-page .news-details-main .tag-infor .tag-date {
  display: -webkit-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-details-page .news-details-main .tag-infor .tag-date .tag {
  padding: 0.08rem 0.09rem 0.08rem 0.1rem;
  background: #E6E6E4;
  border-radius: 0.06rem;
  color: rgba(30, 26, 52, 0.6);
  font-size: 0.14rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .tag-date .tag {
    border-radius: 0.16rem;
    padding: 0.18rem 0.32rem 0.18rem 0.34rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.news-details-page .news-details-main .tag-infor .tag-date .date {
  margin-left: 0.32rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .tag-date .date {
    margin-left: 0.4rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.news-details-page .news-details-main .tag-infor .link-list {
  height: 0.48rem;
  padding: 0 0.1rem 0 0.2rem;
  background: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.24rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .link-list {
    height: 0.8rem;
    margin: 0.6rem auto 0;
    padding: 0 0.4rem;
    border-radius: 0.4rem;
  }
}
.news-details-page .news-details-main .tag-infor .link-list .label {
  font-size: 0.16rem;
  line-height: 0.19rem;
  color: rgba(30, 26, 52, 0.8);
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .link-list .label {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.news-details-page .news-details-main .tag-infor .link-list .link-icon-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.34rem;
}
.news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon {
  margin-right: 0.1rem;
  padding: 0.06rem 0.1rem 0.06rem 0.1rem;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon {
    padding: 0;
    width: 0.8rem;
    height: 0.64rem;
    border-radius: 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
  }
}
.news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon:last-child {
  margin-right: 0;
}
@media screen and (min-width: 800px) {
  .news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon:hover {
    background: #E6E6E4;
  }
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon:active {
    background: #E6E6E4;
  }
}
.news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon .icon {
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon .icon {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon .-layer {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.06rem 0.1rem;
  border-radius: 0.04rem;
  background: #E6E6E4;
  color: var(--fcolor-default);
  font-size: 0.12rem;
  line-height: 0.16rem;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .tag-infor .link-list .link-icon-box .link-icon .-layer {
    top: auto;
    bottom: -0.17rem;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.1rem 0.19rem;
    border-radius: 0.08rem;
    font-size: 0.2rem;
    line-height: 0.27rem;
  }
}
.news-details-page .news-details-main .html {
  margin-top: 0.71rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
}
@media screen and (max-width: 800px) {
  .news-details-page .news-details-main .html {
    margin-top: 1.2rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.news-details-page .recommended-news {
  margin-top: 1.8rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 800px) {
  .news-details-page .recommended-news {
    margin-top: 2.4rem;
  }
}
.news-details-page .recommended-news .h2 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .news-details-page .recommended-news .h2 {
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.news-details-page .recommended-news .news-card-list {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.news-details-page .recommended-news .news-card-list .news-card {
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 800px) {
  .news-details-page .recommended-news .news-card-list .news-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1;
  }
}
.news-details-page .recommended-news .news-card-list .news-card:nth-child(3n) {
  margin-right: 0;
}
.news-details-page .recommended-news .news-card-list .news-card .cover-box {
  height: 3.2rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .news-details-page .recommended-news .news-card-list .news-card .cover-box {
    height: 4.6rem;
    border-radius: 0.24rem;
  }
}
.news-details-page .recommended-news .news-card-list .news-card .cover-box .cover-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-details-page .recommended-news .news-card-list .news-card .tit {
  margin-top: 0.22rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-bottom: 0.01rem;
}
@media screen and (max-width: 800px) {
  .news-details-page .recommended-news .news-card-list .news-card .tit {
    margin-top: 0.4rem;
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.news-details-page .recommended-news .news-card-list .news-card .date {
  margin-top: 0.19rem;
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .news-details-page .recommended-news .news-card-list .news-card .date {
    margin-top: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
@media screen and (min-width: 800px) {
  .news-details-page .recommended-news .news-card-list .news-card:hover .cover-box .cover-img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.case-study-page {
  background: #F7F7F6;
}
@media screen and (min-width: 800px) {
  .case-study-page .wal {
    width: 15.2rem;
  }
}
.case-study-page .main-box {
  padding-top: 2.74rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box {
    padding-top: 3.28rem;
    padding-bottom: 2.4rem;
  }
}
.case-study-page .main-box .h1 {
  text-align: center;
  font-size: 0.72rem;
  line-height: 0.85rem;
}
.case-study-page .main-box .t-txt {
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
  width: 8rem;
  margin: 0.24rem auto 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .t-txt {
    text-align: center;
    width: 100%;
    margin: 0.36rem auto 0;
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.case-study-page .main-box .sel-list {
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .sel-list {
    margin-top: 1rem;
    margin-bottom: 1.21rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case-study-page .main-box .sel-list .sk_select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .sel-list .sk_select {
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
}
.case-study-page .main-box .sel-list .sk_select:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.case-study-page .main-box .card-box-list {
  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;
}
.case-study-page .main-box .card-box-list .card-box {
  width: calc(50% - 0.2rem);
  border-radius: 0.16rem;
  overflow: hidden;
  background: #EFEFED;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .card-box-list .card-box {
    width: 100%;
    border-radius: 0.24rem;
    margin-bottom: 1rem;
  }
}
.case-study-page .main-box .card-box-list .card-box:hover .cor-box .cor-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.case-study-page .main-box .card-box-list .card-box .cor-box {
  height: 4.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .card-box-list .card-box .cor-box {
    height: 3.88rem;
  }
}
.case-study-page .main-box .card-box-list .card-box .cor-box .cor-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.case-study-page .main-box .card-box-list .card-box .infor-box {
  padding: 0.3rem 0.3rem 0.32rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .card-box-list .card-box .infor-box {
    padding: 0.37rem 0.3rem 0.55rem;
  }
}
.case-study-page .main-box .card-box-list .card-box .infor-box .tit {
  font-size: 0.24rem;
  line-height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .card-box-list .card-box .infor-box .tit {
    font-size: 0.36rem;
    line-height: 0.42rem;
    min-height: 0.84rem;
  }
}
.case-study-page .main-box .card-box-list .card-box .infor-box .cat {
  margin-top: 0.12rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .card-box-list .card-box .infor-box .cat {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.case-study-page .main-box .card-box-list .card-box .infor-box .txt {
  margin-top: 0.21rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .card-box-list .card-box .infor-box .txt {
    margin-top: 0.3rem;
  }
}
.case-study-page .main-box .card-box-list .card-box .infor-box .txt .item {
  margin-top: 0.06rem;
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.16rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .card-box-list .card-box .infor-box .txt .item {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.case-study-page .main-box .card-box-list .card-box .infor-box .txt .item:first-child {
  margin-top: 0;
}
.case-study-page .main-box .pagination_wrapper {
  margin-top: 0.2rem;
}
@media screen and (max-width: 800px) {
  .case-study-page .main-box .pagination_wrapper {
    margin-top: 0;
  }
}

.case-details-page {
  background: #F7F7F6;
  padding-top: 1.04rem;
}
@media screen and (max-width: 800px) {
  .case-details-page {
    padding-top: 1.64rem;
  }
}
.case-details-page .case-details-main {
  margin-top: 1.11rem;
  padding-bottom: 2.15rem;
  width: 15.2rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main {
    margin-top: 1.36rem;
    padding-bottom: 2.6rem;
    width: auto;
  }
}
.case-details-page .case-details-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;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case-details-page .case-details-main .flex-box .left {
  width: 7.4rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .left {
    width: 100%;
  }
}
.case-details-page .case-details-main .flex-box .left .swiper-container {
  height: 4.93rem;
  overflow: hidden;
  border-radius: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .left .swiper-container {
    height: 4.6rem;
    border-radius: 0.24rem;
  }
  .case-details-page .case-details-main .flex-box .left .swiper-container .swiper-pagination {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 0.2rem;
    background: rgba(187, 187, 187, 0.2);
    border-radius: 0.18rem 0.18rem 0.18rem 0.18rem;
    padding: 0.12rem 0.2rem;
    -webkit-backdrop-filter: blur(0.2rem);
            backdrop-filter: blur(0.2rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .case-details-page .case-details-main .flex-box .left .swiper-container .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
    background: rgba(255, 255, 255, 0.4);
    margin-right: 0.1rem;
  }
  .case-details-page .case-details-main .flex-box .left .swiper-container .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  .case-details-page .case-details-main .flex-box .left .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.52rem;
    background-color: #fff;
  }
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-btn {
  position: absolute;
  z-index: 2;
  bottom: 0.2rem;
  right: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-btn .btn {
  background: #FFFFFF;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.06rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-left: 0.1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-btn .btn:hover {
  background: #DEDEDB;
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-btn .btn .icon {
  width: 0.15rem;
}
.case-details-page .case-details-main .flex-box .left .swiper-container .swiper-btn .btn.swiper-prev .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.case-details-page .case-details-main .flex-box .right {
  width: 7.2rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.case-details-page .case-details-main .flex-box .right .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .h1 {
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card {
  margin-top: 0.43rem;
  background: #EFEFED;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.6rem;
    border-radius: 0.24rem;
    padding: 0.57rem 0.3rem 0.62rem;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-left {
  width: calc(50% - 0.01rem);
  margin-top: 0.06rem;
  margin-bottom: 0.06rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .infor-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-bottom: 0.44rem;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box {
  margin-bottom: 0.62rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box {
    margin-bottom: 0.3rem;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box:last-child {
  margin-bottom: 0.06rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box:last-child {
    margin-bottom: 0;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box .sub-num {
  font-size: 0.36rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box .sub-num {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box .sub-label {
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.16rem;
  line-height: 0.19rem;
  margin-top: 0.05rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .infor-left .sub-box .sub-label {
    margin-top: 0.1rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .hr {
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 0.06rem;
  margin-bottom: 0.06rem;
  width: 0.01rem;
  background-color: rgba(171, 172, 164, 0.6);
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .hr {
    height: 0.01rem;
    width: 100%;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 50%;
  font-size: 0.18rem;
  line-height: 0.21rem;
  padding-left: 0.4rem;
  padding-right: 0.3rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .infor-right {
    width: 100%;
    margin-top: 0.6rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-right .item {
  margin-bottom: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .case-details-page .case-details-main .flex-box .right .infor-card .infor-right .item {
    margin-bottom: 0.3rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-right .item:last-child {
  margin-bottom: 0;
}
.case-details-page .case-details-main .flex-box .right .infor-card .infor-right .item .label {
  color: rgba(30, 26, 52, 0.6);
}

.search-results-page {
  background: #F7F7F6;
}
@media screen and (min-width: 800px) {
  .search-results-page .wal {
    width: 15.2rem;
  }
}
.search-results-page .search-results-main {
  padding-top: 1.84rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main {
    padding-top: 3.28rem;
    padding-bottom: 2.4rem;
  }
}
.search-results-page .search-results-main .search-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-results-page .search-results-main .search-input input {
  width: 8rem;
  height: 0.64rem;
  border-radius: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.32rem;
  padding: 0.2rem;
  font-size: 0.18rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .search-input input {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 0.9rem;
    border-radius: 0.45rem;
    padding: 0.3rem;
    font-size: 0.28rem;
  }
}
.search-results-page .search-results-main .search-input input::-webkit-input-placeholder {
  color: #ABACA4;
}
.search-results-page .search-results-main .search-input input::-moz-placeholder {
  color: #ABACA4;
}
.search-results-page .search-results-main .search-input input:-ms-input-placeholder {
  color: #ABACA4;
}
.search-results-page .search-results-main .search-input input::placeholder {
  color: #ABACA4;
}
.search-results-page .search-results-main .search-input .search-btn {
  cursor: pointer;
  margin-left: 0.2rem;
  height: 0.64rem;
  padding: 0 0.57rem;
  background: #1E1A34;
  border-radius: 0.32rem;
  color: #fff;
  display: -webkit-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.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .search-input .search-btn {
    height: 0.9rem;
    padding: 0 0.4rem;
    border-radius: 0.45rem;
    font-size: 0.28rem;
  }
}
.search-results-page .search-results-main .type-list-wrapper {
  margin-top: 1rem;
  border-bottom: 0.01rem solid rgba(171, 172, 164, 0.6);
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .type-list-wrapper {
    overflow-x: auto;
  }
}
.search-results-page .search-results-main .type-list-wrapper .type-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .type-list-wrapper .type-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.search-results-page .search-results-main .type-list-wrapper .type-list .type-box {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.5);
  margin-right: 0.6rem;
  padding-bottom: 0.1rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 0.01rem solid transparent;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .type-list-wrapper .type-list .type-box {
    font-size: 0.28rem;
    line-height: 0.33rem;
    padding-bottom: 0.2rem;
  }
}
.search-results-page .search-results-main .type-list-wrapper .type-list .type-box.on {
  color: #1E1A34;
  border-color: #1E1A34;
}
.search-results-page .search-results-main .type-list-wrapper .type-list .type-box:hover {
  color: #1E1A34;
}
.search-results-page .search-results-main .card-box-list.products {
  margin-top: 0.6rem;
  -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;
  display: none;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products {
    margin-top: 0.8rem;
  }
}
.search-results-page .search-results-main .card-box-list.products.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search-results-page .search-results-main .card-box-list.products .card-box {
  width: calc(50% - 0.1rem);
  background: #FFFFFF;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  padding: 0.38rem 0.3rem 0.37rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box {
    width: 100%;
    border-radius: 0.24rem;
    padding: 0.57rem 0.33rem;
    margin-bottom: 0.3rem;
    overflow: hidden;
  }
  .search-results-page .search-results-main .card-box-list.products .card-box:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .pro-img-box {
  width: 2.01rem;
  height: 1.65rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.search-results-page .search-results-main .card-box-list.products .card-box .pro-img-box .img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box {
  padding-left: 0.58rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box {
    padding-left: 0.37rem;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .name {
  margin-top: 0.12rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box .name {
    margin-top: 0.06rem;
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .tag {
  margin-top: 0.16rem;
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box .tag {
    margin-top: 0.14rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s {
  margin-top: 0.41rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s {
    margin-top: 0.34rem;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.18rem;
  line-height: 0.21rem;
  margin-right: 0.43rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box {
    margin-right: 0.49rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box .link-txt {
  margin-right: 0.06rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box .link-txt {
    margin-right: 0.16rem;
    color: #676CC4;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box .svg {
  object-fit: contain;
  width: 0.14rem;
  height: 0.14rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box .svg {
    width: 0.24rem;
    height: 0.24rem;
  }
  .search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box .svg path {
    fill: #676CC4;
  }
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box:hover {
  color: #676CC4;
}
.search-results-page .search-results-main .card-box-list.products .card-box .infor-box .link-s .link-box:hover .svg path {
  fill: #676CC4;
}
.search-results-page .search-results-main .card-box-list.news-blog {
  display: none;
}
.search-results-page .search-results-main .card-box-list.news-blog.show {
  display: block;
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list {
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list {
    margin-top: 0.8rem;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link {
  margin-bottom: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link {
    margin-bottom: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link:last-child {
  margin-bottom: 0;
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .cor-box {
  width: 3rem;
  height: 2rem;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .cor-box {
    width: 100%;
    height: 4.6rem;
    border-radius: 0.24rem;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .cor-box .img {
  width: 100%;
  height: 100%;
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .infor-box {
  padding-left: 0.6rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .infor-box {
    padding-left: 0;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .infor-box .tit {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .infor-box .tit {
    margin-top: 0.4rem;
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .infor-box .txt {
  margin-top: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-bottom: 0.01rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .infor-box .txt {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .tag-date {
  margin-top: 0.33rem;
  display: -webkit-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-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .tag-date {
    margin-top: 0.4rem;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .tag-date .tag {
  padding: 0.08rem 0.09rem 0.08rem 0.1rem;
  border-radius: 0.06rem;
  background: #E6E6E4;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(30, 26, 52, 0.6);
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .tag-date .tag {
    padding: 0.18rem 0.33rem;
    border-radius: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .tag-date .date {
  margin-left: 0.18rem;
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.16rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link .tag-date .date {
    margin-left: 0.4rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
@media screen and (min-width: 800px) {
  .search-results-page .search-results-main .card-box-list.news-blog .news-list .news-link:hover .cor-box .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.search-results-page .search-results-main .card-box-list.others {
  display: none;
}
.search-results-page .search-results-main .card-box-list.others.show {
  display: block;
}
.search-results-page .search-results-main .card-box-list.others .others-list {
  margin-top: 0.8rem;
}
.search-results-page .search-results-main .card-box-list.others .others-list .others-box {
  display: block;
  margin-bottom: 0.6rem;
  width: 11.6rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.others .others-list .others-box {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.search-results-page .search-results-main .card-box-list.others .others-list .others-box:last-child {
  margin-bottom: 0;
}
.search-results-page .search-results-main .card-box-list.others .others-list .others-box .tit {
  font-size: 0.24rem;
  line-height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.others .others-list .others-box .tit {
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.search-results-page .search-results-main .card-box-list.others .others-list .others-box .txt {
  margin-top: 0.16rem;
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.others .others-list .others-box .txt {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.search-results-page .search-results-main .card-box-list.others .others-list .others-box .link {
  margin-top: 0.16rem;
  color: #676CC4;
  font-size: 0.16rem;
  line-height: 0.19rem;
  display: block;
  --color: #676CC4;
}
@media screen and (max-width: 800px) {
  .search-results-page .search-results-main .card-box-list.others .others-list .others-box .link {
    margin-top: 0.36rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}

.privacy-policy-page {
  background: #F7F7F6;
}
.privacy-policy-page .main-box {
  width: 10rem;
  margin: 0 auto;
  padding-top: 2.34rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main-box {
    width: 100%;
    padding: 3.28rem 0.3rem 2.4rem;
  }
}
.privacy-policy-page .main-box .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main-box .h1 {
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.privacy-policy-page .main-box .html {
  margin-top: 0.48rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
}
@media screen and (max-width: 800px) {
  .privacy-policy-page .main-box .html {
    margin-top: 0.6rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}

.solinteg-site-map-page {
  background: #F7F7F6;
}
.solinteg-site-map-page .main-box {
  padding-top: 2.34rem;
  padding-bottom: 2.06rem;
  width: 12rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box {
    padding-top: 3.28rem;
    padding-bottom: 2.4rem;
    width: 100%;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.solinteg-site-map-page .main-box .link {
  color: #676CC4;
  --color: #676CC4;
  font-size: 0.2rem;
  line-height: 0.24rem;
  padding-bottom: 0.01rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .link {
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.solinteg-site-map-page .main-box .h1 {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .h1 {
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.solinteg-site-map-page .main-box .con-box .item {
  margin-top: 0.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.01rem solid rgba(171, 172, 164, 0.6);
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item {
    margin-top: 1rem;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.solinteg-site-map-page .main-box .con-box .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.solinteg-site-map-page .main-box .con-box .item .pro .label {
  font-size: 0.28rem;
  line-height: 0.33rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .pro .label {
    font-size: 0.4rem;
    line-height: 0.47rem;
  }
}
.solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list {
  margin-top: 0.31rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list .pro-cell {
    width: 100%;
  }
}
.solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list .pro-cell .pro-class {
  margin-bottom: 0.24rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list .pro-cell .pro-class {
    margin-bottom: 0.48rem;
  }
}
.solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list .pro-cell .pro-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;
}
.solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list .pro-cell .pro-list .link {
  display: block;
  font-size: 0.18rem;
  line-height: 0.21rem;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list .pro-cell .pro-list .link {
    font-size: 0.28rem;
    line-height: 0.33rem;
    margin-bottom: 0.32rem;
  }
}
.solinteg-site-map-page .main-box .con-box .item .pro .pro-cell-list .pro-cell .pro-list .link:last-child {
  margin-bottom: 0;
}
.solinteg-site-map-page .main-box .con-box .item .solution {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.27rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .solution {
    gap: 0.8rem;
  }
}
.solinteg-site-map-page .main-box .con-box .item .solution .cell-box {
  min-width: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .solution .cell-box {
    width: 100%;
  }
}
.solinteg-site-map-page .main-box .con-box .item .solution .cell-box .label {
  font-size: 0.28rem;
  line-height: 0.33rem;
  margin-bottom: 0.31rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .solution .cell-box .label {
    font-size: 0.4rem;
    line-height: 0.47rem;
  }
}
.solinteg-site-map-page .main-box .con-box .item .solution .cell-box .link {
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .solinteg-site-map-page .main-box .con-box .item .solution .cell-box .link {
    margin-bottom: 0.36rem;
  }
}
.solinteg-site-map-page .main-box .con-box .item .solution .cell-box .link:last-child {
  margin-bottom: 0;
}

.error-page {
  height: 100%;
  width: 100%;
  position: relative;
}
.error-page .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}
.error-page .num {
  height: 43.5%;
  position: absolute;
  top: 22.34%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .error-page .num {
    width: 6.46rem;
    height: auto;
    top: auto;
    bottom: 4.5rem;
  }
}
.error-page .con-box {
  position: absolute;
  top: 63%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-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) {
  .error-page .con-box {
    top: 26%;
    width: 90%;
  }
}
.error-page .con-box .txt {
  font-size: 0.48rem;
  color: #FFFFFF;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .error-page .con-box .txt {
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.error-page .con-box .btn {
  background: #FFFFFF;
  margin-top: 0.41rem;
  min-width: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .error-page .con-box .btn {
    margin-top: 0.6rem;
  }
}

.contact-page {
  background: #121622;
}
@media screen and (max-width: 800px) {
  .contact-page {
    width: 100%;
    overflow: hidden;
  }
}
.contact-page .map-section {
  padding: 2.74rem 1rem 2.4rem;
  background: #F7F7F6;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section {
    padding: 3.28rem 0.3rem 2.4rem;
  }
}
.contact-page .map-section .h1 {
  font-size: 0.72rem;
  line-height: 0.85rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .h1 {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.contact-page .map-section .happy-txt {
  text-align: center;
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .happy-txt {
    margin-top: 0.36rem;
    font-size: 0.32rem;
    line-height: 0.38rem;
    color: rgba(30, 26, 52, 0.8);
  }
}
.contact-page .map-section .map__wrapper {
  margin-top: 1.09rem;
  width: 100%;
  height: 8rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper {
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
}
.contact-page .map-section .map__wrapper #map {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper #map {
    height: 6.9rem;
  }
}
.contact-page .map-section .map__wrapper #map .mapbox-marker-icon {
  width: 0.36rem;
  height: 0.46rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper #map .mapbox-marker-icon {
    width: 0.6rem;
    height: 0.7rem;
  }
}
.contact-page .map-section .map__wrapper #map .mapbox-marker-icon.active {
  width: 0.5rem;
  height: 0.64rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper #map .mapbox-marker-icon.active {
    width: 0.63rem;
    height: 0.8rem;
  }
}
.contact-page .map-section .map__wrapper #map .mapbox-marker-text {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  bottom: -0.1rem;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  font-size: 0.14rem;
  line-height: 0.16rem;
  padding: 0.08rem 0.1rem 0.08rem 0.11rem;
  border-radius: 0.18rem 0.18rem 0.18rem 0.18rem;
  background: #FFFFFF;
  box-shadow: 0rem 0.04rem 0.2rem 0rem rgba(130, 130, 130, 0.3);
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper #map .mapbox-marker-text {
    font-size: 0.24rem;
    line-height: 0.28rem;
    padding: 0.18rem 0.26rem;
    border-radius: 0.32rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper {
  bottom: 0.2rem;
  left: 0.2rem;
  position: absolute;
  width: 5rem;
  height: 5.26rem;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  background: #DBDBD9;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper {
    position: initial;
    width: 100%;
    height: 7.48rem;
    background: rgba(142, 142, 142, 0.1);
    margin-top: 0.2rem;
    border-radius: 0.24rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper {
  height: 100%;
  width: 100%;
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper {
  height: 100%;
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  overflow-y: auto;
  padding: 0.35rem 0.3rem 0.35rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide {
    padding: 0.46rem 0.3rem 0.2rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-heder {
  padding-bottom: 0.37rem;
  border-bottom: 0.01rem solid rgba(171, 172, 164, 0.6);
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-heder {
    padding-bottom: 0.49rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-heder .name {
  font-size: 0.36rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-heder .name {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-heder .address {
  margin-top: 0.16rem;
  font-size: 0.18rem;
  color: rgba(30, 26, 52, 0.8);
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-heder .address {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body {
  padding-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body {
    padding-top: 0.44rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .item-infor-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .item-infor-list .item {
    margin-top: 0.24rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .item-infor-list .item:first-child {
  margin-top: 0;
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .item-infor-list .item .svg {
  max-width: 0.26rem;
  max-height: 0.29rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .item-infor-list .item .svg {
    max-height: 0.4rem;
    max-width: 0.32rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .item-infor-list .item .value {
  margin-top: 0.02rem;
  padding-left: 0.1rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .item-infor-list .item .value {
    margin-top: 0.01rem;
    padding-left: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .link-list {
  margin-top: 0.37rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .link-list {
    margin-top: 0.59rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .link-list .link {
  margin-bottom: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-wrapper .swiper-slide .swiper-body .link-list .link {
    margin-bottom: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box {
  position: absolute;
  bottom: 0.1rem;
  right: 0.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;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box {
    bottom: 0.2rem;
    right: 0.2rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box .swiper-btn {
  margin-left: 0.1rem;
  width: 0.48rem;
  height: 0.48rem;
  background: #FFFFFF;
  border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box .swiper-btn {
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 0.12rem;
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box .swiper-btn .svg {
  width: 0.15rem;
  height: 0.15rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box .swiper-btn .svg {
    width: 0.3rem;
    height: 0.3rem;
  }
}
@media screen and (min-width: 800px) {
  .contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box .swiper-btn:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
.contact-page .map-section .map__wrapper .infor-card_wrapper .infor-swiper .swiper-btn-box .swiper-btn.swiper-prev .svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.contact-page .map-section .mapIfor-card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.contact-page .map-section .mapIfor-card-list .card-infor {
  width: calc((100% - 0.4rem) / 3);
  margin-top: 0.2rem;
  margin-right: 0.2rem;
  background: #E6E6E4;
  border-radius: 0.16rem;
  padding: 0.3rem 0.25rem 0.53rem 0.3rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .mapIfor-card-list .card-infor {
    width: 100%;
    margin-right: 0;
    padding: 0.46rem 0.3rem;
    border-radius: 0.24rem;
  }
}
.contact-page .map-section .mapIfor-card-list .card-infor:nth-child(3n) {
  margin-right: 0;
}
.contact-page .map-section .mapIfor-card-list .card-infor .name {
  font-size: 0.32rem;
  line-height: 0.38rem;
  color: #1E1A34;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .mapIfor-card-list .card-infor .name {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.contact-page .map-section .mapIfor-card-list .card-infor .company {
  margin-top: 0.2rem;
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .mapIfor-card-list .card-infor .company {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .map-section .mapIfor-card-list .card-infor .list-box {
  margin-top: 0.46rem;
}
.contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box {
    margin-bottom: 0.24rem;
  }
}
.contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box:last-child {
  margin-bottom: 0;
}
.contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box .key {
  width: 0.24rem;
  height: 0.29rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box .key {
    max-height: 0.4rem;
    max-width: 0.32rem;
  }
}
.contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box .key .svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box .value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: #1E1A34;
  margin-left: 0.12rem;
  margin-top: 0.04rem;
}
@media screen and (max-width: 800px) {
  .contact-page .map-section .mapIfor-card-list .card-infor .list-box .item-box .value {
    margin-top: 0.01rem;
    padding-left: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .question-section {
  padding: 2.4rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.4rem 0.3rem;
  }
}
.contact-page .question-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .bg-img {
    width: 250%;
    max-width: none;
  }
}
.contact-page .question-section .left-txt {
  position: relative;
  width: 5.91rem;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .left-txt {
    width: 100%;
  }
}
.contact-page .question-section .left-txt .h2 {
  font-size: 0.64rem;
  line-height: 0.75rem;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .left-txt .h2 {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.contact-page .question-section .left-txt .txt {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .left-txt .txt {
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.contact-page .question-section .form-wrapper {
  position: relative;
  width: 9.2rem;
  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 .question-section .form-wrapper {
    width: 100%;
    margin-top: 1.24rem;
  }
}
.contact-page .question-section .form-wrapper .item {
  width: 4.5rem;
  margin-top: 0.18rem;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item {
    width: 100%;
    margin-top: 0.08rem;
  }
  .contact-page .question-section .form-wrapper .item:first-child {
    margin-top: 0;
  }
}
.contact-page .question-section .form-wrapper .item.row1 {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .contact-page .question-section .form-wrapper .item:nth-child(-n+2) {
    margin-top: 0;
  }
}
.contact-page .question-section .form-wrapper .item .label {
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item .label {
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .question-section .form-wrapper .item .label .red {
  color: #DA0707;
}
.contact-page .question-section .form-wrapper .item .value {
  margin-top: 0.1rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item .value {
    margin-top: 0.2rem;
  }
}
.contact-page .question-section .form-wrapper .item .value input {
  width: 100%;
  height: 0.64rem;
  color: #FFFFFF;
  padding: 0 0.2rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.08rem;
  border: 0.01rem solid transparent;
  caret-color: #fff;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item .value input {
    height: 0.9rem;
    border-radius: 0.16rem;
    padding: 0 0.3rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .question-section .form-wrapper .item .value input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value input:focus {
  border: 0.01rem solid #676CC4;
}
.contact-page .question-section .form-wrapper .item .value textarea {
  font-size: 0.16rem;
  line-height: 0.19rem;
  padding: 0.2rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.08rem;
  border: 0.01rem solid transparent;
  resize: none;
  caret-color: #fff;
  height: 2rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item .value textarea {
    padding: 0.28rem 0.3rem;
    height: 3.6rem;
    border-radius: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.contact-page .question-section .form-wrapper .item .value textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .question-section .form-wrapper .item .value textarea:focus {
  border: 0.01rem solid #676CC4;
}
.contact-page .question-section .form-wrapper .item .value .svg {
  cursor: pointer;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.15rem;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item .value .svg {
    width: 0.19rem;
  }
}
.contact-page .question-section .form-wrapper .item .value .svg path {
  fill: #fff;
}
.contact-page .question-section .form-wrapper .item .value .code-img {
  cursor: pointer;
  position: absolute;
  height: 0.46rem;
  top: 50%;
  right: 0.08rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item .value .code-img {
    height: 80%;
    right: 0.16rem;
  }
}
.contact-page .question-section .form-wrapper .item .error {
  opacity: 0;
  z-index: -1;
  position: relative;
  margin-top: 0.06rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: #DA0707;
  font-family: var(--sk-font-Regular);
  min-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item .error {
    margin-top: 0.1rem;
    font-size: 0.28rem;
    line-height: 1;
    min-height: 0.28rem;
  }
}
.contact-page .question-section .form-wrapper .item.required .value input {
  border: 0.01rem solid rgba(218, 7, 7, 0.8);
}
.contact-page .question-section .form-wrapper .item.required .value textarea {
  border: 0.01rem solid rgba(218, 7, 7, 0.8);
}
.contact-page .question-section .form-wrapper .item.required .error {
  opacity: 1;
  z-index: 1;
}
.contact-page .question-section .form-wrapper .item.select {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.contact-page .question-section .form-wrapper .item.select.show .svg {
  -webkit-transform: rotate(180deg) translateY(50%);
      -ms-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
.contact-page .question-section .form-wrapper .item.select.show .select-layer {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
}
.contact-page .question-section .form-wrapper .item.select input {
  cursor: pointer;
}
.contact-page .question-section .form-wrapper .item.select .select-layer {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0.6rem);
      -ms-transform: translateY(0.6rem);
          transform: translateY(0.6rem);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 0.1rem);
  width: 100%;
  left: 0;
  border-radius: 0.16rem;
  background: #1E1A34;
  padding: 0.18rem 0.2rem;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item.select .select-layer {
    border-radius: 0.24rem;
    padding: 0.24rem 0.3rem;
  }
}
.contact-page .question-section .form-wrapper .item.select .select-layer .inner .sel-li {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  margin-bottom: 0.14rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(255, 255, 255, 0.8);
}
.contact-page .question-section .form-wrapper .item.select .select-layer .inner .sel-li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .item.select .select-layer .inner .sel-li {
    font-size: 0.28rem;
    line-height: 0.33rem;
    margin-bottom: 0.2rem;
  }
}
.contact-page .question-section .form-wrapper .item.select .select-layer .inner .sel-li:hover {
  color: #fff;
}
.contact-page .question-section .form-wrapper .bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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 .question-section .form-wrapper .bottom-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-page .question-section .form-wrapper .hry__btn {
  margin-top: 0.3rem;
  background: #FFFFFF;
  color: #1E1A34;
  min-width: 2rem;
}
@media screen and (max-width: 800px) {
  .contact-page .question-section .form-wrapper .hry__btn {
    margin-top: 0.8rem;
    width: 100%;
  }
}

.privacy___policy {
  margin-top: 0.04rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.privacy___policy .check-box {
  width: 0.2rem;
  height: 0.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.12rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .privacy___policy .check-box {
    width: 0.36rem;
    height: 0.36rem;
    margin-right: 0.16rem;
  }
}
.privacy___policy .check-box .check-img {
  height: 100%;
  width: 100%;
}
.privacy___policy .check-box .check-img.true {
  display: none;
}
.privacy___policy .check-box.on .check-img.true {
  display: block;
}
.privacy___policy .check-box.on .check-img.false {
  display: none;
}
.privacy___policy .txt {
  margin-top: 0.02rem;
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .privacy___policy .txt {
    margin-top: 0.04rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.privacy___policy .txt a {
  font-size: 0.14rem;
  line-height: 0.16rem;
  color: #ffffff;
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .privacy___policy .txt a {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}

.about-solinteg-page {
  overflow: hidden;
  background: #121622;
}
.about-solinteg-page .banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.about-solinteg-page .banner-section .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-filter: blur(0.5rem);
          filter: blur(0.5rem);
  -webkit-transition: 0s;
  transition: 0s;
  will-change: transform;
}
.about-solinteg-page .banner-section .heritage-inner {
  height: 100%;
  width: 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;
}
.about-solinteg-page .banner-section .heritage-inner .hero-thumbnails {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-solinteg-page .banner-section .heritage-inner .hero-thumbnails .image_inner {
  width: 3.18rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 0.16rem;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .banner-section .heritage-inner .hero-thumbnails .image_inner {
    width: 4rem;
    height: 5rem;
    border-radius: 0.24rem;
  }
}
.about-solinteg-page .banner-section .heritage-inner .hero-thumbnails .image_inner.is-active {
  visibility: visible;
}
.about-solinteg-page .banner-section .heritage-inner .hero-thumbnails .image_inner .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.about-solinteg-page .banner-section .heritage-inner .hero-thumbnails .image_inner:last-child {
  width: 100%;
  height: 100%;
  border-radius: 0;
  will-change: clip-path;
  -webkit-clip-path: inset(calc(50% - 2rem) calc(50% - 1.6rem) calc(50% - 2rem) calc(50% - 1.6rem) round 0.16rem);
          clip-path: inset(calc(50% - 2rem) calc(50% - 1.6rem) calc(50% - 2rem) calc(50% - 1.6rem) round 0.16rem);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .banner-section .heritage-inner .hero-thumbnails .image_inner:last-child {
    -webkit-clip-path: inset(calc(50% - 2.5rem) calc(50% - 2rem) calc(50% - 2.5rem) calc(50% - 2rem) round 0.24rem);
            clip-path: inset(calc(50% - 2.5rem) calc(50% - 2rem) calc(50% - 2.5rem) calc(50% - 2rem) round 0.24rem);
  }
}
.about-solinteg-page .banner-section .heritage-inner .hero-thumbnails .image_inner:last-child .img {
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}
.about-solinteg-page .banner-section .c-image_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.about-solinteg-page .banner-section .heritage-hero_line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0.01rem;
  width: 7.2rem;
  will-change: width;
  background: -webkit-linear-gradient(left, rgba(210, 97, 95, 0), rgba(210, 97, 95, 0.5), #8a507d, #674da0, #676cc4, rgba(103, 108, 196, 0));
  background: linear-gradient(90deg, rgba(210, 97, 95, 0), rgba(210, 97, 95, 0.5), #8a507d, #674da0, #676cc4, rgba(103, 108, 196, 0));
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .banner-section .heritage-hero_line {
    width: 0.02rem;
    height: 60vh;
    background: -webkit-linear-gradient(bottom, rgba(210, 97, 95, 0), rgba(210, 97, 95, 0.5), #8a507d, #674da0, #676cc4, rgba(103, 108, 196, 0));
    background: linear-gradient(0deg, rgba(210, 97, 95, 0), rgba(210, 97, 95, 0.5), #8a507d, #674da0, #676cc4, rgba(103, 108, 196, 0));
  }
}
.about-solinteg-page .banner-section .heritage-hero_heading {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.about-solinteg-page .banner-section .heritage-hero_heading.phone {
  opacity: 0;
}
.about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title {
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.72rem;
  line-height: 0.85rem;
  white-space: nowrap;
  will-change: width;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title .hero-left {
  -webkit-transform: translateX(-4.8rem);
      -ms-transform: translateX(-4.8rem);
          transform: translateX(-4.8rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  will-change: transform, width;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title .hero-left {
    -webkit-transform: translate(-50%, calc(-35vh - 50%));
        -ms-transform: translate(-50%, calc(-35vh - 50%));
            transform: translate(-50%, calc(-35vh - 50%));
    position: absolute;
  }
}
.about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title .hero-right {
  -webkit-transform: translateX(4.8rem);
      -ms-transform: translateX(4.8rem);
          transform: translateX(4.8rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  will-change: transform, width;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title .hero-right {
    -webkit-transform: translate(-50%, calc(35vh - 50%));
        -ms-transform: translate(-50%, calc(35vh - 50%));
            transform: translate(-50%, calc(35vh - 50%));
    position: absolute;
  }
}
.about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title span {
  display: inline-block;
}
.about-solinteg-page .banner-section .heritage-hero_heading .heritage-hero_title span.active {
  will-change: width, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.about-solinteg-page .our-story-section {
  padding: 2.4rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .our-story-section {
    padding: 2.4rem 0.3rem 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about-solinteg-page .our-story-section .left-img-box {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .our-story-section .left-img-box {
    width: 100%;
    height: 6.9rem;
    border-radius: 0.24rem;
    margin-top: 0.8rem;
  }
}
.about-solinteg-page .our-story-section .left-img-box .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
}
.about-solinteg-page .our-story-section .our-story {
  width: 7.7rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .our-story-section .our-story {
    width: 100%;
  }
}
.about-solinteg-page .our-story-section .our-story .tit {
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .our-story-section .our-story .tit {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.about-solinteg-page .our-story-section .our-story .txt {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .our-story-section .our-story .txt {
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.about-solinteg-page .corporate-culture-section {
  padding-top: 0.55rem;
  color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section {
    padding-top: 1.6rem;
    margin-bottom: 4.2rem;
  }
}
.about-solinteg-page .corporate-culture-section .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .img-bg {
    object-fit: cover;
    top: auto;
    bottom: 0;
  }
}
.about-solinteg-page .corporate-culture-section .top-label {
  position: relative;
  z-index: 20;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .top-label {
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.about-solinteg-page .corporate-culture-section .top-tit {
  color: #FFFFFF;
  text-align: center;
  font-size: 0.64rem;
  line-height: 0.75rem;
  width: 8.47rem;
  margin: 0.24rem auto 0;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .top-tit {
    width: calc(100% - 0.6rem);
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper {
  margin: 0.6rem auto 3.2rem;
  position: relative;
  overflow: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 1.62rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper {
    margin: 2.02rem auto 0;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -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;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list {
    width: 6.6rem;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list .logo-box {
  position: relative;
  width: 7.6rem;
  height: 7.6rem;
  overflow: hidden;
  -webkit-mask: -webkit-linear-gradient(#fff, #fff) content-box, -webkit-linear-gradient(#fff, #fff);
          mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 0.02rem;
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list .logo-box {
    width: 100%;
    height: 6.6rem;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list .logo-box:first-child {
  padding-right: 0;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list .logo-box:first-child {
    padding-right: 0.02rem;
    padding-bottom: 0;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list .logo-box .before {
  display: none;
}
@media screen and (min-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list .logo-box .before {
    display: block;
    will-change: transform;
    -webkit-transition: 0s;
    transition: 0s;
    content: "";
    position: absolute;
    height: 30.4rem;
    width: 30.4rem;
    object-fit: cover;
    max-width: none;
    max-height: none;
    -webkit-transform: translate3d(var(--x, -10000px), var(--y, -10000px), 0);
            transform: translate3d(var(--x, -10000px), var(--y, -10000px), 0);
    -webkit-transition: -webkit-transform 0.1s ease-out;
    transition: -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list ._inner {
  position: absolute;
  width: 7.58rem;
  height: 7.56rem;
  overflow: hidden;
  top: 0.02rem;
  left: 0.02rem;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list ._inner {
    width: 100%;
    height: 6.6rem;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list ._inner:last-child {
  left: auto;
  right: 0.02rem;
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list ._inner .before {
  display: none;
}
@media screen and (min-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .logo-list ._inner .before {
    display: block;
    z-index: -1;
    will-change: transform;
    -webkit-transition: 0s;
    transition: 0s;
    content: "";
    position: absolute;
    height: 30.4rem;
    max-width: none;
    max-height: none;
    width: 30.4rem;
    opacity: 0.2;
    -webkit-transform: translate3d(var(--x, -10000px), var(--y, -10000px), 0);
            transform: translate3d(var(--x, -10000px), var(--y, -10000px), 0);
    -webkit-transition: -webkit-transform 0.1s ease-out;
    transition: -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact {
  width: 50%;
  height: 100%;
  padding: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact {
    width: 100%;
    height: 50%;
    padding: 0.3rem;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .icon {
  width: 1.78rem;
  height: 1.78rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .txt-con .label {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .txt-con .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .txt-con .name {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 0.37rem;
  font-size: 0.48rem;
  line-height: 0.56rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .txt-con .name {
    margin-top: 0.13rem;
    font-size: 0.56rem;
    line-height: 0.66rem;
    color: #FFFFFF;
  }
}
.about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .txt-con .txt {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.24rem;
  line-height: 0.28rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact .txt-con .txt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (min-width: 800px) {
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact:hover .icon {
    -webkit-animation: rotate 3s linear infinite;
            animation: rotate 3s linear infinite;
  }
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact:hover .txt-con .label {
    color: #fff;
  }
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact:hover .txt-con .name {
    color: #fff;
  }
  .about-solinteg-page .corporate-culture-section .logo-list_wrapper .contact_wrapper .logo-contact:hover .txt-con .txt {
    color: #fff;
  }
}
.about-solinteg-page .corporate-culture-section .border-contact {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15.12rem;
  height: 7.6rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact {
    height: 13.2rem;
    width: 6.6rem;
  }
}
.about-solinteg-page .corporate-culture-section .border-contact::after {
  content: "";
  position: absolute;
  height: 0.98rem;
  width: 0.02rem;
  left: 50%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact::after {
    width: 1.34rem;
    height: 0.02rem;
    right: 100%;
    left: auto;
    top: 0.02rem;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
  }
}
.about-solinteg-page .corporate-culture-section .border-contact::before {
  content: "";
  position: absolute;
  height: 0.98rem;
  width: 0.02rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact::before {
    width: 1.34rem;
    height: 0.02rem;
    left: 100%;
    bottom: 0.02rem;
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
    background: linear-gradient(to left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
  }
}
.about-solinteg-page .corporate-culture-section .border-contact .left-contact {
  position: absolute;
  left: 0;
  -webkit-transform: translateX(calc(-100% - .04rem));
      -ms-transform: translateX(calc(-100% - .04rem));
          transform: translateX(calc(-100% - .04rem));
  width: 7.6rem;
  height: 7.6rem;
  border-top: 0.02rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.02rem solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact .left-contact {
    width: 6.6rem;
    height: 6.6rem;
    bottom: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    border-top: 0.02rem solid rgba(255, 255, 255, 0.3);
    border-bottom: 0.02rem solid rgba(255, 255, 255, 0.3);
  }
}
.about-solinteg-page .corporate-culture-section .border-contact .left-contact::after {
  content: "";
  position: absolute;
  height: 0.98rem;
  width: 0.02rem;
  top: -0.02rem;
  right: -0.02rem;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact .left-contact::after {
    height: 1.34rem;
    top: calc(-100% - 0.04rem);
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  }
}
.about-solinteg-page .corporate-culture-section .border-contact .left-contact::before {
  content: "";
  position: absolute;
  height: 0.98rem;
  width: 0.02rem;
  bottom: -0.02rem;
  right: -0.02rem;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact .left-contact::before {
    height: 1.34rem;
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  }
}
.about-solinteg-page .corporate-culture-section .border-contact .right-contact {
  position: absolute;
  right: 0;
  -webkit-transform: translateX(calc(100% + .03rem));
      -ms-transform: translateX(calc(100% + .03rem));
          transform: translateX(calc(100% + .03rem));
  width: 7.6rem;
  height: 7.6rem;
  border-top: 0.02rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.02rem solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact .right-contact {
    width: 6.6rem;
    height: 6.62rem;
    top: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    border-top: 0.02rem solid rgba(255, 255, 255, 0.3);
    border-bottom: 0.02rem solid rgba(255, 255, 255, 0.3);
  }
}
.about-solinteg-page .corporate-culture-section .border-contact .right-contact::after {
  content: "";
  position: absolute;
  height: 0.98rem;
  width: 0.02rem;
  top: -0.02rem;
  left: -0.01rem;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact .right-contact::after {
    height: 1.34rem;
    left: -0.02rem;
    top: -0.01rem;
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  }
}
.about-solinteg-page .corporate-culture-section .border-contact .right-contact::before {
  content: "";
  position: absolute;
  height: 0.98rem;
  width: 0.02rem;
  bottom: -0.02rem;
  left: -0.01rem;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .corporate-culture-section .border-contact .right-contact::before {
    top: 200%;
    height: 1.34rem;
    left: -0.02rem;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  }
}
.about-solinteg-page .global-layout-section {
  padding: 0.1rem 1rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section {
    padding: 0 0 2.4rem;
  }
}
.about-solinteg-page .global-layout-section .global-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .global-bg {
    height: auto;
  }
}
.about-solinteg-page .global-layout-section .global-main {
  position: relative;
  z-index: 10;
}
.about-solinteg-page .global-layout-section .h2 {
  color: #FFFFFF;
  font-size: 0.64rem;
  line-height: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .h2 {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.about-solinteg-page .global-layout-section .global-infor {
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -webkit-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) {
  .about-solinteg-page .global-layout-section .global-infor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-solinteg-page .global-layout-section .global-infor .item {
  margin-right: 0.6rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .global-infor .item {
    margin-right: 0;
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.about-solinteg-page .global-layout-section .global-infor .item:last-child {
  margin-right: 0;
}
.about-solinteg-page .global-layout-section .global-infor .item .value {
  color: #FFFFFF;
}
.about-solinteg-page .global-layout-section .map-box {
  margin-top: 0.75rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .map-box {
    margin-top: 0.5rem;
  }
}
.about-solinteg-page .global-layout-section .map-box .map {
  width: 100%;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box {
  position: absolute;
  z-index: 10;
  top: var(--top);
  left: var(--left);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point {
    height: 0.36rem;
    width: 0.36rem;
  }
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--color);
  opacity: 0.2;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--color);
  border: 0.02rem solid var(--color);
  -webkit-transform: translate(-50%, -50%) scale(0.25);
      -ms-transform: translate(-50%, -50%) scale(0.25);
          transform: translate(-50%, -50%) scale(0.25);
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point .star {
  width: 0.26rem;
  height: 0.27rem;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point .label {
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: #FFFFFF;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point .label {
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 0.18rem;
    line-height: 0.21rem;
    margin-top: -0.06rem;
  }
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper {
  padding-left: 0.1rem;
  top: 0;
  left: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper.right {
  left: auto;
  right: 100%;
  padding-left: 0.1rem;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper.top {
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  bottom: 100%;
  padding-bottom: 0.1rem;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper.bottom {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  padding-top: 0.1rem;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper .point-crad {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.16rem;
  padding: 0.2rem 0.2rem 0.4rem;
  width: 3.3rem;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper .point-crad::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper .point-crad .crad-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper .point-crad .crad-header .svg {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper .point-crad .crad-header .name {
  margin-top: 0.04rem;
  padding-left: 0.1rem;
  font-size: 0.2rem;
  line-height: 0.24rem;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper .point-crad .address {
  margin-top: 0.21rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
}
.about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box .point-crad-wrapper .point-crad .phone {
  margin-top: 0.09rem;
  font-size: 0.16rem;
  line-height: 0.19rem;
}
@media screen and (min-width: 800px) {
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box:hover {
    z-index: 20;
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box:hover .point-crad-wrapper {
    opacity: 1;
    visibility: visible;
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box:hover .point-crad-wrapper .point-crad {
    -webkit-transition: all 0.4s 0.1s;
    transition: all 0.4s 0.1s;
    opacity: 1;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box:hover .point::before {
    opacity: 1;
    -webkit-transform: scale(0.25);
        -ms-transform: scale(0.25);
            transform: scale(0.25);
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box:hover .point::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    background: transparent;
  }
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box.hover {
    z-index: 20;
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box.hover .point-crad-wrapper {
    opacity: 1;
    visibility: visible;
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box.hover .point-crad-wrapper .point-crad {
    opacity: 1;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box.hover .point {
    width: 0.64rem;
    height: 0.64rem;
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box.hover .point::before {
    opacity: 1;
    -webkit-transform: scale(0.25);
        -ms-transform: scale(0.25);
            transform: scale(0.25);
  }
  .about-solinteg-page .global-layout-section .map-box .anchor-list .anchor-box.hover .point::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    background: transparent;
  }
}
.about-solinteg-page .global-layout-section .label-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.2rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .label-list {
    -webkit-column-gap: 0.6rem;
       -moz-column-gap: 0.6rem;
            column-gap: 0.6rem;
    row-gap: 0.18rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.about-solinteg-page .global-layout-section .label-list .label-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.75rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .label-list .label-box {
    margin-right: 0;
  }
}
.about-solinteg-page .global-layout-section .label-list .label-box:last-child {
  margin-right: 0;
}
.about-solinteg-page .global-layout-section .label-list .label-box .label-icon {
  width: 0.26rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .label-list .label-box .label-icon {
    width: 0.32rem;
  }
}
.about-solinteg-page .global-layout-section .label-list .label-box .label-color {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background-color: var(--color);
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .label-list .label-box .label-color {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.about-solinteg-page .global-layout-section .label-list .label-box .txt {
  color: #FFFFFF;
  margin-left: 0.1rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .global-layout-section .label-list .label-box .txt {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.about-solinteg-page .global-layout-section .anchor-swiper {
  margin-top: 1.3rem;
  padding: 0 0.3rem;
  width: 6.2rem;
}
.about-solinteg-page .global-layout-section .anchor-swiper .swiper-wrapper .swiper-slide {
  width: 5.6rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  color: #FFFFFF;
  padding: 0.5rem 0.3rem 0.2rem;
}
.about-solinteg-page .global-layout-section .anchor-swiper .swiper-wrapper .swiper-slide .swiper-heder-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;
}
.about-solinteg-page .global-layout-section .anchor-swiper .swiper-wrapper .swiper-slide .swiper-heder-box .svg {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
}
.about-solinteg-page .global-layout-section .anchor-swiper .swiper-wrapper .swiper-slide .swiper-heder-box .name {
  margin-left: 0.21rem;
  font-size: 0.36rem;
  line-height: 0.42rem;
}
.about-solinteg-page .global-layout-section .anchor-swiper .swiper-wrapper .swiper-slide .address {
  margin-top: 0.43rem;
  font-size: 0.28rem;
  line-height: 0.33rem;
  width: 3.8rem;
}
.about-solinteg-page .global-layout-section .anchor-swiper .swiper-wrapper .swiper-slide .phone {
  margin-top: 0.27rem;
  font-size: 0.28rem;
  line-height: 0.33rem;
}
.about-solinteg-page .global-layout-section .swiper-btns {
  margin-top: 0.6rem;
  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;
  padding: 0 0.3rem;
}
.about-solinteg-page .global-layout-section .swiper-btns .swiper-button {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.12rem;
  background: #EFEFED;
  margin-left: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-solinteg-page .global-layout-section .swiper-btns .swiper-button .svg-ctx {
  width: 0.25rem;
}
.about-solinteg-page .global-layout-section .swiper-btns .swiper-button.prev .svg-ctx {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.about-solinteg-page .environmental-section {
  background: #F7F7F6;
  padding: 2.4rem 1rem 1.07rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section {
    padding: 2.4rem 0.3rem 0;
  }
}
.about-solinteg-page .environmental-section .environmental-banner {
  height: 9.26rem;
  border-radius: 0.16rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner {
    height: 12.8rem;
    border-radius: 0.24rem;
  }
}
.about-solinteg-page .environmental-section .environmental-banner .bg-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box {
  position: relative;
  height: 100%;
  padding: 0.87rem 0.2rem 0.2rem 0.6rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner .banner-box {
    padding: 0.6rem 0.3rem 0.3rem;
  }
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box .tit {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner .banner-box .tit {
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box .txt {
  margin-top: 0.24rem;
  width: 6.73rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner .banner-box .txt {
    margin-top: 0.24rem;
    font-size: 0.32rem;
    line-height: 0.38rem;
    width: 100%;
  }
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box .hry__btn {
  margin-top: 0.48rem;
  background-color: #fff;
  min-width: 2.8rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner .banner-box .hry__btn {
    margin-top: 0.6rem;
    min-width: 4.5rem;
  }
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list {
    right: 0.3rem;
    bottom: 0.3rem;
    width: calc(100% - 0.6rem);
  }
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list .card-box {
  margin-left: 0.2rem;
  width: 3.2rem;
  height: 2.4rem;
  background: rgba(18, 22, 34, 0.2);
  border-radius: 0.16rem;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  padding: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list .card-box {
    width: calc(50% - 0.05rem);
    height: 3.1rem;
    margin-left: 0.2rem;
  }
  .about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list .card-box:first-child {
    margin-left: 0;
  }
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list .card-box .num {
  font-size: 0.48rem;
  line-height: 0.56rem;
}
.about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list .card-box .txt {
  width: 2.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .environmental-banner .banner-box .card-list .card-box .txt {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.about-solinteg-page .environmental-section .social-governance {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .social-governance {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.about-solinteg-page .environmental-section .social-governance .card-box {
  width: calc(50% - 0.1rem);
  margin-right: 0.2rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  height: 5.6rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .social-governance .card-box {
    width: 100%;
    height: 6.9rem;
    margin-right: 0;
    border-radius: 0.24rem;
    margin-top: 0.3rem;
  }
}
.about-solinteg-page .environmental-section .social-governance .card-box .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: 0s;
  transition: 0s;
}
.about-solinteg-page .environmental-section .social-governance .card-box:nth-child(2n) {
  margin-right: 0;
}
.about-solinteg-page .environmental-section .social-governance .card-box .card-con {
  position: relative;
  padding: 0.3rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .social-governance .card-box .card-con {
    padding: 0.4rem 0.3rem;
  }
}
.about-solinteg-page .environmental-section .social-governance .card-box .card-con .tit {
  font-size: 0.36rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .social-governance .card-box .card-con .tit {
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.about-solinteg-page .environmental-section .social-governance .card-box .card-con .txt {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.2rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .environmental-section .social-governance .card-box .card-con .txt {
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.about-solinteg-page .contact-us-section {
  height: 12.62rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .contact-us-section {
    height: 16.24rem;
  }
}
.about-solinteg-page .contact-us-section .bg-img {
  position: absolute;
  width: 100%;
  left: 0;
  height: calc(100% + 0.16rem);
  -webkit-transition: 0s;
  transition: 0s;
}
.about-solinteg-page .contact-us-section .contact-us-con {
  position: relative;
  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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1.73rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .contact-us-section .contact-us-con {
    padding-bottom: 1.98rem;
  }
}
.about-solinteg-page .contact-us-section .contact-us-con .txt {
  width: 9.62rem;
  color: #FFFFFF;
  font-size: 0.48rem;
  line-height: 0.56rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .contact-us-section .contact-us-con .txt {
    width: 6.9rem;
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
}
.about-solinteg-page .contact-us-section .contact-us-con .hry__btn {
  margin-top: 0.48rem;
}
@media screen and (max-width: 800px) {
  .about-solinteg-page .contact-us-section .contact-us-con .hry__btn {
    margin-top: 0.6rem;
    min-width: 3.2rem;
  }
}

.integ-eco-home-page {
  background: #121622;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page {
    overflow: hidden;
  }
}
.integ-eco-home-page .home-banner {
  position: relative;
}
.integ-eco-home-page .home-banner .section_application_scenarios {
  height: 100vh;
  width: 100%;
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container {
  height: 100%;
  width: 100%;
  position: relative;
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li {
  height: 100%;
  width: 100%;
  position: absolute;
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .home-banner-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .bg-img {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12rem;
  height: 90%;
  z-index: 5;
  border-radius: 0.16rem;
  overflow: hidden;
  will-change: width height top border-radius;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .bg-img {
    width: 4.8rem;
    height: 6.4rem;
    border-radius: 0.32rem;
  }
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .con-box {
  position: relative;
  z-index: 10;
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .con-box .h1 {
  text-align: center;
  margin-top: 2.74rem;
  font-size: 0.72rem;
  line-height: 0.85rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .con-box .h1 {
    margin-top: 3.28rem;
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .con-box .txt {
  margin: 0.24rem auto 0;
  width: 8rem;
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .home-banner .section_application_scenarios .application_scenarios-container .solution-li .con-box .txt {
    margin: 0.36rem auto 0;
    width: 6.5rem;
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.integ-eco-home-page .unlock-energy-section {
  padding-top: 2.57rem;
  padding-bottom: 1.43rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section {
    padding-top: 2.17rem;
    padding-bottom: 0.9rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.integ-eco-home-page .unlock-energy-section .h2 {
  width: 12rem;
  text-align: center;
  margin: 0 auto;
  font-size: 0.64rem;
  line-height: 0.75rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .h2 {
    width: 100%;
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container {
  margin-top: 1.05rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container {
    margin-top: 1.2rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container:last-child {
  margin-bottom: 0;
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box {
  width: 9.6rem;
  height: 6.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  margin-left: 0.11rem;
  margin-right: 0.11rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box {
    width: 100%;
    height: 8.2rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.3rem;
    border-radius: 0.24rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box .con-box {
  position: relative;
  padding: 0.3rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box .con-box {
    padding: 0.4rem 0.3rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box .con-box .tit {
  font-size: 0.32rem;
  line-height: 0.38rem;
  width: 4.72rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box .con-box .tit {
    width: 100%;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box .con-box .txt {
  margin-top: 0.1rem;
  width: 4.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-img-box .con-box .txt {
    margin-top: 0.16rem;
    width: 100%;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box {
  width: 5.4rem;
  height: 6.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  margin-left: 0.11rem;
  margin-right: 0.11rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box {
    width: 100%;
    height: 8.2rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.3rem;
    border-radius: 0.24rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box .con-box {
  height: 100%;
  padding: 0.3rem 0.3rem 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box .con-box {
    padding: 0.4rem 0.3rem 0.2rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box .con-box .con-hader {
  margin-bottom: 0.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box .con-box .con-hader .tit {
  font-size: 0.32rem;
  line-height: 0.38rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box .con-box .con-hader .tit {
    width: 100%;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box .con-box .con-hader .txt {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
  width: 4rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .unlock-energy-section .card-list-container .card-container .card-chart-box .con-box .con-hader .txt {
    margin-top: 0.16rem;
    width: 100%;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.integ-eco-home-page .application-scenarios {
  min-height: 14rem;
  padding-top: 1.43rem;
  padding-bottom: 2.4rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios {
    min-height: 13rem;
    padding-top: 1.2rem;
    padding-bottom: 1.43rem;
    overflow: hidden;
  }
}
.integ-eco-home-page .application-scenarios .bg-light-img {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 30vh;
  left: 0;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .bg-light-img {
    height: auto;
    top: 5rem;
  }
}
.integ-eco-home-page .application-scenarios .h2 {
  font-size: 0.64rem;
  line-height: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .h2 {
    font-size: 0.72rem;
    line-height: 0.85rem;
    padding: 0 0.3rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container {
  position: relative;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .label-list {
  position: absolute;
  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;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .label-list.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .label-list {
    width: 100%;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    top: 0.85rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .label-list .label-box {
  margin-right: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .label-list .label-box {
    margin-right: 0.3rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .label-list .label-box:last-child {
  margin-right: 0;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .label-list .label-box .bar {
  width: 0.44rem;
  height: 0;
  border-top: 0.02rem var(--borderStyle) var(--color);
  margin-right: 0.1rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .label-list .label-box .bar {
    border-top-width: 0.03rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .label-list .label-box .txt {
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .label-list .label-box .txt {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .bg-img {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .bg-img {
    width: 130%;
    height: auto;
    max-width: none;
    height: 12rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .scenarios-img-list {
  position: absolute;
  width: 80%;
  max-height: calc(100% - 2.2rem);
  top: calc(50% - 0.2rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 6.05rem;
  display: -webkit-box;
  display: -webkit-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) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .scenarios-img-list {
    width: 95%;
    top: calc(50% - 0.4rem);
    height: 12rem;
    max-height: none;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .scenarios-img-list .scenarios-img {
  width: 100%;
  object-fit: contain;
  display: none;
  -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;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .scenarios-img-list .scenarios-img .img {
  display: none;
  width: 100%;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .scenarios-img-list .scenarios-img .img.show {
  display: block;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .scenarios-img-list .scenarios-img.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body {
  position: absolute;
  width: 12rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-bottom: 0.42rem;
  bottom: 0;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body {
    position: inherit;
    padding-bottom: 0.6rem;
    width: 6.9rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-gradient {
  position: absolute;
  top: 0;
  bottom: 0.46rem;
  width: 1.8rem;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-gradient {
    width: 1rem;
    bottom: 0.68rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-gradient-left {
  left: -0.01rem;
  background: -webkit-linear-gradient(right, rgba(18, 22, 34, 0), #121622);
  background: linear-gradient(to left, rgba(18, 22, 34, 0), #121622);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-gradient-right {
  right: -0.01rem;
  background: -webkit-linear-gradient(left, rgba(18, 22, 34, 0), #121622);
  background: linear-gradient(to right, rgba(18, 22, 34, 0), #121622);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-wrapper {
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-wrapper .tabs {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 0.01rem solid rgba(255, 255, 255, 0.3);
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-wrapper .tabs .tab-pane {
  padding: 0.32rem 0;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 0.8rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: -0.01rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-wrapper .tabs .tab-pane {
    padding: 0.28rem 0;
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-wrapper .tabs .tab-pane:last-child {
  margin-right: 0;
}
.integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-wrapper .tabs .tab-pane.on {
  color: white;
  border-bottom: 0.02rem solid #FFFFFF;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .scenarios-img-container .tabs-body .tabs-wrapper .tabs .tab-pane.on {
    border-bottom: 0.04rem solid #FFFFFF;
  }
}
.integ-eco-home-page .application-scenarios .con-txt-wrapper {
  width: 12rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .con-txt-wrapper {
    width: 6rem;
  }
}
.integ-eco-home-page .application-scenarios .con-txt-wrapper .con-txt {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .application-scenarios .con-txt-wrapper .con-txt {
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.integ-eco-home-page .application-scenarios .con-txt-wrapper .con-txt.show {
  display: block;
}
.integ-eco-home-page .related-cases {
  color: #1E1A34;
  background: #F7F7F6;
  padding: 2.68rem 1rem 1.5rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases {
    overflow: hidden;
    padding: 2.4rem 0.3rem 1.45rem;
  }
}
.integ-eco-home-page .related-cases .tit-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .tit-btn {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.integ-eco-home-page .related-cases .tit-btn .h2 {
  font-size: 0.64rem;
  line-height: 0.75rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .tit-btn .h2 {
    font-size: 0.72rem;
    line-height: 0.85rem;
    width: 50%;
  }
}
.integ-eco-home-page .related-cases .tit-btn .swiper-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.integ-eco-home-page .related-cases .tit-btn .swiper-navigation .swiper-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-left: 0.1rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 0.1rem;
  background: #EFEFED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .tit-btn .swiper-navigation .swiper-btn {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.12rem;
    margin-left: 0.2rem;
  }
}
.integ-eco-home-page .related-cases .tit-btn .swiper-navigation .swiper-btn:hover {
  background: #DEDEDB;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.integ-eco-home-page .related-cases .tit-btn .swiper-navigation .swiper-btn.prev .svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.integ-eco-home-page .related-cases .tit-btn .swiper-navigation .swiper-btn .svg {
  width: 0.2rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .tit-btn .swiper-navigation .swiper-btn .svg {
    width: 0.25rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper {
  margin-top: 0.63rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper {
    margin-top: 0.8rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide {
  width: 4.8rem;
  height: 5.6rem;
  margin-right: 0.2rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  padding: 0.3rem 0.3rem 0.32rem 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide {
    height: auto;
    width: 5.6rem;
    padding: 0;
    margin-right: 0.3rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: relative;
    background: #EFEFED;
    border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0;
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .bg-img {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .bg-img {
    position: relative;
    z-index: 2;
    border-radius: 0.24rem;
    width: 100%;
    height: 5.6rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .name {
  color: #FFFFFF;
  font-size: 0.24rem;
  line-height: 0.28rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .name {
    position: absolute;
    -webkit-transform: translateY(-3rem);
        -ms-transform: translateY(-3rem);
            transform: translateY(-3rem);
    bottom: 0;
    padding: 0 0.33rem 0.3rem;
    font-size: 0.36rem;
    line-height: 0.42rem;
    width: 100%;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .address-time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.16rem;
  line-height: 0.19rem;
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .address-time .item {
  margin-top: 0.06rem;
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box {
  position: absolute;
  background: #EFEFED;
  border-radius: 0.16rem;
  padding: 0.2rem 0.2rem 0.26rem;
  -webkit-transform: translateY(calc(100% + 0.1rem));
      -ms-transform: translateY(calc(100% + 0.1rem));
          transform: translateY(calc(100% + 0.1rem));
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box {
    position: initial;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    height: 3rem;
    padding: 0.4rem 0.3rem 0.49rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .card-name {
  font-size: 0.24rem;
  line-height: 0.28rem;
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .card-address-time {
  margin-top: 0.19rem;
  color: rgba(30, 26, 52, 0.5);
  font-size: 0.16rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .card-address-time {
    margin-top: 0;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .card-address-time .item {
  margin-top: 0.06rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .card-address-time .item {
    margin-top: 0.1rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .card-address-time .item:first-child {
  margin-top: 0;
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .data-list {
  margin-top: 0.38rem;
  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) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .data-list {
    margin-top: 0.6rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .data-list .data-box {
  width: 50%;
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .data-list .data-box .num-label {
  font-size: 0.36rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .data-list .data-box .num-label {
    font-size: 0.4rem;
    line-height: 0.47rem;
  }
}
.integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .data-list .data-box .data-label {
  color: rgba(30, 26, 52, 0.8);
  font-size: 0.16rem;
  line-height: 0.19rem;
  margin-top: 0.05rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide .card-box .data-list .data-box .data-label {
    margin-top: 0.1rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
}
@media screen and (min-width: 800px) {
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide:hover .name {
    opacity: 0;
    visibility: hidden;
  }
  .integ-eco-home-page .related-cases .cases-swiper .swiper-wrapper .swiper-slide:hover .card-box {
    left: 0.1rem;
    right: 0.1rem;
    bottom: 0.1rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.integ-eco-home-page .related-cases .btns {
  margin: 0.8rem auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.integ-eco-home-page .related-cases .btns .hry__btn {
  background: #1E1A34;
  color: #FFFFFF;
}
.integ-eco-home-page .related-products {
  padding: 1.5rem 1rem 2.4rem;
  background: #F7F7F6;
  color: #1E1A34;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products {
    padding: 1.45rem 0.3rem 2.4rem;
  }
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products {
    overflow: hidden;
  }
}
.integ-eco-home-page .related-products .tit-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .tit-btn {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.integ-eco-home-page .related-products .tit-btn .h2 {
  font-size: 0.64rem;
  line-height: 0.75rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .tit-btn .h2 {
    width: 50%;
  }
}
.integ-eco-home-page .related-products .tit-btn .swiper-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.integ-eco-home-page .related-products .tit-btn .swiper-navigation .swiper-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-left: 0.1rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 0.1rem;
  background: #EFEFED;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .tit-btn .swiper-navigation .swiper-btn {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.12rem;
    margin-left: 0.2rem;
  }
}
.integ-eco-home-page .related-products .tit-btn .swiper-navigation .swiper-btn:hover {
  background: #DEDEDB;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.integ-eco-home-page .related-products .tit-btn .swiper-navigation .swiper-btn.prev .svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.integ-eco-home-page .related-products .tit-btn .swiper-navigation .swiper-btn .svg {
  width: 0.2rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .tit-btn .swiper-navigation .swiper-btn .svg {
    width: 0.25rem;
  }
}
.integ-eco-home-page .related-products .products-swiper {
  margin-top: 0.6rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .products-swiper {
    margin-top: 0.8rem;
  }
}
.integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide {
  height: 5.6rem;
  border-radius: 0.16rem;
  background: #EFEFED;
  padding: 0.3rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide {
    height: 5.6rem;
    width: 5.6rem;
    padding: 0.35rem 0.3rem 0.2rem;
  }
}
.integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide .name {
  font-size: 0.32rem;
  line-height: 0.38rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide .name {
    font-size: 0.36rem;
    line-height: 0.42rem;
  }
}
.integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide .pro-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide .pro-img .img {
  max-width: 4.95rem;
  max-height: 3.78rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide .pro-img .img {
    max-width: 4.8rem;
    max-height: 3.5rem;
  }
}
@media screen and (min-width: 800px) {
  .integ-eco-home-page .related-products .products-swiper .swiper-wrapper .swiper-slide:hover .pro-img .img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.integ-eco-home-page .monitoring-section {
  height: 9.6rem;
  background: #121622;
  padding-top: 1.22rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .monitoring-section {
    height: 16.24rem;
    padding-top: 2.4rem;
  }
}
.integ-eco-home-page .monitoring-section .bg-img {
  position: absolute;
  width: 16rem;
  right: 1.69rem;
  bottom: -5.15rem;
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .monitoring-section .bg-img {
    width: 200%;
    max-width: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -6rem;
  }
}
.integ-eco-home-page .monitoring-section .h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 0.64rem;
  line-height: 0.75rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .monitoring-section .h2 {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.integ-eco-home-page .monitoring-section .text {
  margin: 0.24rem auto 0;
  text-align: center;
  width: 8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .monitoring-section .text {
    width: 6.5rem;
    margin: 0.36rem auto 0;
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
}
.integ-eco-home-page .monitoring-section .btns {
  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;
}
.integ-eco-home-page .monitoring-section .btns .hry__btn {
  min-width: 3.19rem;
}
.integ-eco-home-page .monitoring-section .app-box {
  height: 7rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0s;
  transition: 0s;
}
@media screen and (max-width: 800px) {
  .integ-eco-home-page .monitoring-section .app-box {
    height: 9rem;
    width: 100%;
  }
}
.integ-eco-home-page .monitoring-section .app-box .img {
  height: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}
.integ-eco-home-page .monitoring-section .qr-img {
  width: 1.2rem;
  position: absolute;
  bottom: 1.83rem;
  right: 3.58rem;
}

.g-header .g-head-phone .g-head-main.product-page-page-head-main {
  display: none;
}

.product-page-page {
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .product-page-page .g-header[product-nav=true] .g-head-phone .g-head-main {
    -webkit-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
            transform: translateY(-10%);
    opacity: 0;
    visibility: hidden;
  }
  .product-page-page .g-header[product-nav=true] .g-head-phone .product-page-page-head-main {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .product-page-page .g-header .g-head-phone .g-head-main {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
  }
  .product-page-page .g-header .g-head-phone .product-page-page-head-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;
    height: 100%;
    padding: 0 0.1rem 0 0.4rem;
    -webkit-transform: translateY(-90%);
        -ms-transform: translateY(-90%);
            transform: translateY(-90%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select {
    display: block;
    width: 2.66rem;
    position: relative;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-input {
    height: 0.88rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.44rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0.3rem;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-input .txt {
    color: #FFFFFF;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-input .arrow {
    width: 0.17rem;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-input .arrow path {
    fill: #fff;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-dropdown {
    position: absolute;
    width: 2.66rem;
    top: calc(100% + 0.1rem);
    padding: 0.25rem 0.3rem 0.26rem;
    border-radius: 0.24rem;
    background: #303042;
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.5rem);
        -ms-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-dropdown.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-dropdown .select-option {
    margin-top: 0.26rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-dropdown .select-option.on {
    color: #FFFFFF;
  }
  .product-page-page .g-header .g-head-phone .g-head-main .product-select .select-dropdown .select-option:first-child {
    margin-top: 0;
  }
}
.product-page-page .product-bg-img {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
}
.product-page-page .product-main {
  position: relative;
  z-index: 10;
  margin-top: -0.06rem;
  padding: 0 1rem 2.4rem;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main {
    padding-top: 0.88rem;
    padding: 0 0.3rem 2.4rem;
  }
}
.product-page-page .product-main .product-section {
  padding-top: 2.4rem;
}
.product-page-page .product-main .product-section .tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .tit {
    -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;
  }
}
.product-page-page .product-main .product-section .tit .h2 {
  font-size: 0.64rem;
  line-height: 0.75rem;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .tit .h2 {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
}
.product-page-page .product-main .product-section .tit .introduction {
  padding-left: 0.29rem;
  padding-bottom: 0.1rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .tit .introduction {
    padding-bottom: 0;
    padding-left: 0;
    margin-top: 0.2rem;
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
}
.product-page-page .product-main .product-section .two-title {
  padding-top: 1.4rem;
  font-size: 0.4rem;
  line-height: 0.47rem;
  margin-bottom: -0.23rem;
}
.product-page-page .product-main .product-section .two-title:nth-child(2) {
  padding-top: 0.79rem;
}
.product-page-page .product-main .product-section .product-card-list {
  margin-top: 0.71rem;
  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) {
  .product-page-page .product-main .product-section .product-card-list {
    margin-top: 0.68rem;
  }
}
.product-page-page .product-main .product-section .product-card-list .product-card {
  width: calc((100% - 0.4rem) / 3);
  height: 5.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  margin-top: 0.2rem;
  margin-right: 0.2rem;
  padding: 0.22rem 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;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card {
    width: 100%;
    height: 6.9rem;
    border-radius: 0.24rem;
    margin-right: 0;
    margin-top: 0.3rem;
    padding: 0.37rem;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card:nth-child(3n) {
    margin-right: 0;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card:nth-child(-n+3) {
    margin-top: 0;
  }
}
.product-page-page .product-main .product-section .product-card-list .product-card[col="2"] {
  width: calc(50% - 0.1rem);
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card[col="2"] {
    width: 100%;
    height: 6.9rem;
    border-radius: 0.24rem;
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card[col="2"]:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card[col="2"]:nth-child(-n+2) {
    margin-top: 0;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card[col="2"]:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card[col="2"]:nth-child(2n) {
    margin-right: 0;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card[col="2"]:nth-child(3) {
    margin-top: 0.2rem;
  }
}
.product-page-page .product-main .product-section .product-card-list .product-card .tag {
  margin-top: 0.06rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.18rem;
  line-height: 0.21rem;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card .tag {
    font-size: 0.28rem;
    line-height: 0.33rem;
    margin-top: 0;
    margin-bottom: 0.16rem;
  }
}
.product-page-page .product-main .product-section .product-card-list .product-card .name {
  padding-top: 0.08rem;
  font-size: 0.36rem;
  line-height: 0.42rem;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card .name {
    padding-top: 0;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
}
.product-page-page .product-main .product-section .product-card-list .product-card .name span {
  color: rgba(255, 255, 255, 0.5);
}
.product-page-page .product-main .product-section .product-card-list .product-card .model {
  margin-top: 0.12rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card .model {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
    opacity: 1;
    visibility: visible;
  }
}
.product-page-page .product-main .product-section .product-card-list .product-card .pro-img-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-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;
}
.product-page-page .product-main .product-section .product-card-list .product-card .pro-img-box .img {
  max-width: 79%;
  max-height: 78%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-page-page .product-main .product-section .product-card-list .product-card .pro-img-box .img.front {
  opacity: 1;
  visibility: visible;
}
.product-page-page .product-main .product-section .product-card-list .product-card .pro-img-box .img.back {
  opacity: 0;
  visibility: hidden;
}
.product-page-page .product-main .product-section .product-card-list .product-card .pro-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card .pro-bg-img {
    border-radius: 0.24rem;
  }
}
.product-page-page .product-main .product-section .product-card-list .product-card .sk-translate-icon {
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .product-card:hover .model {
    opacity: 1;
    visibility: visible;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card:hover .sk-translate-icon {
    opacity: 1;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card:hover .pro-bg-img {
    opacity: 0.3;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card:hover .pro-img-box .img.front {
    opacity: 0;
    visibility: hidden;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card:hover .pro-img-box .img.back {
    opacity: 1;
    visibility: visible;
  }
  .product-page-page .product-main .product-section .product-card-list .product-card:hover .logo-list {
    opacity: 1;
    visibility: visible;
  }
}
.product-page-page .product-main .product-section .product-card-list .logo-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -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;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-mask: -webkit-linear-gradient(#fff, #fff) content-box, -webkit-linear-gradient(#fff, #fff);
          mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 0.02rem;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .logo-list {
    border-radius: 0.24rem;
    padding: 0.03rem;
  }
}
.product-page-page .product-main .product-section .product-card-list .logo-list::before {
  will-change: transform;
  -webkit-transition: 0s;
  transition: 0s;
  content: "";
  position: absolute;
  height: 22.4rem;
  width: 22.4rem;
  background-image: url(../images/target/base/hry/svg36.svg);
  background-size: contain;
  -webkit-transform: translate(var(--x, -1000000px), var(--y, -1000000px));
      -ms-transform: translate(var(--x, -1000000px), var(--y, -1000000px));
          transform: translate(var(--x, -1000000px), var(--y, -1000000px));
}
@media screen and (max-width: 800px) {
  .product-page-page .product-main .product-section .product-card-list .logo-list::before {
    -webkit-transform: translate(3rem, -7rem);
        -ms-transform: translate(3rem, -7rem);
            transform: translate(3rem, -7rem);
  }
}

.hry__btn {
  background-color: white;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

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

.parallax-img {
  will-change: transform;
  -webkit-transition: none !important;
  transition: none !important;
}

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

@-webkit-keyframes moveVertical {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@keyframes moveVertical {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes moveInCircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes moveInCircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes moveHorizontal {
  0% {
    -webkit-transform: translateX(-50%) translateY(-10%);
            transform: translateX(-50%) translateY(-10%);
  }
  50% {
    -webkit-transform: translateX(50%) translateY(10%);
            transform: translateX(50%) translateY(10%);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-10%);
            transform: translateX(-50%) translateY(-10%);
  }
}
@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateX(-50%) translateY(-10%);
            transform: translateX(-50%) translateY(-10%);
  }
  50% {
    -webkit-transform: translateX(50%) translateY(10%);
            transform: translateX(50%) translateY(10%);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-10%);
            transform: translateX(-50%) translateY(-10%);
  }
}
.fiexd-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #121622;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: -1;
}
.fiexd-background .gradients_container {
  --circle-size: 100%;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(80px);
          filter: blur(80px);
}
.fiexd-background .gradients_container .g1, .fiexd-background .gradients_container .g2, .fiexd-background .gradients_container .g3, .fiexd-background .gradients_container .g4 {
  --color: #8a507d;
  position: absolute;
  background: -webkit-radial-gradient(center, circle, var(--color) 0, rgba(0, 0, 0, 0) 50%) no-repeat;
  background: radial-gradient(circle at center, var(--color) 0, rgba(0, 0, 0, 0) 50%) no-repeat;
  mix-blend-mode: hard-light;
  width: var(--circle-size);
  height: var(--circle-size);
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  opacity: 1;
  will-change: transform;
}
.fiexd-background .gradients_container .g1 {
  --color: #8a507d;
  top: 10%;
  right: 20%;
  -webkit-animation: moveVertical 30s ease infinite;
          animation: moveVertical 30s ease infinite;
}
.fiexd-background .gradients_container .g2 {
  --color: #d2615f59;
  top: 10%;
  left: 10%;
  animation: moveInCircle 20s reverse infinite;
}
.fiexd-background .gradients_container .g3 {
  --color: #674DA0;
  top: 10%;
  right: 30%;
  -webkit-animation: moveInCircle 40s linear infinite;
          animation: moveInCircle 40s linear infinite;
}
.fiexd-background .gradients_container .g4 {
  --color: #676cc4;
  top: 5%;
  right: 50%;
  -webkit-transform-origin: 50% 20%;
      -ms-transform-origin: 50% 20%;
          transform-origin: 50% 20%;
  -webkit-animation: moveHorizontal 40s ease infinite;
          animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}

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

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

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

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

.product-head-main {
  display: none;
}

.firstScreenAnimate {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: hidden;
}
.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;
  left: 300%;
  z-index: 1;
}
@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 .hry__btn {
  min-width: 2rem;
}
.index-page .index-banner .swiper-container {
  position: relative;
  height: 100vh;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  height: 100vh;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-backgroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  z-index: -1;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-backgroud video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.89rem 0;
}
.index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-box .title {
  font-family: var(--sk-font-Medium);
  font-size: 0.72rem;
  line-height: 1.4rem;
  text-align: center;
  color: white;
}
.index-page .index-banner .swiper-container .swiper-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  left: 0;
  bottom: 0.55rem;
  z-index: 10;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.08rem 0.1rem;
  border-radius: 0.12rem;
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  background-color: rgba(187, 187, 187, 0.2);
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span {
  cursor: pointer;
  position: relative;
  background-color: white;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.04rem;
  margin-right: 0.08rem;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span:last-child {
  margin-right: 0;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span.on, .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span:hover {
  opacity: 1;
}
.index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span.on {
  width: 0.33rem;
  opacity: 1;
}
.index-page .advantage__section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index-page .advantage__section .wal {
  height: 100%;
}
.index-page .advantage__section .wal .img-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 60%;
  left: 65%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  will-change: left;
}
.index-page .advantage__section .wal .img-background canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.index-page .advantage__section .wal .-list {
  position: relative;
  width: 4.61rem;
  z-index: 2;
  padding-top: 25vh;
}
.index-page .advantage__section .wal .-list .-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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50vh;
  will-change: transform;
}
.index-page .advantage__section .wal .-list .-item .title {
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: white;
}
.index-page .advantage__section .wal .-list .-item .context {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.24rem;
}
.index-page .more__section {
  width: 100%;
  height: 250vh;
}
.index-page .more__section .more__section-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index-page .more__section .more__section-container .wal {
  height: 100%;
}
.index-page .more__section .more__section-container .wal .-background {
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.index-page .more__section .more__section-container .wal .-background img {
  object-fit: contain;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0.2;
}
.index-page .more__section .more__section-container .wal .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-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%;
  z-index: 1;
}
.index-page .more__section .more__section-container .wal .box h2 {
  position: relative;
  color: white;
}
.index-page .more__section .more__section-container .wal .box h2 .heading__word {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.index-page .more__section .more__section-container .wal .box h2 .heading__word .heading__word-wrapper {
  display: inline-table;
  font-size: 0.64rem;
  margin-right: 1rem;
}
.index-page .more__section .more__section-container .wal .box h2 .heading__word .heading__word-wrapper:last-child {
  margin-right: 0;
}
.index-page .more__section .more__section-container .wal .box h2 .heading__word .heading__word-wrapper .hide {
  font-size: 1.2rem;
  opacity: 0 !important;
}
.index-page .more__section .more__section-container .wal .box h2 .anchor-heading {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  opacity: 1;
  font-size: 2rem;
  white-space: nowrap;
}
.index-page .more__section .more__section-container .wal .box h2 .anchor-heading .anchor-letter {
  will-change: transform;
}
.index-page .more__section .more__section-container .wal .box .sub-title {
  text-align: center;
  font-size: 0.32rem;
  line-height: 0.38rem;
  color: white;
  margin-top: 0.24rem;
}
.index-page .more__section .more__section-container .wal .box .context {
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.32rem;
}
.index-page .more__section .more__section-container .wal .box .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.69rem;
}
.index-page .product__section .wal {
  padding-top: 1.2rem;
}
.index-page .product__section .wal .product-item {
  --title-fz: .36rem;
  --title-lh: .42rem;
  --context-fz: .2rem;
  --context-lh: .24rem;
  --context-mt: .16rem;
  --inner-padding: .32rem .3rem;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.index-page .product__section .wal .product-item.-big {
  --title-fz: .48rem;
  --title-lh: .56rem;
  --context-fz: .24rem;
  --context-lh: .28rem;
  --context-mt: .24rem;
  --inner-padding: .84rem .6rem;
}
.index-page .product__section .wal .product-item.-big .inner:hover .-background {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.index-page .product__section .wal .product-item .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: var(--inner-padding);
  min-height: 5.6rem;
  overflow: hidden;
}
.index-page .product__section .wal .product-item .inner:hover .-background {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.index-page .product__section .wal .product-item .inner:hover .-box .sk-translate-icon {
  opacity: 1;
}
.index-page .product__section .wal .product-item .inner .-background {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .product__section .wal .product-item .inner .-box {
  height: 100%;
}
.index-page .product__section .wal .product-item .inner .-box .title {
  font-size: var(--title-fz);
  line-height: var(--title-lh);
  color: white;
}
.index-page .product__section .wal .product-item .inner .-box .context {
  font-size: var(--context-fz);
  line-height: var(--context-lh);
  margin-top: var(--context-mt);
  color: rgba(255, 255, 255, 0.8);
}
.index-page .product__section .wal .product-item .inner .-box .btn-box {
  margin-top: 0.48rem;
}
.index-page .product__section .wal .product-item .inner .-box .sk-translate-icon {
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .product__section .wal .-list {
  margin-top: 0.2rem;
}
.index-page .mission__section {
  overflow: hidden;
}
.index-page .mission__section .mission__section-wrapper {
  padding-top: 2.8rem;
}
.index-page .mission__section .mission__section-wrapper .mission__section-head {
  color: white;
}
.index-page .mission__section .mission__section-wrapper .mission__section-head .title {
  text-align: center;
}
.index-page .mission__section .mission__section-wrapper .mission__section-head .text {
  text-align: center;
  font-size: 0.24rem;
  line-height: 0.28rem;
  margin-top: 0.24rem;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body {
  width: 100%;
  height: 100vh;
  padding: 1.04rem 0 0;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0.2rem;
  padding-bottom: 0.2rem;
  will-change: transform;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row.active {
  z-index: 2 !important;
}
@media screen and (min-width: 800px) {
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row:nth-child(2n) .cart-box:first-child {
    background-color: transparent;
  }
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  border-radius: 0.1rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  will-change: transform;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-bacground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-bacground img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  z-index: 2;
  color: white;
  padding: 0.33rem 0.3rem;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .title {
  font-size: 0.48rem;
  line-height: 0.56rem;
  color: rgba(255, 255, 255, 0.5);
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .title em {
  color: white;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .context {
  font-size: 0.32rem;
  line-height: 0.38rem;
  margin-top: 0.34rem;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4.45rem;
  height: 4.45rem;
  object-fit: contain;
  z-index: -1;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .size {
  margin: auto 0 0 auto;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.4);
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .size span {
  margin-right: 0.3rem;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .size span:last-child {
  margin-right: 0;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .size span.on {
  color: white;
}
.index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .btn-box {
  margin-top: auto;
}
.index-page .introduction__section .introduction__section-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.index-page .introduction__section .introduction__section-wrapper .content {
  --active-font-color: white;
  text-align: center;
  max-width: 10.61rem;
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}
.index-page .bg-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index-page .bg-section .wal {
  padding-top: 1.17rem;
  padding-bottom: 1.17rem;
  height: 100%;
}
.index-page .bg-section .wal .-background {
  z-index: 1;
  will-change: transform;
}
.index-page .bg-section .wal .-background img {
  -webkit-transition: none;
  transition: none;
  will-change: transform;
}
.index-page .bg-section .wal .-background .h-hero__mask {
  -webkit-backdrop-filter: blur();
          backdrop-filter: blur();
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  -webkit-transition: none;
  transition: none;
}
.index-page .bg-section .wal .-body {
  position: relative;
  z-index: 2;
  color: white;
}
.index-page .bg-section .wal .-body .context {
  max-width: 7.2rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  margin-top: 0.24rem;
}
.index-page .bg-section .wal .-body .btn-box {
  margin-top: 0.48rem;
}
.index-page .circle_rotate_text {
  position: relative;
}
.index-page .circle_rotate_text .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.index-page .circle_rotate_text .mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .circle_rotate_text .wal {
  position: relative;
  padding-top: 1.82rem;
  padding-bottom: 1.82rem;
  height: 10.8rem;
  overflow: hidden;
}
.index-page .circle_rotate_text .wal .circle-bg {
  position: absolute;
  width: 13.65rem;
  height: 70%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 0;
}
.index-page .circle_rotate_text .wal .circle-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .circle_rotate_text .wal .-body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: 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%;
  z-index: 2;
}
.index-page .circle_rotate_text .wal .-body .context {
  font-family: var(--sk-font-Medium);
  --active-font-color: white;
  text-align: center;
  max-width: 10rem;
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.index-page .circle_rotate_text .wal .-body .btn-box {
  margin-top: 0.48rem;
}
.index-page .Keep__Exploring .wal {
  padding-top: 1.8rem;
  padding-bottom: 1.6rem;
}
.index-page .Keep__Exploring .wal .-head .title {
  color: white;
  font-size: 0.48rem;
  line-height: 0.56rem;
}
.index-page .Keep__Exploring .wal .-body {
  margin-top: 0.64rem;
}
.index-page .Keep__Exploring .wal .-body .list .sk-item {
  --hover-bg-color: #D2615F;
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.5rem 0.3rem;
  background-color: rgba(255, 255, 255, 0.1);
  min-height: 4.16rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a:hover {
  background-color: var(--hover-bg-color);
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a:hover .icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a .icon {
  width: 0.51rem;
  height: 0.51rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a .title {
  font-size: 0.24rem;
  line-height: 0.28rem;
  margin-top: 0.38rem;
  color: white;
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a .context {
  font-size: 0.18rem;
  line-height: 0.21rem;
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.8);
}
.index-page .Keep__Exploring .wal .-body .list .sk-item a .sk-translate-icon {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
}
@media screen and (max-width: 800px) {
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-box {
    padding: 3.39rem 0;
  }
  .index-page .index-banner .swiper-container .swiper-wrapper .swiper-slide a .inner .slide-box .title {
    font-size: 0.84rem;
    line-height: 0.99rem;
    padding: 0 0.3rem;
  }
  .index-page .index-banner .swiper-container .swiper-dots {
    bottom: 0.4rem;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box {
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span {
    background-color: white;
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
    margin-right: 0.1rem;
    opacity: 0.4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span:last-child {
    margin-right: 0;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span.on, .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span:hover {
    opacity: 1;
  }
  .index-page .index-banner .swiper-container .swiper-dots .swiper-dots-box span.on {
    width: 0.52rem;
    opacity: 1;
  }
  .index-page .advantage__section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .index-page .advantage__section .wal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .index-page .advantage__section .wal .img-background {
    position: absolute;
    width: 16rem;
    height: 9rem;
    top: 40%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    will-change: left;
  }
  .index-page .advantage__section .wal .-list {
    position: relative;
    width: 100%;
    height: 30vh;
    z-index: 2;
    padding-top: 0;
    margin-top: auto;
  }
  .index-page .advantage__section .wal .-list .-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-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: 20vh;
    will-change: transform;
  }
  .index-page .advantage__section .wal .-list .-item .title {
    text-align: center;
    font-size: 0.72rem;
    line-height: 0.85rem;
    color: white;
  }
  .index-page .advantage__section .wal .-list .-item .context {
    text-align: center;
    font-size: 0.32rem;
    line-height: 0.38rem;
    margin-top: 0.14rem;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .index-page .more__section {
    width: 100%;
    height: 250vh;
  }
  .index-page .more__section .more__section-container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .index-page .more__section .more__section-container .wal {
    height: 100%;
  }
  .index-page .more__section .more__section-container .wal .-background {
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .index-page .more__section .more__section-container .wal .-background img {
    object-fit: contain;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.2;
  }
  .index-page .more__section .more__section-container .wal .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-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%;
    z-index: 1;
  }
  .index-page .more__section .more__section-container .wal .box h2 {
    position: relative;
    color: white;
    width: 100%;
  }
  .index-page .more__section .more__section-container .wal .box h2 .heading__word {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .index-page .more__section .more__section-container .wal .box h2 .heading__word .heading__word-wrapper {
    display: inline-table;
    width: 50%;
    font-size: 0.64rem;
    margin-right: 0;
  }
  .index-page .more__section .more__section-container .wal .box h2 .heading__word .heading__word-wrapper:last-child {
    margin-right: 0;
  }
  .index-page .more__section .more__section-container .wal .box h2 .heading__word .heading__word-wrapper .hide {
    font-size: 1.2rem;
    opacity: 0 !important;
  }
  .index-page .more__section .more__section-container .wal .box h2 .anchor-heading {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 1;
    font-size: 2rem;
    width: 100%;
    white-space: nowrap;
  }
  .index-page .more__section .more__section-container .wal .box h2 .anchor-heading .anchor-letter {
    will-change: transform;
  }
  .index-page .more__section .more__section-container .wal .box .sub-title {
    text-align: center;
    font-size: 0.48rem;
    line-height: 0.56rem;
    color: white;
    margin-top: 0.24rem;
  }
  .index-page .more__section .more__section-container .wal .box .context {
    text-align: center;
    font-size: 0.28rem;
    line-height: 0.33rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.24rem;
  }
  .index-page .more__section .more__section-container .wal .box .btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.6rem;
  }
  .index-page .product__section .wal {
    padding-top: 1.2rem;
  }
  .index-page .product__section .wal .product-item {
    --title-fz: .48rem;
    --title-lh: .56rem;
    --context-fz: .28rem;
    --context-lh: .33rem;
    --context-mt: .16rem;
    --inner-padding: .4rem .3rem;
    position: relative;
    z-index: 1;
    border-radius: 0.24rem;
    overflow: hidden;
  }
  .index-page .product__section .wal .product-item.-big {
    --title-fz: .56rem;
    --title-lh: .66rem;
    --context-fz: .32rem;
    --context-lh: .38rem;
    --context-mt: .14rem;
    --inner-padding: .6rem .3rem;
  }
  .index-page .product__section .wal .product-item.-big .inner {
    min-height: 12.8rem;
  }
  .index-page .product__section .wal .product-item.-big .inner:hover .-background {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .index-page .product__section .wal .product-item .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: var(--inner-padding);
    min-height: 6.9rem;
    overflow: hidden;
  }
  .index-page .product__section .wal .product-item .inner:hover .-background {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .index-page .product__section .wal .product-item .inner:hover .-box .sk-translate-icon {
    opacity: 1;
  }
  .index-page .product__section .wal .product-item .inner .-background {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .product__section .wal .product-item .inner .-box {
    height: 100%;
  }
  .index-page .product__section .wal .product-item .inner .-box .title {
    text-align: center;
    font-size: var(--title-fz);
    line-height: var(--title-lh);
    color: white;
  }
  .index-page .product__section .wal .product-item .inner .-box .context {
    text-align: center;
    font-size: var(--context-fz);
    line-height: var(--context-lh);
    margin-top: var(--context-mt);
    color: rgba(255, 255, 255, 0.8);
  }
  .index-page .product__section .wal .product-item .inner .-box .btn-box {
    margin-top: 0.48rem;
    text-align: center;
  }
  .index-page .product__section .wal .product-item .inner .-box .sk-translate-icon {
    display: none;
  }
  .index-page .product__section .wal .-list {
    margin-top: 0.4rem;
  }
  .index-page .mission__section {
    overflow: hidden;
  }
  .index-page .mission__section .mission__section-wrapper {
    padding-top: 2.8rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-head {
    color: white;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-head .title {
    text-align: center;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-head .text {
    text-align: center;
    font-size: 0.32rem;
    line-height: 0.38rem;
    margin-top: 0.24rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body {
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 0.87rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0 0.3rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0.32rem;
    padding-bottom: 0;
    will-change: transform;
    margin-top: 0.32rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row:first-child {
    margin-top: 0;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row.active {
    z-index: 2 !important;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    height: 6.9rem;
    border-radius: 0.24rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    will-change: transform;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    z-index: 2;
    color: white;
    padding: 0.33rem 0.3rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .title {
    font-size: 0.56rem;
    line-height: 0.66rem;
    color: rgba(255, 255, 255, 0.5);
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .title em {
    color: white;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .context {
    font-size: 0.28rem;
    line-height: 0.33rem;
    margin-top: 0.16rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3.6rem;
    height: 3.6rem;
    object-fit: contain;
    z-index: -1;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .size {
    font-size: 0.28rem;
    line-height: 0.33rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .size span {
    margin-right: 0.36rem;
  }
  .index-page .mission__section .mission__section-wrapper .mission__section-body .mission__section-inner .cart-row .cart-box .-inner .btn-box {
    margin-top: auto;
  }
  .index-page .introduction__section .introduction__section-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .index-page .introduction__section .introduction__section-wrapper .content {
    --active-font-color: white;
    text-align: center;
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
  }
  .index-page .bg-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .index-page .bg-section .wal {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    height: 100%;
  }
  .index-page .bg-section .wal .-body {
    position: relative;
    z-index: 2;
    color: white;
  }
  .index-page .bg-section .wal .-body .context {
    max-width: 100%;
    font-size: 0.32rem;
    line-height: 0.38rem;
    margin-top: 0.24rem;
  }
  .index-page .bg-section .wal .-body .btn-box {
    margin-top: 0.48rem;
  }
  .index-page .circle_rotate_text {
    position: relative;
  }
  .index-page .circle_rotate_text .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .index-page .circle_rotate_text .mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-page .circle_rotate_text .wal {
    position: relative;
    padding-top: 1.82rem;
    padding-bottom: 1.82rem;
    height: 10.8rem;
    overflow: hidden;
  }
  .index-page .circle_rotate_text .wal .circle-bg {
    position: absolute;
    width: 6rem;
    height: 70%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    will-change: transform;
    z-index: 0;
  }
  .index-page .circle_rotate_text .wal .circle-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .index-page .circle_rotate_text .wal .-body {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: 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%;
    z-index: 2;
  }
  .index-page .circle_rotate_text .wal .-body .context {
    font-family: var(--sk-font-Medium);
    --active-font-color: white;
    text-align: center;
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
  }
  .index-page .circle_rotate_text .wal .-body .btn-box {
    margin-top: 0.6rem;
  }
  .index-page .Keep__Exploring .wal {
    padding-top: 1.8rem;
    padding-bottom: 2.4rem;
  }
  .index-page .Keep__Exploring .wal .-head .title {
    color: white;
    font-size: 0.56rem;
    line-height: 0.66rem;
  }
  .index-page .Keep__Exploring .wal .-body {
    margin-top: 0.87rem;
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item {
    --hover-bg-color: #D2615F;
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.4rem 0.3rem;
    background-color: rgba(255, 255, 255, 0.1);
    min-height: 4.2rem;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a:hover {
    background-color: var(--hover-bg-color);
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a:hover .icon {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a .icon {
    width: 0.6rem;
    height: 0.6rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a .title {
    font-size: 0.36rem;
    line-height: 0.42rem;
    margin-top: 0.33rem;
    color: white;
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a .context {
    font-size: 0.24rem;
    line-height: 0.28rem;
    margin-top: 0.16rem;
    color: rgba(255, 255, 255, 0.8);
  }
  .index-page .Keep__Exploring .wal .-body .list .sk-item a .sk-translate-icon {
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
  }
}

.product-detail-page {
  background-color: #121622;
}
.product-detail-page .g-header[product-nav=true] .g-head .g-head-main {
  -webkit-transform: rotateX(-90deg) translateZ(-0.32rem);
          transform: rotateX(-90deg) translateZ(-0.32rem);
  will-change: transform;
}
.product-detail-page .g-header[product-nav=true] .g-head .product-head-main {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-100%) rotateX(0) translateZ(-0.32rem);
          transform: translateY(-100%) rotateX(0) translateZ(-0.32rem);
}
.product-detail-page .g-header .g-head .g-head-main {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-detail-page .g-header .g-head .product-head-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;
  height: 100%;
  padding: 0 0.08rem 0 0.36rem;
  -webkit-transform: translateY(-100%) rotateX(90deg) translateZ(-0.32rem);
          transform: translateY(-100%) rotateX(90deg) translateZ(-0.32rem);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  will-change: transform;
}
.product-detail-page .g-header .g-head .product-head-main .-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-detail-page .g-header .g-head .product-head-main .-info .-img {
  margin-right: 0.21rem;
  height: 0.34rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.product-detail-page .g-header .g-head .product-head-main .-info .-img img {
  height: 100%;
  object-fit: contain;
}
.product-detail-page .g-header .g-head .product-head-main .-info .-name {
  font-size: 0.2rem;
  line-height: 0.24rem;
  color: white;
}
.product-detail-page .g-header .g-head .product-head-main .-nav {
  position: relative;
  margin-left: 0.35rem;
  padding-left: 0.35rem;
}
.product-detail-page .g-header .g-head .product-head-main .-nav::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.2rem;
  background-color: white;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.product-detail-page .g-header .g-head .product-head-main .-nav .-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-detail-page .g-header .g-head .product-head-main .-nav .-list .-item {
  --color: rgba(255, 255, 255, 0.50);
  margin-right: 0.64rem;
}
.product-detail-page .g-header .g-head .product-head-main .-nav .-list .-item:last-child {
  margin-right: 0;
}
.product-detail-page .g-header .g-head .product-head-main .-nav .-list .-item.on, .product-detail-page .g-header .g-head .product-head-main .-nav .-list .-item:hover {
  --color: white;
}
.product-detail-page .g-header .g-head .product-head-main .-nav .-list .-item a {
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: var(--color);
}
.product-detail-page .g-header .g-head .product-head-main .btn-box {
  margin-left: auto;
}
.product-detail-page .g-header .g-head .product-head-main .btn-box .hry__btn {
  height: 0.48rem;
  padding: 0 0.25rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  min-width: auto;
}
.product-detail-page .index__section {
  position: relative;
  width: 100%;
  height: 210vh;
}
.product-detail-page .index__section .g-breadcrumb {
  position: absolute;
  top: 1.04rem;
  z-index: 20;
}
.product-detail-page .index__section .g-breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.5);
}
.product-detail-page .index__section .g-breadcrumb .breadcrumb-item:last-child {
  color: white;
}
.product-detail-page .index__section .index__section-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.product-detail-page .index__section .index__section-container .index__section-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-detail-page .index__section .index__section-container .index__section-inner .-background .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.product-detail-page .index__section .index__section-container .index__section-inner .-background .mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-detail-page .index__section .index__section-container .index__section-inner .-background .product-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-bottom: 10%;
  opacity: 0.4;
  -webkit-transform: translate(0, 1rem);
      -ms-transform: translate(0, 1rem);
          transform: translate(0, 1rem);
}
.product-detail-page .index__section .index__section-container .index__section-inner .-background .product-img img {
  width: 100%;
  height: 100%;
  max-width: 70%;
  max-height: 70%;
  margin-top: auto;
  object-fit: contain;
}
.product-detail-page .index__section .index__section-container .index__section-inner .-background .adorn {
  position: absolute;
  left: 50%;
  bottom: 0.86rem;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 0;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -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;
  padding-top: 1.85rem;
  height: 100%;
  z-index: 1;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-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;
  width: 60%;
  min-height: 50vh;
  opacity: 0;
  will-change: transform;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-center .info {
  color: white;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-center .info .title {
  text-align: center;
  font-size: 0.72rem;
  line-height: 0.72rem;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-center .info .context {
  text-align: center;
  font-size: 0.28rem;
  line-height: 0.33rem;
  margin-top: 0.32rem;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-foot {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-foot::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.2249564379) 50%, transparent) 0%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2249564379) 50%, transparent) 0%;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-foot 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;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-foot ul li {
  padding: 0.27rem 0 0.25rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: white;
  margin-right: 2rem;
  opacity: 0;
}
.product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-foot ul li:last-child {
  margin-right: 0;
}
.product-detail-page .features__section {
  background-color: white;
}
.product-detail-page .features__section.pb0 .wal {
  padding-bottom: 0;
}
.product-detail-page .features__section .wal {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.product-detail-page .features__section .wal .-head .title {
  font-size: 0.64rem;
  line-height: 0.75rem;
}
.product-detail-page .features__section .wal .-body {
  margin-top: 0.64rem;
}
.product-detail-page .features__section .wal .-body .-list .sk-item {
  border-radius: 0.16rem;
  overflow: hidden;
}
.product-detail-page .features__section .wal .-body .-list .sk-item .-inner {
  padding: 0.49rem 0.29rem 0.72rem;
  height: 100%;
  background-color: #EFEFED;
}
.product-detail-page .features__section .wal .-body .-list .sk-item .-inner .icon {
  width: 0.67rem;
  height: 0.67rem;
}
.product-detail-page .features__section .wal .-body .-list .sk-item .-inner .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-page .features__section .wal .-body .-list .sk-item .-inner .name {
  margin-top: 0.76rem;
  font-size: 0.32rem;
  line-height: 0.38rem;
}
.product-detail-page .features__section .wal .-body .-list .sk-item .-inner .context {
  margin-top: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(30, 26, 52, 0.8);
}
.product-detail-page .swiper-comparison-section {
  position: relative;
}
.product-detail-page .swiper-comparison-section .section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.product-detail-page .swiper-comparison-section .section-background .section-background-inner {
  width: 100%;
}
.product-detail-page .swiper-comparison-section .section-background .section-background-inner img {
  width: 100%;
}
.product-detail-page .swiper-comparison-section .wal {
  padding-top: 2.4rem;
  padding-bottom: 2rem;
}
.product-detail-page .swiper-comparison-section .wal .-head .title {
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: white;
}
.product-detail-page .swiper-comparison-section .wal .-body {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 0.2rem;
  height: 100vh;
}
.product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: calc(66.27%);
  height: calc(100vh - 1.2rem - 0.2rem);
  border-radius: 0.16rem;
}
.product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box .image-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
  will-change: transform;
}
.product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box .image-layer .layer-content {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none;
  transition: none;
  will-change: transform;
}
.product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box .image-layer .layer-content .content-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content {
  position: -webkit-sticky;
  position: sticky;
  top: 0.1rem;
  bottom: 0.1rem;
  float: right;
  width: calc(32.55%);
  height: calc(100vh - 1.2rem - 0.2rem);
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.1);
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul {
  height: 100%;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.5rem 0.3rem;
  padding-bottom: calc(23% + 0.4rem);
}
@media screen and (max-width: 800px) {
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.4rem;
  }
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.56rem;
  height: 0.4rem;
  border-radius: 0.2rem;
  background-color: white;
  font-size: 0.24rem;
  line-height: 0.28rem;
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li .infor-txt {
  margin-top: 0.64rem;
  font-size: 0.36rem;
  line-height: 0.42rem;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li .infor-txt em {
  color: white;
}
@media screen and (max-width: 800px) {
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li .infor-txt {
    margin-top: 0.24rem;
    font-size: 0.26rem;
    line-height: 0.34rem;
  }
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li.show {
  z-index: 10;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li.show .infor-txt,
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li.show .tag {
  opacity: 1;
  visibility: visible;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box {
  position: absolute;
  bottom: 0.5rem;
  left: 0.3rem;
  background: rgba(187, 187, 187, 0.2);
  padding: 0.08rem 0.1rem;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box .pagination-li {
  background: rgba(255, 255, 255, 0.4);
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.04rem;
  margin-right: 0.08rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box .pagination-li:last-child {
  margin-right: 0;
}
.product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box .pagination-li.on {
  background: white;
  width: 0.33rem;
}
.product-detail-page .preview__section {
  background-color: white;
}
.product-detail-page .preview__section .wal {
  padding-top: 2.4rem;
  padding-bottom: 3rem;
}
.product-detail-page .preview__section .wal .-head .title {
  text-align: center;
  font-size: 0.64rem;
  line-height: 0.75rem;
}
.product-detail-page .preview__section .wal .-body {
  margin-top: 1.2rem;
}
.product-detail-page .preview__section .wal .-body .-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.2rem;
}
.product-detail-page .preview__section .wal .-body .-list .-item {
  position: relative;
  border-radius: 0.16rem;
  background-color: #EFEFED;
  overflow: hidden;
  padding: 0.3rem;
  min-height: 8.5rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-detail-page .preview__section .wal .-body .-list .-item.product_3d {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
.product-detail-page .preview__section .wal .-body .-list .-item .title {
  font-size: 0.32rem;
  line-height: 0.38rem;
}
.product-detail-page .preview__section .wal .-body .-list .-item .img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.6rem;
}
.product-detail-page .preview__section .wal .-body .-list .-item .img img {
  width: 100%;
  max-height: 100%;
}
.product-detail-page .preview__section .wal .-body .-list .-item .box-3d {
  cursor: -webkit-grab;
  cursor: grab;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  width: 100%;
  height: 7rem;
  max-width: 7.5rem;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner svg {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  width: 4.9rem;
  height: 1.72rem;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
.product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .message {
  color: #ABACA4;
  font-size: 0.2rem;
  line-height: 0.24rem;
  margin: auto auto 0;
}
.product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .model-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .model-container canvas {
  width: 100%;
  height: 100%;
  outline: none;
}
.product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .-load {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 0.48rem;
  line-height: 0.56rem;
  z-index: 2;
}
.product-detail-page .technical__specifications .wal {
  padding-top: 2.18rem;
  padding-bottom: 0.64rem;
}
.product-detail-page .technical__specifications .wal .-head .title {
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: white;
}
.product-detail-page .technical__specifications .wal .-body {
  margin-top: 1.15rem;
}
.product-detail-page .technical__specifications .wal .-body .-table {
  margin: -0.2rem;
}
.product-detail-page .technical__specifications .wal .-body .-table table {
  position: relative;
  border-collapse: collapse;
  border: 0;
  width: 100%;
}
.product-detail-page .technical__specifications .wal .-body .-table table tr td {
  font-family: var(--sk-font-Regular);
  padding: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.21rem;
  color: rgba(255, 255, 255, 0.8);
}
.product-detail-page .technical__specifications .wal .-body .-table table tr:nth-child(2) td {
  padding-top: 0.4rem;
}
.product-detail-page .technical__specifications .wal .-body .-table table tr:last-child td {
  padding-bottom: 0.4rem;
}
.product-detail-page .technical__specifications .wal .-body .-table table tr:first-child td {
  font-family: var(--sk-font-Medium);
  position: relative;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: white;
}
.product-detail-page .technical__specifications .wal .-body .-table table tr:first-child td::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.2rem;
  bottom: 0;
  width: calc(100% - .4rem);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.product-detail-page .technical__specifications .wal .-body .-table table::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.2rem;
  bottom: 0;
  width: calc(100% - .4rem);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.product-detail-page .last__section {
  position: relative;
}
.product-detail-page .last__section .-background {
  z-index: 1;
  overflow: hidden;
}
.product-detail-page .last__section .-background::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: url(../images/target/base/product-detail/bg03.png) center center no-repeat;
  background-size: contain;
  width: 90%;
  height: 5rem;
  opacity: 0.7;
  z-index: 0;
}
.product-detail-page .last__section .-background .product-img {
  position: absolute;
  max-width: 11.2rem;
  width: 100%;
  height: 6.3rem;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  opacity: 0.3;
  z-index: 1;
}
.product-detail-page .last__section .-background .product-img img {
  object-fit: contain;
  -webkit-transition: none;
  transition: none;
}
.product-detail-page .last__section .wal {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  min-height: 5.7rem;
  z-index: 2;
}
.product-detail-page .last__section .wal .-body .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-detail-page .last__section .wal .-body .info .title {
  font-size: 0.36rem;
  line-height: 0.42rem;
  color: white;
  text-align: center;
}
.product-detail-page .last__section .wal .-body .info .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.48rem;
}
.product-detail-page .last__section .wal .-body .info .btns .hry__btn {
  min-width: 2rem;
  padding: 0 0.4rem;
}
@media screen and (max-width: 800px) {
  .product-detail-page .g-header[product-nav=true] .g-head-phone .g-head-main {
    -webkit-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
            transform: translateY(-10%);
    opacity: 0;
    visibility: hidden;
  }
  .product-detail-page .g-header[product-nav=true] .g-head-phone .product-head-main {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .product-detail-page .g-header .g-head-phone .g-head-main {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
  }
  .product-detail-page .g-header .g-head-phone .product-head-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;
    height: 100%;
    padding: 0 0.1rem 0 0.4rem;
    -webkit-transform: translateY(-90%);
        -ms-transform: translateY(-90%);
            transform: translateY(-90%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0.2rem;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-info .-img {
    margin-right: 0.24rem;
    height: 0.55rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-info .-img img {
    height: 100%;
    object-fit: contain;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-info .-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 0.28rem;
    line-height: 0.33rem;
    color: white;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-left: auto;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select {
    display: block;
    width: 2.66rem;
    position: relative;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-input {
    height: 0.88rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.44rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0.3rem;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-input .txt {
    color: #FFFFFF;
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-input .arrow {
    width: 0.17rem;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-input .arrow path {
    fill: #fff;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-dropdown {
    position: absolute;
    width: 2.66rem;
    top: calc(100% + 0.1rem);
    padding: 0.25rem 0.3rem 0.26rem;
    border-radius: 0.24rem;
    background: #303042;
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.5rem);
        -ms-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-dropdown.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-dropdown .select-option {
    margin-top: 0.26rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.24rem;
    line-height: 0.28rem;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-dropdown .select-option.on {
    color: #FFFFFF;
  }
  .product-detail-page .g-header .g-head-phone .product-head-main .-nav .product-select .select-dropdown .select-option:first-child {
    margin-top: 0;
  }
  .product-detail-page .index__section .g-breadcrumb {
    top: 1.64rem;
  }
  .product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-center {
    width: 90%;
  }
  .product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-center .info .title {
    font-size: 0.72rem;
    line-height: 0.72rem;
  }
  .product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-center .info .context {
    font-size: 0.36rem;
    line-height: 0.42rem;
    margin-top: 0.36rem;
  }
  .product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-foot ul {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .product-detail-page .index__section .index__section-container .index__section-inner .index__section-wrapper .-foot ul li {
    padding: 0.46rem 0 0.41rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
    margin-right: 0;
  }
  .product-detail-page .features__section {
    background-color: white;
  }
  .product-detail-page .features__section.pb0 .wal {
    padding-bottom: 0;
  }
  .product-detail-page .features__section .wal {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .product-detail-page .features__section .wal .-head .title {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
  .product-detail-page .features__section .wal .-body {
    margin-top: 0.4rem;
  }
  .product-detail-page .features__section .wal .-body .-list .sk-item {
    border-radius: 0.24rem;
    overflow: hidden;
  }
  .product-detail-page .features__section .wal .-body .-list .sk-item .-inner {
    padding: 0.49rem 0.29rem 0.72rem;
    height: 100%;
    background-color: #EFEFED;
  }
  .product-detail-page .features__section .wal .-body .-list .sk-item .-inner .icon {
    width: 0.8rem;
    height: 0.8rem;
  }
  .product-detail-page .features__section .wal .-body .-list .sk-item .-inner .name {
    margin-top: 0.63rem;
    font-size: 0.4rem;
    line-height: 0.47rem;
  }
  .product-detail-page .features__section .wal .-body .-list .sk-item .-inner .context {
    margin-top: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.33rem;
    color: rgba(30, 26, 52, 0.8);
  }
  .product-detail-page .swiper-comparison-section {
    position: relative;
    height: auto;
  }
  .product-detail-page .swiper-comparison-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .product-detail-page .swiper-comparison-section .section-background .section-background-inner {
    width: 100%;
  }
  .product-detail-page .swiper-comparison-section .section-background .section-background-inner img {
    width: 100%;
  }
  .product-detail-page .swiper-comparison-section .wal {
    padding-top: 2.3rem;
    padding-bottom: 2.4rem;
  }
  .product-detail-page .swiper-comparison-section .wal .-head .title {
    font-size: 0.72rem;
    line-height: 0.85rem;
    color: white;
  }
  .product-detail-page .swiper-comparison-section .wal .-body {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 1.48rem;
    padding-bottom: 0.2rem;
    height: 100vh;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(50% - 0.1rem);
    border-radius: 0.24rem;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box .image-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: none;
    transition: none;
    will-change: transform;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box .image-layer .layer-content {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: none;
    transition: none;
    will-change: transform;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box .image-layer .layer-content {
    height: 100%;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-page .swiper-comparison-section .wal .-body .swiper-comparison-box .image-layer .layer-content .content-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content {
    position: relative;
    top: 0;
    left: 0;
    float: none;
    width: 100%;
    height: calc(50% - 0.1rem);
    border-radius: 0.24rem;
    background: rgba(255, 255, 255, 0.1);
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul {
    height: 100%;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0.6rem 0.3rem;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li .tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1.1rem;
    height: 0.8rem;
    border-radius: 0.4rem;
    background-color: white;
    font-size: 0.32rem;
    line-height: 0.38rem;
    opacity: 0;
    visibility: visible;
    -webkit-transition: opacity 0.2s ease 0.2s;
    transition: opacity 0.2s ease 0.2s;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .content-ul .content-li .infor-txt {
    margin-top: 0.48rem;
    font-size: 0.48rem;
    line-height: 0.56rem;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box {
    position: absolute;
    bottom: 0.58rem;
    left: 0.37rem;
    padding: 0.12rem 0.2rem;
    border-radius: 0.18rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 10;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box .pagination-li {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
    margin-right: 0.1rem;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box .pagination-li:last-child {
    margin-right: 0;
  }
  .product-detail-page .swiper-comparison-section .wal .-body .comparison-content .pagination-box .pagination-li.on {
    background: white;
    width: 0.52rem;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-page .preview__section {
    background-color: white;
  }
  .product-detail-page .preview__section .wal {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .product-detail-page .preview__section .wal .-head .title {
    text-align: center;
    font-size: 0.64rem;
    line-height: 0.75rem;
  }
  .product-detail-page .preview__section .wal .-body {
    margin-top: 1.2rem;
  }
  .product-detail-page .preview__section .wal .-body .-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.3rem;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item {
    position: relative;
    border-radius: 0.16rem;
    background-color: #EFEFED;
    overflow: hidden;
    padding: 0.6rem;
    min-height: 6.9rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item.product_3d {
    min-height: 9.6rem;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .title {
    text-align: center;
    font-size: 0.4rem;
    line-height: 0.47rem;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5.33rem;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .img img {
    width: 100%;
    max-height: 100%;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .box-3d {
    cursor: -webkit-grab;
    cursor: grab;
    position: absolute;
    left: 50%;
    bottom: 0.71rem;
    width: 100%;
    height: 80%;
    max-width: 80%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 2.72rem;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: -1;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .message {
    color: #ABACA4;
    font-size: 0.28rem;
    line-height: 0.33rem;
    margin: auto auto 0;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .model-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .model-container canvas {
    width: 100%;
    height: 100%;
  }
  .product-detail-page .preview__section .wal .-body .-list .-item .box-3d .box-inner .-load {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 0.48rem;
    line-height: 0.56rem;
    z-index: 2;
  }
}
@media screen and (max-width: 800px) {
  .product-detail-page .technical__specifications .wal {
    padding-top: 2.3rem;
    padding-bottom: 0.64rem;
  }
  .product-detail-page .technical__specifications .wal .-head .title {
    font-size: 0.72rem;
    line-height: 0.85rem;
    color: white;
  }
  .product-detail-page .technical__specifications .wal .-body {
    margin-top: 1rem;
  }
  .product-detail-page .technical__specifications .wal .-body .-table {
    margin: 0 -0.3rem;
    width: auto;
    overflow: auto;
  }
  .product-detail-page .technical__specifications .wal .-body .-table table {
    border-collapse: collapse;
    border: 0;
    width: 20rem;
  }
  .product-detail-page .technical__specifications .wal .-body .-table table::after {
    content: "";
    display: block;
    position: absolute;
    left: 0.3rem;
    bottom: 0;
    width: calc(100% - 0.6rem);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .product-detail-page .technical__specifications .wal .-body .-table table tr {
    position: relative;
  }
  .product-detail-page .technical__specifications .wal .-body .-table table tr td {
    font-family: var(--sk-font-Regular);
    padding: 0.3rem;
    font-size: 0.28rem;
    line-height: 0.32rem;
    color: rgba(255, 255, 255, 0.8);
  }
  .product-detail-page .technical__specifications .wal .-body .-table table tr:nth-child(2) td {
    padding-top: 0.6rem;
  }
  .product-detail-page .technical__specifications .wal .-body .-table table tr:last-child td {
    padding-bottom: 0.6rem;
  }
  .product-detail-page .technical__specifications .wal .-body .-table table tr:first-child td {
    font-family: var(--sk-font-Medium);
    position: relative;
    font-size: 0.32rem;
    line-height: 0.38rem;
    color: white;
  }
  .product-detail-page .technical__specifications .wal .-body .-table table tr:first-child td::after {
    content: "";
    display: block;
    position: absolute;
    left: 0.3rem;
    bottom: 0;
    width: calc(100% - .6rem);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 800px) {
  .product-detail-page .last__section {
    position: relative;
  }
  .product-detail-page .last__section .-background {
    z-index: 1;
    overflow: hidden;
  }
  .product-detail-page .last__section .-background::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: url(../images/target/base/product-detail/bg03.png) center center no-repeat;
    background-size: contain;
    width: 15rem;
    height: 5rem;
    opacity: 0.7;
    z-index: 0;
  }
  .product-detail-page .last__section .-background .product-img {
    position: absolute;
    max-width: 15rem;
    width: 15rem;
    height: 6.3rem;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    opacity: 0.3;
    z-index: 1;
  }
  .product-detail-page .last__section .-background .product-img img {
    object-fit: contain;
    -webkit-transition: none;
    transition: none;
  }
  .product-detail-page .last__section .wal {
    position: relative;
    padding-top: 1.8rem;
    padding-bottom: 2rem;
    min-height: 8rem;
    z-index: 2;
  }
  .product-detail-page .last__section .wal .-body .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-detail-page .last__section .wal .-body .info .title {
    max-width: 80%;
    font-size: 0.48rem;
    line-height: 0.56rem;
    color: white;
    text-align: center;
  }
  .product-detail-page .last__section .wal .-body .info .btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    margin-top: 0.6rem;
  }
  .product-detail-page .last__section .wal .-body .info .btns .hry__btn {
    min-width: 2.8rem;
    padding: 0 0.4rem;
  }
}

.IntegAlliance-page {
  background-color: #121622;
}
.IntegAlliance-page .index__section {
  position: relative;
}
.IntegAlliance-page .index__section .wal {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  width: 100%;
  height: 100vh;
}
.IntegAlliance-page .index__section .wal .-background {
  z-index: 0;
  overflow: hidden;
}
.IntegAlliance-page .index__section .wal .-background img {
  width: 100%;
  height: 100%;
}
.IntegAlliance-page .index__section .wal .-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -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: 1;
}
.IntegAlliance-page .index__section .wal .-body .title {
  font-size: 0.72rem;
  line-height: 0.85rem;
  color: white;
  text-align: center;
}
.IntegAlliance-page .index__section .wal .-body .context {
  max-width: 8rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  text-align: center;
  margin-top: 0.13rem;
  color: rgba(255, 255, 255, 0.8);
}
.IntegAlliance-page .mission__section-outer {
  width: 100%;
  height: 220vh;
}
.IntegAlliance-page .mission__section-outer .mission__section {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background-color: white;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper {
  height: 100%;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background {
  overflow: hidden;
  z-index: 0;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background .img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70vh;
  object-fit: contain;
  opacity: 0.4;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: none;
  transition: none;
  will-change: transform;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background .scroll-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  font-size: 0.96rem;
  line-height: 1.13rem;
  margin-top: 2.4rem;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background .scroll-text span {
  white-space: nowrap;
  will-change: transform;
  padding: 0 0.4rem;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner {
  position: relative;
  height: 100%;
  z-index: 1;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .inner-bg {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 70%;
  width: 5.4rem;
  height: 3.6rem;
  border-radius: 0.16rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  overflow: hidden;
  will-change: transform;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .inner-bg .inner-bg-box {
  width: 100%;
  height: 100%;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .inner-bg .inner-bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body .title {
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: white;
  text-align: center;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body .context {
  margin-top: 0.24rem;
  max-width: 8rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body .btn-box {
  margin-top: 0.48rem;
  text-align: center;
}
.IntegAlliance-page .partner__section .partner__section-wrapper {
  padding-top: 2rem;
  padding-bottom: 1.2rem;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 10rem;
  margin: 0 auto;
  z-index: 3;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .content .title {
  font-size: 0.64rem;
  line-height: 0.75rem;
  color: white;
  text-align: center;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .content .context {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .content .btn-box {
  margin-top: 0.48rem;
  text-align: center;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer {
  position: relative;
  margin-top: 1.35rem;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20rem;
  height: 20rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/target/base/IntegAlliance/circle-bg.svg) center center no-repeat;
  background-size: contain;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows {
  position: relative;
  padding: 0.97rem 0;
  overflow: hidden;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  width: 3rem;
  height: 120%;
  left: -0.1rem;
  top: 50%;
  background: -webkit-linear-gradient(left, #121622 30%, transparent 100%);
  background: linear-gradient(to right, #121622 30%, transparent 100%);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 5;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows::after {
  left: auto;
  right: -0.1rem;
  background: -webkit-linear-gradient(right, #121622 30%, transparent 100%);
  background: linear-gradient(to left, #121622 30%, transparent 100%);
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row:first-child .logo-row-wrapper .logo .block__divider.vertical-top {
  display: block;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row:last-child .logo-row-wrapper .logo .block__divider.vertical-bottom {
  display: block;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  will-change: transform;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo {
  position: relative;
  width: 3.04rem;
  height: 3.04rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider {
  display: none;
  position: absolute;
  width: calc(100% + 1px);
  height: 0.97rem;
  left: 0;
  top: 0;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  z-index: 1;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-top::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-top::after, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-top::after, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::after {
  left: auto;
  right: 0;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom {
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  top: auto;
  bottom: 0;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::after {
  background: -webkit-linear-gradient(bottom, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  background: linear-gradient(to top, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper {
  position: relative;
  height: calc(100% + 1px);
  width: calc(100% + 1px);
  overflow: clip;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper:hover .background-gradient {
  opacity: 0.2;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .background-holder {
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 2;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-holder,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .background-gradient {
  --mouse-x: 0;
  --mouse-y: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-holder::after,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .background-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  opacity: 1;
  top: 0;
  height: 9rem;
  width: 9rem;
  background: url(../images/target/base/hry/svg36.svg) center center no-repeat;
  background-size: contain;
  z-index: 2;
  -webkit-transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
      -ms-transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
          transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
  will-change: transform;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-holder {
  padding: 2px;
  -webkit-mask: -webkit-linear-gradient(#fff, #fff) content-box, -webkit-linear-gradient(#fff, #fff);
          mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 1;
  z-index: 0;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .slot__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .slot__wrapper a {
  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%;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .slot__wrapper a:hover img {
  opacity: 1;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .slot__wrapper a img {
  width: 2.2rem;
  height: 1.5rem;
  object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.6;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v {
  position: absolute;
  width: 100%;
  height: 100%;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::after,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::before,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::after {
  left: auto;
  right: 0;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::after {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::after {
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 800px) {
  .IntegAlliance-page .index__section .wal {
    padding-top: 3.28rem;
    padding-bottom: 2.4rem;
  }
  .IntegAlliance-page .index__section .wal .-body .title {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
  .IntegAlliance-page .index__section .wal .-body .context {
    max-width: 100%;
    font-size: 0.32rem;
    line-height: 0.38rem;
    margin-top: 0.36rem;
  }
  .IntegAlliance-page .mission__section-outer {
    width: 100%;
    height: 220vh;
  }
  .IntegAlliance-page .mission__section-outer .mission__section {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    background-color: white;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background .img {
    width: 90%;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background .scroll-text {
    font-size: 0.72rem;
    line-height: 0.85rem;
    margin-top: 2.4rem;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .-background .scroll-text span {
    padding: 0 0.6rem;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .inner-bg {
    left: 50%;
    top: 60%;
    width: 3.75rem;
    height: 5rem;
    border-radius: 0.24rem;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body {
    padding: 1.89rem 0.3rem 1rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body .title {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body .context {
    margin-top: 0.36rem;
    max-width: 100%;
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
  .IntegAlliance-page .mission__section-outer .mission__section .mission__section-wrapper .mission__section-inner .-body .btn-box {
    margin-top: 0.6rem;
  }
  .IntegAlliance-page .partner__section {
    overflow: hidden;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper {
    padding: 2.4rem 0.3rem 1.2rem;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .content {
    z-index: 3;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .content .title {
    font-size: 0.72rem;
    line-height: 0.85rem;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .content .context {
    margin-top: 0.36rem;
    font-size: 0.32rem;
    line-height: 0.38rem;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .content .btn-box {
    margin-top: 0.6rem;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer {
    position: relative;
    margin-top: 1.69rem;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20rem;
    height: 12rem;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url(../images/target/base/IntegAlliance/circle-bg.svg) center center no-repeat;
    background-size: contain;
    z-index: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows {
    position: relative;
    padding: 0.97rem 0;
    overflow: hidden;
    z-index: 1;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows::after {
    display: none;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    will-change: transform;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo {
    position: relative;
    width: 3.1rem;
    height: 3.1rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider {
    display: none;
    position: absolute;
    width: calc(100% + 1px);
    height: 0.97rem;
    left: 0;
    top: 0;
    -webkit-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
            transform: translate(0, -100%);
    z-index: 1;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-top::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-top::after, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-top::after, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::after {
    left: auto;
    right: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom {
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
    top: auto;
    bottom: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .block__divider.vertical-bottom::after {
    background: -webkit-linear-gradient(bottom, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    background: linear-gradient(to top, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper {
    position: relative;
    height: calc(100% + 1px);
    width: calc(100% + 1px);
    overflow: clip;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper:hover .background-gradient {
    opacity: 0.2;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .background-holder {
    position: absolute;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 2;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-holder,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .background-gradient {
    --mouse-x: 0;
    --mouse-y: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-holder::after,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .background-gradient::after {
    content: "";
    position: absolute;
    left: 0;
    opacity: 1;
    top: 0;
    height: 9rem;
    width: 9rem;
    background: url(../images/target/base/hry/svg36.svg) center center no-repeat;
    background-size: contain;
    z-index: 2;
    -webkit-transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
        -ms-transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
            transform: translate(calc(-50% - var(--mouse-x)), calc(-50% - var(--mouse-y)));
    will-change: transform;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-holder {
    padding: 2px;
    -webkit-mask: -webkit-linear-gradient(#fff, #fff) content-box, -webkit-linear-gradient(#fff, #fff);
            mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 1;
    z-index: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .slot__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .slot__wrapper a {
    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%;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .slot__wrapper a img {
    width: 2.2rem;
    height: 1.5rem;
    object-fit: contain;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::after,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::before,
.IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-v::after {
    left: auto;
    right: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::before, .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::after {
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
  }
  .IntegAlliance-page .partner__section .partner__section-wrapper .logo-rows-outer .logo-rows .logo-row .logo-row-wrapper .logo .border__wrapper .overflow__wrapper .border-bg-h::after {
    top: auto;
    bottom: 0;
  }
}

@media screen and (max-width: 800px) {
  .sk-title01 {
    font-family: var(--sk-font-Medium);
    font-size: 0.84rem;
    line-height: 0.99rem;
  }

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

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