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

/*
 * 富文本初始化
 */
/* 全局样式变量 */
:root {
  --sk-font-Light: '';
  --sk-font-Regular: 'SOURCEHANSANSCN-REGULAR';
  --sk-font-Medium: 'SOURCEHANSANSCN-MEDIUM';
  --sk-font-Bold: 'SOURCEHANSANSCN-BOLD';
  --sk-font-SemiBold: 'SOURCEHANSANSCN-SEMIBOLD';
  --sk-font-Num: '';
}

body .lazy-video,
body img.lazy-img,
body img.lazy-header-img {
  opacity: 0;
}
body .lazy-video[lazy-status=load],
body img.lazy-img[lazy-status=load],
body img.lazy-header-img[lazy-status=load] {
  opacity: 1;
}

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

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

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

@-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;
  }
}
@-webkit-keyframes image-sequence-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes image-sequence-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.frame-sequence canvas,
.frame-background canvas {
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.frame-sequence.is-sequence-ready canvas,
.frame-background.is-sequence-ready canvas {
  opacity: 1;
}
.frame-sequence .image-sequence-loading,
.frame-background .image-sequence-loading {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.14rem;
  background: rgba(19, 21, 25, 0.4);
  backdrop-filter: blur(0.04rem);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.frame-sequence.is-sequence-loading .image-sequence-loading,
.frame-background.is-sequence-loading .image-sequence-loading {
  opacity: 1;
  visibility: visible;
}
.frame-sequence .image-sequence-loading-spinner,
.frame-background .image-sequence-loading-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--sk-c-brand);
  -webkit-animation: image-sequence-spin 1s linear infinite;
          animation: image-sequence-spin 1s linear infinite;
}
.frame-sequence .image-sequence-loading-text,
.frame-background .image-sequence-loading-text {
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 800px) {
  .fadeInUpSmall {
    opacity: 0;
    -webkit-animation-name: fadeInUpSmall;
            animation-name: fadeInUpSmall;
  }
}
@media screen and (max-width: 800px) {
  .fadeInUpSmall {
    visibility: visible !important;
  }
}

.svg-ctx {
  object-fit: contain;
}
.svg-ctx path {
  fill: currentColor;
}
.svg-ctx ellipse {
  stroke: currentColor;
}

.fit-image {
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.fit-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topA {
  cursor: pointer;
  position: fixed;
  z-index: 9;
  right: 0.3rem;
  bottom: 0.6rem;
  border-radius: 50%;
  width: 0.48rem;
  height: 0.48rem;
  opacity: 0;
  visibility: hidden;
  background: url(../images/base/demoImg/topA.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topA.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .topA {
    right: 0.42rem;
    bottom: 1.2rem;
    width: 0.64rem;
    height: 0.64rem;
  }
}

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

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

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

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

.sk_select {
  --h: .56rem;
  --width: 100%;
  --height: .56rem;
  --arrow-icon: url(../images/base/selectDown.svg);
  --c-input-background: rgba(0, 0, 0, 0.1);
  --c-input-background-active: rgba(0, 0, 0, 0.1);
  --c-input-border: none;
  --c-input-radius: .48rem;
  --c-input-text: black;
  --c-input-placeholder: rgba(0, 0, 0, 0.6);
  --c-layer-padding: .16rem .04rem .21rem .22rem;
  --c-layer-radius: .24rem;
  --c-layer-background: rgba(0, 0, 0, 0.1);
  --c-layer-box-shadow: none;
  --c-layer-item-gap: .12rem;
  --c-layer-text: black;
  position: relative;
  width: var(--width);
  z-index: 1;
}
.sk_select.border-type {
  --c-input-background: transparent;
  --c-input-background-active: rgba(255, 255, 255, 0.1);
  --c-input-border: 1px solid rgba(110, 121, 143, 1);
}
.sk_select.on {
  z-index: 2;
}
.sk_select.on .-select-front {
  background: var(--c-input-background-active);
}
.sk_select.on .-select-front::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk_select.on .-select-layer {
  pointer-events: auto;
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
.sk_select.on .-select-layer .-inner {
  opacity: 1;
}
.sk_select .-select-front input::-webkit-input-placeholder {
  color: var(--c-input-placeholder);
}
.sk_select .-select-front input::-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk_select .-select-front input:-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk_select .-select-front input:-ms-input-placeholder {
  color: var(--c-input-placeholder);
}
.sk_select .-select-front textarea::-webkit-input-placeholder {
  color: var(--c-input-placeholder);
}
.sk_select .-select-front textarea::-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk_select .-select-front textarea:-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk_select .-select-front textarea:-ms-input-placeholder {
  color: var(--c-input-placeholder);
}
.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.16rem 0.24rem;
  height: var(--height);
  background: var(--c-input-background);
  border-radius: var(--c-input-radius);
  border: var(--c-input-border);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-front input {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  pointer-events: none;
  width: 100%;
  font-size: 0.16rem;
}
.sk_select .-select-front::after {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  background: var(--arrow-icon) 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 {
  pointer-events: none;
  position: absolute;
  width: 100%;
  bottom: -0.1rem;
  left: 0;
  box-shadow: var(--c-layer-box-shadow);
  -webkit-transform: translate(0, 105%);
      -ms-transform: translate(0, 105%);
          transform: translate(0, 105%);
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer .-inner {
  background-color: var(--c-layer-background);
  border-radius: var(--c-layer-radius);
  padding: var(--c-layer-padding);
  overflow: hidden;
  opacity: 0;
  backdrop-filter: blur(40px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: var(--c-layer-item-gap);
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: var(--c-layer-text);
  font-family: var(--sk-font-Medium);
  opacity: 0.6;
  -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 {
  opacity: 1;
}
@media screen and (max-width: 800px) {
  .sk_select {
    --h: .9rem;
    width: 100%;
  }
  .sk_select .-select-front {
    padding: 0.33rem 0.2rem 0.33rem 0.3rem;
    height: var(--h);
  }
  .sk_select .-select-front input {
    font-size: 0.29rem;
  }
  .sk_select .-select-front::after {
    width: 0.43rem;
    height: 0.43rem;
  }
  .sk_select .-select-layer .-inner {
    border-radius: 0.43rem;
    padding: 0.24rem 0.2rem 0.3rem 0.24rem;
  }
  .sk_select .-select-layer .-inner dl dd {
    margin-top: 0.38rem;
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.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-quick-list {
  --item-count: 3;
  --item-gap-x: 0.16rem;
  --item-gap-y: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: calc(var(--item-gap-y) / 2 * -1) calc(var(--item-gap-x) / 2 * -1);
}
.sk-quick-list .sk-quick-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% / var(--item-count));
  padding: calc(var(--item-gap-y) / 2) calc(var(--item-gap-x) / 2);
}
.sk-quick-list .sk-quick-item .sk-quick-item-slot {
  width: 100%;
  height: 100%;
}

.sk-form {
  width: 100%;
}
.sk-form .sk-form__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.32rem 0.16rem;
}
.sk-form .sk-form__wrapper .sk-form-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.sk-form .sk-form__wrapper .sk-form-item.w50p {
  min-width: calc((100% - 0.16rem) / 2);
}
.sk-form .sk-form__wrapper .sk-form-item.w100p {
  min-width: 100%;
}
.sk-form .sk-form__wrapper .sk-form-item .sk-form-item__label {
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-bottom: 0.16rem;
}
.sk-form .captcha-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
}
.sk-form .captcha-box .sk-input {
  max-width: calc((100% - 0.16rem) / 2);
}
.sk-form .captcha-box .captcha-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;
}
.sk-form .captcha-box .captcha-img img {
  cursor: pointer;
  height: 0.56rem;
  border-radius: 0.28rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.24rem;
}
.sk-form .captcha-box .captcha-img .captcha-text {
  cursor: pointer;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.8);
}
.sk-form .captcha-box .captcha-img .captcha-text .try-again {
  color: #00AEFF;
}
@media screen and (max-width: 800px) {
  .sk-form .sk-form__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.43rem;
  }
  .sk-form .sk-form__wrapper .sk-form-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
  .sk-form .sk-form__wrapper .sk-form-item.w50p {
    min-width: 100%;
  }
  .sk-form .sk-form__wrapper .sk-form-item.w100p {
    min-width: 100%;
  }
  .sk-form .sk-form__wrapper .sk-form-item .sk-form-item__label {
    font-size: 0.25rem;
    line-height: 0.43rem;
    margin-bottom: 0.14rem;
  }
  .sk-form .captcha-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.29rem;
  }
  .sk-form .captcha-box .sk-input {
    max-width: 100%;
  }
  .sk-form .captcha-box .captcha-img img {
    height: 0.72rem;
    border-radius: 0.5rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-right: 0.29rem;
  }
  .sk-form .captcha-box .captcha-img .captcha-text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.sk-input {
  --c-background: rgba(0, 0, 0, 0.1);
  --c-input: black;
  --c-input-placeholder: rgba(0, 0, 0, 0.6);
  --c-input-border: none;
  width: 100%;
}
.sk-input.border-type {
  --c-background: transparent;
  --c-input-border: 1px solid rgba(110, 121, 143, 1);
}
.sk-input .sk-input__wrapper input::-webkit-input-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper input::-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper input:-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper input:-ms-input-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper textarea::-webkit-input-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper textarea::-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper textarea:-moz-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper textarea:-ms-input-placeholder {
  color: var(--c-input-placeholder);
}
.sk-input .sk-input__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.16rem 0.24rem;
  background-color: var(--c-background);
  border-radius: 0.48rem;
  border: var(--c-input-border);
}
.sk-input .sk-input__wrapper.textarea {
  border-radius: 0.24rem;
}
.sk-input .sk-input__wrapper .prefix-icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
  object-fit: contain;
}
.sk-input .sk-input__wrapper .sk-input__suffix {
  font-family: var(--sk-font-Medium);
  font-size: 0.16rem;
  line-height: 0.24rem;
  margin-left: 0.16rem;
}
.sk-input .sk-input__wrapper input, .sk-input .sk-input__wrapper textarea {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  color: var(--c-input);
  font-size: 0.16rem;
  line-height: 0.24rem;
}
.sk-input .sk-input__wrapper input {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sk-input .sk-input__wrapper textarea {
  resize: none;
}
.sk-input .sk-input__wrapper textarea::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.sk-input .sk-input__wrapper textarea::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}
.sk-input .sk-input__wrapper textarea::-webkit-scrollbar-thumb:vertical {
  background-color: rgba(255, 255, 255, 0.3);
}
.sk-input .sk-input__wrapper textarea::-webkit-scrollbar-width {
  width: 4px;
}
.sk-input .sk-input__wrapper textarea::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: none;
}
@media screen and (max-width: 800px) {
  .sk-input .sk-input__wrapper {
    padding: 0.22rem 0.29rem;
    border-radius: 0.87rem;
  }
  .sk-input .sk-input__wrapper.textarea {
    border-radius: 0.48rem;
  }
  .sk-input .sk-input__wrapper .prefix-icon {
    width: 0.43rem;
    height: 0.43rem;
    margin-right: 0.14rem;
  }
  .sk-input .sk-input__wrapper .sk-input__suffix {
    font-family: var(--sk-font-Medium);
    font-size: 0.25rem;
    line-height: 0.43rem;
    margin-left: 0.14rem;
  }
  .sk-input .sk-input__wrapper input, .sk-input .sk-input__wrapper textarea {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.sk-check-box {
  --image: url();
  --c-text: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.sk-check-box.on {
  --image: url();
}
.sk-check-box .sk-check-box__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sk-check-box .sk-check-box__wrapper .sk-check-box__icon {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
  background-image: var(--image);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.sk-check-box .sk-check-box__wrapper .sk-check-box__text {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--c-text);
}
.sk-check-box .sk-check-box__wrapper .sk-check-box__text a {
  color: inherit;
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .sk-check-box .sk-check-box__wrapper .sk-check-box__icon {
    width: 0.36rem;
    height: 0.36rem;
    margin-right: 0.32rem;
  }
  .sk-check-box .sk-check-box__wrapper .sk-check-box__text {
    font-size: 0.25rem;
    line-height: 0.43rem;
  }
}

.sk-tab-box {
  --c-box-background: transparent;
  --c-item-background-active: var(--sk-c-brand);
  --c-item-background-hover: rgba(255, 255, 255, .10);
  --c-item-text: white;
  --c-item-text-acitve: white;
  --c-border: #6E798F;
  --blur: blur(20px);
  display: inline-block;
}
.sk-tab-box[data-theme=white] {
  --c-box-background: transparent;
  --c-item-background-active: var(--sk-c-brand);
  --c-item-background-hover: rgba(0, 0, 0, 0.1);
  --c-item-text: #252A35;
  --c-border: #BEC6D9;
  --c-item-text-acitve: white;
}
.sk-tab-box.above-the-image {
  --c-box-background: rgba(0, 0, 0, 0.35);
}
.sk-tab-box.above-the-image .tab-wrapper {
  border: none;
}
.sk-tab-box .tab-wrapper {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.08rem;
  border-radius: 0.48rem;
  border: 1px solid var(--c-border);
  background-color: var(--c-box-background);
  backdrop-filter: var(--blur);
  overflow: hidden;
}
.sk-tab-box .tab-wrapper .tab-list-1s {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: auto;
  height: 0.4rem;
  border-radius: 0.48rem;
  overflow: hidden;
  margin-right: 0.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s.active {
  background-color: var(--c-item-background-active) !important;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s.active .inner {
  color: var(--c-item-text-acitve);
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s:hover {
  background-color: var(--c-item-background-hover);
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s:last-child {
  margin-right: 0;
}
.sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s .inner {
  display: block;
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0 0.32rem;
  color: var(--c-item-text);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .sk-tab-box .tab-wrapper {
    max-width: 100%;
    padding: 0.07rem;
    border-radius: 0.87rem;
  }
  .sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s {
    height: 0.72rem;
    border-radius: 0.87rem;
    margin-right: 0.08rem;
  }
  .sk-tab-box .tab-wrapper .tab-list-1s .tab-item-1s .inner {
    font-size: 0.25rem;
    line-height: 0.43rem;
    padding: 0 0.43rem;
  }
}

/* 集合属性（主题样式） */
.demo-page {
  background-color: #ffffff;
}
.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 {
  padding: 0.16rem;
}
.demo-page .page-main .wal .-container.mt100 {
  margin-top: 1rem;
}
.demo-page .page-main .wal .-container.mt200 {
  margin-top: 2rem;
}
.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;
}
.demo-page .page-main .wal .-container .-body.nopading {
  padding: 0;
}
.demo-page .page-main .wal .-container .-body .sk-list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  .pc-show {
    display: block;
  }
  .phone-show {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .phone-show {
    display: block;
  }
  .pc-show {
    display: none !important;
  }
}
.installer-page {
  background: #0B1222;
  color: #FFFFFF;
}
.installer-page .banner-section {
  height: 6rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .installer-page .banner-section {
    height: 9.6rem;
  }
}
.installer-page .banner-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.installer-page .banner-section .wp {
  height: 100%;
  position: relative;
  z-index: 5;
}
.installer-page .banner-section .wp .con-box {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 800px) {
  .installer-page .banner-section .wp .con-box {
    padding-bottom: 0.62rem;
  }
}
.installer-page .banner-section .wp .con-box .h1 {
  text-align: center;
  font-family: var(--sk-font-SemiBold);
  font-size: 0.48rem;
  line-height: 0.59rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .installer-page .banner-section .wp .con-box .h1 {
    font-size: 0.56rem;
    line-height: 0.68rem;
  }
}
.installer-page .solutions-section {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 800px) {
  .installer-page .solutions-section {
    margin-top: 1.4rem;
    margin-bottom: 1.41rem;
  }
}
.installer-page .solutions-section .flex-wrap {
  display: -webkit-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) {
  .installer-page .solutions-section .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.installer-page .solutions-section .flex-wrap .img-box {
  width: 7.6rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 1.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .installer-page .solutions-section .flex-wrap .img-box {
    width: 100%;
    margin-right: 0;
    border-radius: 0.16rem;
  }
}
.installer-page .solutions-section .flex-wrap .img-box .img {
  width: 100%;
}
.installer-page .solutions-section .flex-wrap .con-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .installer-page .solutions-section .flex-wrap .con-box {
    margin-top: 0.4rem;
  }
}
.installer-page .solutions-section .flex-wrap .con-box .subtitle {
  font-size: 0.18rem;
  line-height: 0.22rem;
  font-family: var(--sk-font-Medium);
  color: #0B5ACE;
}
@media screen and (max-width: 800px) {
  .installer-page .solutions-section .flex-wrap .con-box .subtitle {
    font-size: 0.24rem;
    line-height: 0.29rem;
  }
}
.installer-page .solutions-section .flex-wrap .con-box .h2 {
  margin-top: 0.24rem;
  font-size: 0.4rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .installer-page .solutions-section .flex-wrap .con-box .h2 {
    font-size: 0.48rem;
    line-height: 0.59rem;
  }
}
.installer-page .solutions-section .flex-wrap .con-box .solutions-text {
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.22rem;
}
@media screen and (max-width: 800px) {
  .installer-page .solutions-section .flex-wrap .con-box .solutions-text {
    font-size: 0.26rem;
    line-height: 0.32rem;
  }
}
.installer-page .solutions-section .flex-wrap .con-box .more-btn {
  margin-top: 0.4rem;
}
@media screen and (max-width: 800px) {
  .installer-page .solutions-section .flex-wrap .con-box .more-btn {
    margin-top: 0.48rem;
  }
}
.installer-page .start-journey-section {
  margin-top: 1.4rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section {
    margin-top: 1.41rem;
    margin-bottom: 1.4rem;
  }
}
.installer-page .start-journey-section .h2 {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.49rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (min-width: 800px) {
  .installer-page .start-journey-section .h2 br {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .h2 {
    font-size: 0.48rem;
    line-height: 0.59rem;
  }
}
.installer-page .start-journey-section .card-wrap {
  margin-top: 0.48rem;
}
.installer-page .start-journey-section .card-wrap .card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -0.2rem;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list {
    margin: 0;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item {
  width: calc(33.3333333333% - 0.4rem);
  margin: 0.2rem;
  border-radius: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  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) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item {
    width: 100%;
    margin: 0;
    border-radius: 0.16rem;
    padding: 0.4rem 0.3rem 0.3rem;
  }
  .installer-page .start-journey-section .card-wrap .card-list .card-item:not(:last-child) {
    margin-bottom: 0.4rem;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top {
  padding: 0.16rem 0.1rem 0.28rem;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item .card-top {
    padding: 0;
    padding-bottom: 0.6rem;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .card-title {
  font-size: 0.24rem;
  line-height: 0.29rem;
  font-family: var(--sk-font-SemiBold);
  margin-bottom: 0.23rem;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .card-title {
    margin-bottom: 0.4rem;
    text-align: center;
    font-size: 0.32rem;
    line-height: 0.39rem;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.15rem 0.16rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.08rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box {
    padding: 0.25rem 0.2rem;
    border-radius: 0.16rem;
    margin-bottom: 0.2rem;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box:hover {
  background: rgba(255, 255, 255, 0.12);
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box:hover .arr-icon {
  opacity: 1;
  visibility: visible;
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box .left-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;
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box .left-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box .left-box .icon {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box .left-box .cell-text {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box .left-box .cell-text {
    margin-left: 0.18rem;
    font-size: 0.26rem;
    line-height: 0.32rem;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box .arr-icon {
  width: 0.24rem;
  height: 0.24rem;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item .card-top .cell-box .arr-icon {
    width: 0.4rem;
    height: 0.4rem;
    opacity: 1;
    visibility: visible;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .img-box {
  width: 100%;
  height: 2.48rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .installer-page .start-journey-section .card-wrap .card-list .card-item .img-box {
    height: 3.54rem;
    border-radius: 0.16rem;
  }
}
.installer-page .start-journey-section .card-wrap .card-list .card-item .img-box .img {
  width: 100%;
  height: 100%;
}
.installer-page .installer-workflows-section {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
.installer-page .installer-workflows-section .wp {
  max-width: 17.2rem;
}
.installer-page .installer-workflows-section .h2 {
  margin-bottom: 0.64rem;
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.49rem;
  font-family: var(--sk-font-SemiBold);
}
.installer-page .installer-workflows-section .comparison-body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0.2rem;
  height: 7.8rem;
}
.installer-page .installer-workflows-section .swiper-comparison-box {
  position: relative;
  width: 66.27%;
  height: 7.8rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
.installer-page .installer-workflows-section .swiper-comparison-box .image-layer,
.installer-page .installer-workflows-section .swiper-comparison-box .layer-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}
.installer-page .installer-workflows-section .swiper-comparison-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.installer-page .installer-workflows-section .comparison-content {
  position: relative;
  width: calc(33.73% - 0.2rem);
  height: 7.8rem;
  overflow: hidden;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 0.06);
}
.installer-page .installer-workflows-section .comparison-content .content-list {
  height: 100%;
}
.installer-page .installer-workflows-section .comparison-content .content-item {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.49rem 0.3rem 5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s, -webkit-transform 0.35s ease;
}
.installer-page .installer-workflows-section .comparison-content .content-item.show {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.installer-page .installer-workflows-section .comparison-content .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;
  min-width: 0.48rem;
  height: 0.36rem;
  border-radius: 0.2rem;
  background: #0B5ACE;
  color: #FFFFFF;
  font-size: 0.16rem;
  padding: 0 0.16rem;
  padding-top: 0.04rem;
  font-family: var(--sk-font-Medium);
}
.installer-page .installer-workflows-section .comparison-content .content-title {
  margin-top: 0.4rem;
  font-size: 0.4rem;
  line-height: 0.49rem;
  font-family: var(--sk-font-SemiBold);
  text-align: center;
  white-space: pre-line;
}
.installer-page .installer-workflows-section .comparison-content .br {
  width: 100%;
  margin-top: 0.77rem;
  margin-bottom: 0.6rem;
  height: 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;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.installer-page .installer-workflows-section .comparison-content .content-text {
  font-size: 0.18rem;
  line-height: 0.22rem;
  text-align: center;
}
.installer-page .installer-workflows-section .comparison-content .word-wrap,
.installer-page .installer-workflows-section .comparison-content .char-mask {
  display: inline-block;
}
.installer-page .installer-workflows-section .comparison-content .char-mask {
  overflow: hidden;
  vertical-align: bottom;
}
.installer-page .installer-workflows-section .comparison-content .char-inner {
  display: inline-block;
  will-change: transform;
}
.installer-page .installer-workflows-section .comparison-content .pagination-box {
  position: absolute;
  z-index: 5;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-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;
}
.installer-page .installer-workflows-section .comparison-content .pagination-box .pagination-item {
  --pagination-progress: 0%;
  width: 0.08rem;
  height: 0.08rem;
  margin-right: 0.08rem;
  padding: 0;
  border: 0;
  border-radius: 0.04rem;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  -webkit-transition: width 0.3s, background 0.3s;
  transition: width 0.3s, background 0.3s;
}
.installer-page .installer-workflows-section .comparison-content .pagination-box .pagination-item:last-child {
  margin-right: 0;
}
.installer-page .installer-workflows-section .comparison-content .pagination-box .pagination-item.on {
  width: 0.33rem;
  overflow: hidden;
  position: relative;
}
.installer-page .installer-workflows-section .comparison-content .pagination-box .pagination-item.on::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.04rem;
  -webkit-transform: translateX(calc(-100% + var(--pagination-progress)));
      -ms-transform: translateX(calc(-100% + var(--pagination-progress)));
          transform: translateX(calc(-100% + var(--pagination-progress)));
  will-change: transform;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-workflows-section .comparison-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.2rem;
    height: calc(100vh - 1.4rem);
  }
  .installer-page .installer-workflows-section .swiper-comparison-box,
  .installer-page .installer-workflows-section .comparison-content {
    width: 100%;
    height: 4.72rem;
    border-radius: 0.16rem;
  }
  .installer-page .installer-workflows-section .comparison-content {
    height: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .installer-page .installer-workflows-section .comparison-content .content-item {
    padding: 0.6rem 0.3rem 0.6rem;
  }
  .installer-page .installer-workflows-section .comparison-content .content-item .tag {
    height: 0.64rem;
    min-width: 0.85rem;
    font-size: 0.26rem;
    border-radius: 0.36rem;
  }
  .installer-page .installer-workflows-section .comparison-content .content-item .content-title {
    margin-top: 0.54rem;
    font-size: 0.4rem;
    line-height: 0.49rem;
  }
  .installer-page .installer-workflows-section .comparison-content .content-item .content-title br {
    display: none;
  }
  .installer-page .installer-workflows-section .comparison-content .content-item .br {
    margin-top: 1.38rem;
    margin-bottom: 0.6rem;
  }
  .installer-page .installer-workflows-section .comparison-content .content-item .content-text {
    font-size: 0.26rem;
    line-height: 0.32rem;
  }
  .installer-page .installer-workflows-section .comparison-content .pagination-box {
    bottom: 0.6rem;
  }
  .installer-page .installer-workflows-section .comparison-content .pagination-box .pagination-item {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
  }
  .installer-page .installer-workflows-section .comparison-content .pagination-box .pagination-item.on {
    width: 0.72rem;
  }
}
.installer-page .offer-benefits-section {
  margin-top: 1.6rem;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section {
    margin-top: 1.4rem;
    margin-bottom: 1rem;
  }
}
.installer-page .offer-benefits-section .h2 {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.49rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section .h2 {
    font-size: 0.48rem;
    line-height: 0.59rem;
  }
}
.installer-page .offer-benefits-section .card-wrap {
  margin-top: 0.48rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap {
    margin-top: 0.48rem;
  }
}
.installer-page .offer-benefits-section .card-wrap .bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10.78rem;
  height: auto;
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap .bg-img {
    width: auto;
    max-width: none;
    height: 10.33rem;
    object-fit: contain;
  }
}
.installer-page .offer-benefits-section .card-wrap .card-list {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.1rem;
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap .card-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  --card-item-width: calc(100% / 3);
  --card-item-min-height: 2.56rem;
  --icon-size: .4rem;
  --card-item-padding: 0.3rem;
}
@media screen and (min-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 .card-item:nth-child(3n), .installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 .card-item:nth-child(3n-1) {
    border-left: none;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 .card-item:nth-child(1) {
    border-top-left-radius: 0.1rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 .card-item:nth-child(3) {
    border-top-right-radius: 0.1rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 .card-item:nth-child(n+4) {
    border-top: none;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 .card-item:last-child:nth-child(3n) {
    border-bottom-right-radius: 0.1rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list.data-row-3 .card-item:nth-last-child(-n+3):nth-child(3n+1) {
    border-bottom-left-radius: 0.1rem;
  }
}
.installer-page .offer-benefits-section .card-wrap .card-list:not(.data-row-3) {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.installer-page .offer-benefits-section .card-wrap .card-list:not(.data-row-3) .card-item {
  max-width: 3.9rem;
}
@media screen and (min-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap .card-list:not(.data-row-3) .card-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list:not(.data-row-3) .card-item:not(:first-child) {
    border-left: none;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list:not(.data-row-3) .card-item:first-child {
    border-top-left-radius: 0.1rem;
    border-bottom-left-radius: 0.1rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list:not(.data-row-3) .card-item:last-child {
    border-top-right-radius: 0.1rem;
    border-bottom-right-radius: 0.1rem;
  }
}
.installer-page .offer-benefits-section .card-wrap .card-list .card-item {
  width: var(--card-item-width, auto);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--card-item-padding, 0.3rem 0.3rem 0.6rem);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  min-height: var(--card-item-min-height, 3.8rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  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) {
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item {
    width: 50%;
    padding: 0.3rem 0.3rem 0.43rem;
    min-height: 4.5rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item:nth-child(2n) {
    border-left: none;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item:nth-child(n+3) {
    border-top: none;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item:first-child {
    border-top-left-radius: 0.16rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item:nth-child(2) {
    border-top-right-radius: 0.16rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item:nth-last-child(-n+2):nth-child(2n+1) {
    border-bottom-left-radius: 0.16rem;
  }
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item:nth-last-child(1):nth-child(2n) {
    border-bottom-right-radius: 0.16rem;
  }
}
.installer-page .offer-benefits-section .card-wrap .card-list .card-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.installer-page .offer-benefits-section .card-wrap .card-list .card-item .icon {
  width: var(--icon-size, 0.48rem);
  height: var(--icon-size, 0.48rem);
  display: block;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item .icon {
    width: 0.64rem;
    height: 0.64rem;
    margin-bottom: 0.4rem;
  }
}
.installer-page .offer-benefits-section .card-wrap .card-list .card-item .card-title {
  margin-top: auto;
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
  color: #fff;
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item .card-title {
    font-size: 0.28rem;
    line-height: 0.34rem;
  }
}
.installer-page .offer-benefits-section .card-wrap .card-list .card-item .card-text {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.17rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 800px) {
  .installer-page .offer-benefits-section .card-wrap .card-list .card-item .card-text {
    margin-top: 0.24rem;
    font-size: 0.22rem;
    line-height: 0.27rem;
  }
}
.installer-page .installer-app-section {
  margin-top: 1.4rem;
  padding-bottom: 1.4rem;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section {
    margin-top: 1rem;
  }
}
.installer-page .installer-app-section .card-wrap {
  height: 6.4rem;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap {
    height: 10.8rem;
    border-radius: 0.16rem;
  }
}
.installer-page .installer-app-section .card-wrap .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.installer-page .installer-app-section .card-wrap .con-box {
  position: relative;
  z-index: 5;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.6rem;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box {
    padding: 0.7rem 0.25rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.installer-page .installer-app-section .card-wrap .con-box .h2 {
  font-size: 0.4rem;
  line-height: 0.49rem;
  font-family: var(--sk-font-SemiBold);
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box .h2 {
    font-size: 0.48rem;
    line-height: 0.59rem;
  }
}
.installer-page .installer-app-section .card-wrap .con-box .con-text {
  max-width: 6.4rem;
  margin-top: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.2rem;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box .con-text {
    text-align: center;
    font-size: 0.26rem;
    line-height: 0.32rem;
  }
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box .btn-list {
    margin-top: 0.53rem;
  }
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list .link {
  height: 0.57rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box .btn-list .link {
    height: 0.84rem;
  }
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list .link:not(:last-child) {
  margin-right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box .btn-list .link:not(:last-child) {
    margin-right: 0.24rem;
  }
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list .link:hover .layer_box {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list .link .link-img {
  height: 100%;
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list .link .layer_box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 100%;
  padding-bottom: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list .link .layer_box .qr_yer {
  width: 1.58rem;
  height: 1.58rem;
  border-radius: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #19202f;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box .btn-list .link .layer_box .qr_yer {
    width: 2rem;
    height: 2rem;
  }
}
.installer-page .installer-app-section .card-wrap .con-box .btn-list .link .layer_box .qr_yer .qr-img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  .installer-page .installer-app-section .card-wrap .con-box .btn-list .link .layer_box .qr_yer .qr-img {
    width: 1.76rem;
    height: 1.76rem;
  }
}

.share______wrap {
  margin-bottom: 0.37rem;
}
@media screen and (max-width: 800px) {
  .share______wrap {
    margin-bottom: 0.7rem;
  }
}
.share______wrap .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;
}
.share______wrap .link-icon-box .link-icon {
  margin-right: 0.16rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .share______wrap .link-icon-box .link-icon {
    margin-right: 0.3rem;
  }
}
.share______wrap .link-icon-box .link-icon:last-child {
  margin-right: 0;
}
@media screen and (min-width: 800px) {
  .share______wrap .link-icon-box .link-icon:hover .icon {
    opacity: 1;
  }
}
@media screen and (max-width: 800px) {
  .share______wrap .link-icon-box .link-icon:active .icon {
    opacity: 1;
  }
}
.share______wrap .link-icon-box .link-icon .icon {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
  opacity: 0.5;
}
@media screen and (max-width: 800px) {
  .share______wrap .link-icon-box .link-icon .icon {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.share______wrap .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.07rem 0.07rem;
  border-radius: 0.08rem;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.12rem;
  line-height: 0.15rem;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 800px) {
  .share______wrap .link-icon-box .link-icon .-layer {
    top: 0;
    bottom: auto;
    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.1rem 0.11rem 0.11rem;
    font-size: 0.22rem;
    line-height: 0.27rem;
  }
}
