/**
 * 这是个 less 变量、函数文件，不会被编译成 common.css
 */
.hover-color-primary:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.skeleton-wrapper {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.skeleton-wrapper:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  left: 0;
  top: 0;
  z-index: 20;
  -webkit-animation: skeletonLoading 2s ease-in-out infinite;
  animation: skeletonLoading 2s ease-in-out infinite;
  content: "";
}
@keyframes product-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.skeleton-element {
  animation: product-skeleton-loading 1.4s ease infinite;
  background-image: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-position: 100% 50%;
  background-size: 400% 100%;
  height: 0.8rem;
  list-style: none;
}
.skeleton-more-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
@-webkit-keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
.skeleton-header {
  display: flex;
  justify-content: center;
  padding: 0 8px;
  height: 72px;
  align-items: center;
}
.skeleton-header .skeleton-title {
  width: 200px;
  height: 28px;
}
.skeleton-more {
  width: 131px;
  height: 32px;
}
.skeleton-product-card {
  width: 16%;
  float: left;
  margin-left: 15px;
}
/**
 * 响应式设计工具文件
 * 提供便捷的混入和工具类来简化响应式开发
 */
:root {
  --root-fs: 16;
}
@media (min-width: 700px) {
  :root {
    --root-fs: 30;
  }
}
@media (min-width: 675px) and (max-width: 699px) {
  :root {
    --root-fs: 28;
  }
}
@media (min-width: 650px) and (max-width: 674px) {
  :root {
    --root-fs: 27;
  }
}
@media (min-width: 625px) and (max-width: 649px) {
  :root {
    --root-fs: 26;
  }
}
@media (min-width: 600px) and (max-width: 624px) {
  :root {
    --root-fs: 25;
  }
}
@media (min-width: 575px) and (max-width: 599px) {
  :root {
    --root-fs: 24;
  }
}
@media (min-width: 550px) and (max-width: 574px) {
  :root {
    --root-fs: 23;
  }
}
@media (min-width: 525px) and (max-width: 549px) {
  :root {
    --root-fs: 22;
  }
}
@media (min-width: 500px) and (max-width: 524px) {
  :root {
    --root-fs: 21;
  }
}
@media (min-width: 475px) and (max-width: 499px) {
  :root {
    --root-fs: 20;
  }
}
@media (min-width: 450px) and (max-width: 474px) {
  :root {
    --root-fs: 19;
  }
}
@media (min-width: 425px) and (max-width: 449px) {
  :root {
    --root-fs: 18;
  }
}
@media (min-width: 400px) and (max-width: 424px) {
  :root {
    --root-fs: 17;
  }
}
@media (min-width: 375px) and (max-width: 399px) {
  :root {
    --root-fs: 16;
  }
}
@media (min-width: 350px) and (max-width: 374px) {
  :root {
    --root-fs: 15;
  }
}
@media (min-width: 325px) and (max-width: 349px) {
  :root {
    --root-fs: 14;
  }
}
@media (min-width: 300px) and (max-width: 324px) {
  :root {
    --root-fs: 13;
  }
}
@media (min-width: 275px) and (max-width: 299px) {
  :root {
    --root-fs: 12;
  }
}
@media (min-width: 250px) and (max-width: 274px) {
  :root {
    --root-fs: 11;
  }
}
@media (max-width: 249px) {
  :root {
    --root-fs: 11;
  }
}
@media (min-width: 700px) and (max-width: 1200px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    height: auto;
  }
}
@media (max-width: 700px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    height: auto;
  }
}
body {
  font-family: PingFangSCSemibold, PingFangSCSemibold;
  background-color: #fff;
  min-width: 1440px;
  min-height: 1560px;
  background: url("/egg/image/visitorServiceNew/visitor-service-bg-new.png") no-repeat top center;
  background-size: auto 1560px;
}
@media (min-width: 2000px) {
  body {
    background: url("/egg/image/visitorServiceNew/visitor-service-bg-new.png") no-repeat top center;
    min-height: 1560px;
    background-size: auto 100vw;
  }
}
@media (min-width: 700px) and (max-width: 1200px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    background: #fff;
  }
  body .cj-main {
    background: url("/egg/image/visitorServiceNew/visitor-service-bg-new-ipad.png") no-repeat top center;
    background-size: auto 1800px;
  }
}
@media (max-width: 700px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    background: #fff;
  }
  body .cj-main {
    background: url("/egg/image/visitorServiceNew/visitor-service-bg-new-mobile.png") no-repeat top center;
    background-size: auto calc(1680 / 16 * var(--root-fs) * 1px);
  }
}
.vst-counts-info-back-show {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-content: center;
  overflow: hidden;
}
.vst-counts-info-back-show .vst-counts-info-bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: unset;
  z-index: -2;
  display: none;
}
.vst-counts-info-back-show .vst-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  max-width: unset;
  aspect-ratio: 1.23314066;
  height: auto;
  z-index: -1;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .vst-counts-info-back-show .vst-banner-bg {
    height: 450px;
  }
}
@media (max-width: 700px) {
  .vst-counts-info-back-show .vst-banner-bg {
    height: 120vw;
  }
}
.visitor-banner.cj .vst-tit {
  top: 32px;
}
.visitor-banner.cj .vst-con {
  top: 72px;
  font-size: 20px;
  line-height: 29px;
}
.visitor-banner.cj .sourceProducts {
  --product-card-origin-price-color: #666666;
}
.visitor-banner.cj .sourceProducts.notCJ {
  width: 756px;
  height: 104px;
  border-radius: 54px;
  background: linear-gradient(180deg, rgba(255, 223, 198, 0.29) 0%, rgba(252, 244, 238, 0.68) 100%);
  backdrop-filter: blur(16px);
  margin-top: -52px;
  margin-left: -445px;
  top: calc(100% - 54px);
  padding: 0;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.visitor-banner.cj .sourceProducts .sp-tabs {
  margin-top: 24px;
  height: 33px;
}
.visitor-banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visitor-banner .vst-tit {
  font-weight: normal;
  font-size: 42px;
  color: #ffffff;
  line-height: 32px;
  text-align: center;
  width: 100%;
  padding-top: 90px;
}
.visitor-banner .vst-con {
  text-align: center;
  position: absolute;
  width: 1200px;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}
.visitor-banner .vst-service-links {
  position: absolute;
  width: 100%;
  top: 254px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visitor-banner .vst-service-links .vst-service-link {
  color: #fff;
  background: rgba(155, 155, 155, 0.51);
  border-radius: 18px;
  height: 36px;
  border: 1px solid #ffffff;
  margin: 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.visitor-banner .vst-service-links .vst-service-link span {
  margin-left: 10px;
}
.visitor-banner .vst-service-links .vst-service-link:hover {
  color: var(--color-primary);
  background-color: #fff;
}
.visitor-banner .sourceProducts {
  background: url("/egg/image/visitorServiceNew/source_products_bg_new.png") no-repeat center center;
  background-size: 100% 100%;
  width: 1200px;
  margin-top: -74px;
  top: calc(100% - 75px);
  left: 50%;
  border-radius: 36px;
}
.visitor-banner .sourceProducts .sp-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab {
  margin: 0 38.5px;
  position: relative;
  color: #333;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  padding-bottom: 5px;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab.active {
  font-weight: bold;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab.active,
.visitor-banner .sourceProducts .sp-tabs .sp-tab:hover {
  color: var(--color-primary);
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab.active::after,
.visitor-banner .sourceProducts .sp-tabs .sp-tab:hover::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab.disabled {
  cursor: not-allowed;
  color: #999;
  font-weight: normal;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab.disabled::after {
  content: none;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(1) {
  width: 45px;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(2) {
  width: 93px;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(3) {
  width: 45px;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(4) {
  width: 95px;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(5) {
  width: 48px;
}
.visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(6) {
  width: 72px;
}
.visitor-banner .sourceProducts .sp-search-box {
  margin: 24px 24px 0;
  padding: 8px;
  width: 708px;
  height: 56px;
  border-radius: 113px;
  background-color: #fff;
  display: flex;
  align-items: center;
  /* 1. 去掉浏览器默认的「自动填充」黄色背景 */
  /* 2. 强制把用户输入后的背景设为透明 / 白色 / 自定义色 */
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper {
  position: relative;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box {
  position: relative;
  cursor: pointer;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #d8d8d8;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100%;
  background-color: #fff;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item .sp-select-item-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  padding-right: 6px;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item .select-icon {
  font-size: 14px;
  color: #999;
  transition: transform 0.3s ease;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown {
  position: absolute;
  top: 100%;
  left: -8px;
  width: 158px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 20px;
  animation: dropdownFadeIn 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item {
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  outline: none;
  text-align: center;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item:hover {
  background-color: #f5f5f5;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item.active {
  color: #f70;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover .sp-select-dropdown {
  opacity: 1;
  visibility: visible;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover .sp-select-box .sp-select-item .select-icon {
  transform: rotate(180deg);
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown:hover {
  opacity: 1;
  visibility: visible;
}
.visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -8px;
  width: 158px;
  height: 200px;
  z-index: 999;
}
.visitor-banner .sourceProducts .sp-search-box input {
  font-size: 18px;
  margin-left: 12px;
  flex: 1;
}
.visitor-banner .sourceProducts .sp-search-box input::placeholder {
  color: #999;
}
.visitor-banner .sourceProducts .sp-search-box input:-webkit-autofill,
.visitor-banner .sourceProducts .sp-search-box input:-webkit-autofill:hover,
.visitor-banner .sourceProducts .sp-search-box input:-webkit-autofill:focus,
.visitor-banner .sourceProducts .sp-search-box input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s;
  /* 延迟写回透明 */
}
.visitor-banner .sourceProducts .sp-search-box input {
  background-color: transparent;
  /* 或 #fff / inherit */
}
.visitor-banner .sourceProducts .sp-search-box i.fangdajing {
  color: #999;
  font-size: 22px;
}
.visitor-banner .sourceProducts .sp-search-box i.camera {
  color: #999;
  font-size: 28px;
  cursor: pointer;
}
.visitor-banner .sourceProducts .sp-search-box i.camera:hover {
  color: var(--color-primary);
}
.visitor-banner .sourceProducts .sp-search-box .searchBtn {
  background-color: var(--color-primary);
  transition: background-color 0.3s;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  padding: 0 20px;
  min-width: 110px;
  height: 40px;
  border-radius: 22px;
  cursor: pointer;
}
.visitor-banner .sourceProducts .sp-search-box .searchBtn .searchBtn-icon {
  display: none;
}
.visitor-banner .sourceProducts .sp-search-box .searchBtn:hover {
  background-color: var(--color-primary-hover);
}
.visitor-banner .sourceProducts .productSwiperContainer {
  position: relative;
}
.visitor-banner .sourceProducts .productSwiperContainer .productSwiper {
  padding: 24px 24px 0;
}
.visitor-banner .sourceProducts .productSwiperContainer .productSwiper .swiper-wrapper {
  justify-content: space-between;
}
.visitor-banner .sourceProducts .productSwiperContainer .productSwiper .swiper-wrapper .swiper-slide {
  width: calc(100% / 5 - 23px);
  margin-right: 0px;
}
.visitor-banner .sourceProducts .productSwiperContainer .productPrev,
.visitor-banner .sourceProducts .productSwiperContainer .productNext {
  position: absolute;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 22px;
  top: 50%;
  z-index: 20;
  transform: translateY(-50%);
}
.visitor-banner .sourceProducts .productSwiperContainer .productPrev:hover,
.visitor-banner .sourceProducts .productSwiperContainer .productNext:hover {
  color: var(--color-theme-1);
}
.visitor-banner .sourceProducts .productSwiperContainer .productPrev.disabled,
.visitor-banner .sourceProducts .productSwiperContainer .productNext.disabled,
.visitor-banner .sourceProducts .productSwiperContainer .productPrev.swiper-button-disabled,
.visitor-banner .sourceProducts .productSwiperContainer .productNext.swiper-button-disabled {
  cursor: not-allowed;
}
.visitor-banner .sourceProducts .productSwiperContainer .productPrev.disabled:hover,
.visitor-banner .sourceProducts .productSwiperContainer .productNext.disabled:hover,
.visitor-banner .sourceProducts .productSwiperContainer .productPrev.swiper-button-disabled:hover,
.visitor-banner .sourceProducts .productSwiperContainer .productNext.swiper-button-disabled:hover {
  color: #B3B3B3;
}
.visitor-banner .sourceProducts .productSwiperContainer .productPrev {
  left: -20px;
}
.visitor-banner .sourceProducts .productSwiperContainer .productNext {
  right: -20px;
}
.visitor-banner .sourceProducts .sp-products {
  display: flex;
  justify-content: center;
  align-items: center;
}
.visitor-banner .sourceProducts .sp-products .sp-product {
  margin-left: 28px;
  position: relative;
}
.visitor-banner .sourceProducts .sp-products .sp-product:nth-of-type(1) {
  margin-left: 0;
}
.visitor-banner .sourceProducts .sp-products.mobile-2x2-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2px;
}
.visitor-banner .sourceProducts .sp-products.mobile-2x2-layout .sp-product {
  margin-left: 0;
  flex-shrink: 0;
}
.visitor-banner .sourceProducts .sp-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 24px;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev,
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev:hover,
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext:hover {
  color: #f70;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev:hover .iconfont,
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext:hover .iconfont {
  color: #f70;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev .iconfont,
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext .iconfont {
  font-size: 22px;
  color: #666;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled {
  cursor: not-allowed;
  color: #B3B3B3;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled .iconfont {
  color: #B3B3B3;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled:hover {
  color: #B3B3B3;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled:hover .iconfont {
  color: #B3B3B3;
}
.visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext {
  margin-left: 12px;
}
.visitor-banner .sourceProducts .sp-product-view-more {
  text-align: center;
}
.visitor-banner .sourceProducts .sp-product-view-more a {
  color: #666;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 500;
}
.visitor-banner .sourceProducts .sp-product-view-more a:hover {
  color: var(--color-primary);
}
.visitor-banner .sourceProducts .sp-product-view-more a .iconfont {
  margin-left: 4px;
  font-size: 12px;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .visitor-banner {
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
  }
  .visitor-banner.cj .sourceProducts {
    backdrop-filter: blur(16px);
  }
  .visitor-banner.cj .sourceProducts.notCJ {
    width: calc(100vw - 16%);
    height: 72px;
    border-radius: 50px;
    background: #ffffff;
    margin-top: -36px;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
  }
  .visitor-banner .sourceProducts {
    width: calc(100vw - 16%);
    position: static;
    transform: none;
    margin-top: -36px;
    border-radius: 24px;
    background: url("/egg/image/visitorServiceNew/source_products_bg_ipad.png") no-repeat center center;
    background-size: 100% 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
    top: calc(100% - 36px);
    padding: 16px 24px 16px 24px;
  }
  .visitor-banner .sourceProducts .sp-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    text-align: center;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab {
    margin: 0 38.5px;
    position: relative;
    color: #333;
    font-size: 20px;
    line-height: 28px;
    cursor: pointer;
    padding-bottom: 5px;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab.active {
    font-weight: bold;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab.active,
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:hover {
    color: var(--color-primary);
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab.active::after,
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:hover::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab.disabled {
    cursor: not-allowed;
    color: #999;
    font-weight: normal;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab.disabled::after {
    content: none;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(1) {
    width: 45px;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(2) {
    width: 93px;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(3) {
    width: 45px;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(4) {
    width: 95px;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(5) {
    width: 48px;
  }
  .visitor-banner .sourceProducts .sp-tabs .sp-tab:nth-of-type(6) {
    width: 72px;
  }
  .visitor-banner .sourceProducts .sp-search-box {
    margin: 0;
    padding: 4px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper {
    position: relative;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box {
    position: relative;
    cursor: pointer;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #d8d8d8;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 100%;
    background-color: #fff;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item .sp-select-item-text {
    font-size: 14px;
    padding-right: 4px;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item .select-icon {
    font-size: 12px;
    display: none;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -8px;
    width: 158px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 20px;
    animation: dropdownFadeIn 0.2s ease-out;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item {
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
    outline: none;
    text-align: center;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item:hover {
    background-color: #f5f5f5;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item.active {
    color: #f70;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown .sp-select-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover .sp-select-dropdown {
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover .sp-select-box .sp-select-item .select-icon {
    transform: rotate(180deg);
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown:hover {
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -8px;
    width: 158px;
    height: 200px;
    z-index: 999;
  }
  .visitor-banner .sourceProducts .sp-search-box input {
    font-size: 12px;
    margin-left: 12px;
    flex: 1;
  }
  .visitor-banner .sourceProducts .sp-search-box input::placeholder {
    color: #999;
  }
  .visitor-banner .sourceProducts .sp-search-box i.fangdajing {
    color: #999;
    font-size: 18px;
  }
  .visitor-banner .sourceProducts .sp-search-box i.camera {
    color: #999;
    font-size: 24px;
    cursor: pointer;
  }
  .visitor-banner .sourceProducts .sp-search-box i.camera:hover {
    color: var(--color-primary);
  }
  .visitor-banner .sourceProducts .sp-search-box .searchBtn {
    margin-left: 16px;
    font-size: 14px;
    padding: 6px 16px;
    min-width: 78px;
    height: 32px;
    border-radius: 24px;
  }
  .visitor-banner .sourceProducts .productSwiperContainer {
    position: relative;
  }
  .visitor-banner .sourceProducts .productSwiperContainer .productSwiper {
    padding: 24px 0 0;
    margin: 0;
  }
  .visitor-banner .sourceProducts .productSwiperContainer .productSwiper .swiper-wrapper {
    justify-content: space-between;
  }
  .visitor-banner .sourceProducts .productSwiperContainer .productSwiper .swiper-wrapper .swiper-slide {
    width: calc((84% - 90px) / 3);
    margin-right: 0px;
  }
  .visitor-banner .sourceProducts .sp-products {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .visitor-banner .sourceProducts .sp-products .sp-product {
    margin-left: 28px;
    position: relative;
  }
  .visitor-banner .sourceProducts .sp-products .sp-product:nth-of-type(1) {
    margin-left: 0;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap {
    padding: 0;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev:hover,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext:hover {
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev:hover .iconfont,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext:hover .iconfont {
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev .iconfont,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext .iconfont {
    font-size: 22px;
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled {
    cursor: not-allowed;
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled .iconfont {
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled:hover {
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled:hover .iconfont {
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext {
    margin-left: 12px;
  }
  .visitor-banner .sourceProducts .sp-product-view-more {
    text-align: center;
  }
  .visitor-banner .sourceProducts .sp-product-view-more a {
    color: #666;
    transition: color 0.3s;
    font-size: 16px;
    font-weight: 500;
  }
  .visitor-banner .sourceProducts .sp-product-view-more a:hover {
    color: #999;
  }
  .visitor-banner .sourceProducts .sp-product-view-more a .iconfont {
    margin-left: 4px;
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .visitor-banner {
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visitor-banner .sourceProducts {
    position: static;
    transform: none;
    margin-top: 0;
    width: calc(343 / 16 * var(--root-fs) * 1px);
    border-radius: calc(24 / 16 * var(--root-fs) * 1px);
    padding: calc(12 / 16 * var(--root-fs) * 1px);
    background: url("/egg/image/visitorServiceNew/source_products_bg_mobile.png") no-repeat center center;
    background-size: 100% 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(16px);
  }
  .visitor-banner .sourceProducts .sp-search-box {
    margin: 0;
    padding: calc(4 / 16 * var(--root-fs) * 1px);
    height: calc(40 / 16 * var(--root-fs) * 1px);
    border-radius: calc(20 / 16 * var(--root-fs) * 1px);
    width: 100%;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper {
    position: relative;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box {
    position: relative;
    cursor: pointer;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #d8d8d8;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(38 / 16 * var(--root-fs) * 1px);
    height: 100%;
    background-color: #fff;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item .sp-select-item-text {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(0 / 16 * var(--root-fs) * 1px);
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-box .sp-select-item .select-icon {
    display: none;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown {
    display: none;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover .sp-select-dropdown {
    opacity: 1;
    visibility: visible;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover .sp-select-box .sp-select-item .select-icon {
    transform: rotate(180deg);
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper .sp-select-dropdown:hover {
    opacity: 1;
    visibility: visible;
  }
  .visitor-banner .sourceProducts .sp-search-box .sp-select-wrapper:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -8px;
    width: 158px;
    height: 200px;
    z-index: 999;
  }
  .visitor-banner .sourceProducts .sp-search-box input {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    margin-left: calc(10 / 16 * var(--root-fs) * 1px);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .visitor-banner .sourceProducts .sp-search-box input::placeholder {
    color: #999;
  }
  .visitor-banner .sourceProducts .sp-search-box i.fangdajing {
    color: #999;
    font-size: 18px;
  }
  .visitor-banner .sourceProducts .sp-search-box i.camera {
    color: #999;
    font-size: calc(20 / 16 * var(--root-fs) * 1px);
    cursor: pointer;
  }
  .visitor-banner .sourceProducts .sp-search-box i.camera:hover {
    color: var(--color-primary);
  }
  .visitor-banner .sourceProducts .sp-search-box .searchBtn {
    margin-left: calc(8 / 16 * var(--root-fs) * 1px);
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    padding: calc(0 / 16 * var(--root-fs) * 1px);
    min-width: calc(32 / 16 * var(--root-fs) * 1px);
    height: calc(32 / 16 * var(--root-fs) * 1px);
    border-radius: 50%;
  }
  .visitor-banner .sourceProducts .sp-search-box .searchBtn .searchBtn-text {
    display: none;
  }
  .visitor-banner .sourceProducts .sp-search-box .searchBtn .searchBtn-icon {
    display: block;
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .visitor-banner .sourceProducts .productSwiperContainer {
    position: relative;
  }
  .visitor-banner .sourceProducts .productSwiperContainer .productSwiper {
    padding: 24px 0 0;
    margin: 0;
  }
  .visitor-banner .sourceProducts .productSwiperContainer .productSwiper .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .visitor-banner .sourceProducts .productSwiperContainer .productSwiper .swiper-loading-wraper {
    flex-wrap: wrap;
  }
  .visitor-banner .sourceProducts .productSwiperContainer .productSwiper .swiper-wrapper .swiper-slide {
    width: calc(154 / 16 * var(--root-fs) * 1px);
    margin-right: 0;
  }
  .visitor-banner .sourceProducts .sp-products {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .visitor-banner .sourceProducts .sp-products .sp-product {
    margin-left: 28px;
    position: relative;
  }
  .visitor-banner .sourceProducts .sp-products .sp-product:nth-of-type(1) {
    margin-left: 0;
  }
  .visitor-banner .sourceProducts .sp-products.mobile-2x2-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2px;
  }
  .visitor-banner .sourceProducts .sp-products.mobile-2x2-layout .sp-product {
    margin-left: 0;
    flex-shrink: 0;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap {
    padding: 0;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev:hover,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext:hover {
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev:hover .iconfont,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext:hover .iconfont {
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev .iconfont,
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext .iconfont {
    font-size: calc(22 / 16 * var(--root-fs) * 1px);
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled {
    cursor: not-allowed;
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled .iconfont {
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled:hover {
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .disabled:hover .iconfont {
    color: #B3B3B3;
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productNext {
    outline: none;
    /* 去掉默认轮廓 */
    -webkit-tap-highlight-color: transparent;
    /* 去掉移动端点击高亮 */
    margin-left: calc(12 / 16 * var(--root-fs) * 1px);
  }
  .visitor-banner .sourceProducts .sp-footer-wrap .swiper-navigation .productPrev {
    outline: none;
    /* 去掉默认轮廓 */
    -webkit-tap-highlight-color: transparent;
    /* 去掉移动端点击高亮 */
  }
  .visitor-banner .sourceProducts .sp-product-view-more {
    text-align: center;
  }
  .visitor-banner .sourceProducts .sp-product-view-more a {
    color: #666;
    transition: color 0.3s;
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    font-weight: 500;
  }
  .visitor-banner .sourceProducts .sp-product-view-more a:hover {
    color: #666;
  }
  .visitor-banner .sourceProducts .sp-product-view-more a .iconfont {
    margin-left: calc(4 / 16 * var(--root-fs) * 1px);
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
  }
}
.vst-counts-info {
  width: 100%;
  background: transparent;
  height: 538px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/egg/image/visitorServiceNew/vst-counts-info-bg.png") no-repeat center center;
  background-size: cover;
}
.vst-counts-info .vst-counts-info-box {
  justify-content: center;
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vst-counts-info .vst-counts-info-box .vst-counts-info-item {
  display: flex;
  flex-direction: column;
  width: 270px;
  height: 190px;
  border-radius: 16px;
  background: #fff;
  padding: 35px 32px 0;
  position: relative;
  overflow: hidden;
}
.vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 64px;
  height: 64px;
}
.vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-num {
  font-size: 42px;
  line-height: 61px;
  font-weight: 600;
  color: #333;
  text-align: left;
  padding-bottom: 8px;
  transition: all 0.3s ease;
  will-change: contents;
}
.vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-num.animating {
  transform: scale(1.05);
}
.vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #333;
  text-align: left;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .vst-counts-info {
    width: 100vw;
    height: 320px;
    background: url("/egg/image/visitorServiceNew/vst-counts-info-bg.png") no-repeat center center;
    background-size: 100% 100%;
  }
  .vst-counts-info .vst-counts-info-box {
    width: 100%;
    padding: 0 8%;
    gap: 16px;
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item {
    flex: 1;
    width: 100%;
    height: 116px;
    padding: 24px 16px 0;
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-num {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: #333;
    padding-bottom: 4px;
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #333;
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-icon {
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 700px) {
  .vst-counts-info {
    width: 100vw;
    height: calc(324 / 16 * var(--root-fs) * 1px);
    background: url("/egg/image/visitorServiceNew/vst-counts-info-bg.png") no-repeat center center;
    background-size: cover;
  }
  .vst-counts-info .vst-counts-info-box {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item {
    width: calc(165 / 16 * var(--root-fs) * 1px);
    height: calc(116 / 16 * var(--root-fs) * 1px);
    padding-top: calc(24 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 16 * var(--root-fs) * 1px);
    margin: calc(6 / 16 * var(--root-fs) * 1px);
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-num {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(34 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(4 / 16 * var(--root-fs) * 1px);
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-text {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .vst-counts-info .vst-counts-info-box .vst-counts-info-item .vst-counts-info-item-icon {
    width: calc(40 / 16 * var(--root-fs) * 1px);
    height: calc(40 / 16 * var(--root-fs) * 1px);
    bottom: calc(0 / 16 * var(--root-fs) * 1px);
    right: calc(0 / 16 * var(--root-fs) * 1px);
  }
}
.how-to-start-dropshipping-box {
  width: 100%;
  background-color: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.how-to-start-dropshipping-box .htsd-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #1b1b1b;
}
.how-to-start-dropshipping-box .htsd-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 285px;
  padding: 32px 32px 0;
  opacity: 1;
  background: url("/egg/image/visitorServiceNew/htsd-item-bg.png") no-repeat center center;
  background-size: 100% 100%;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item:nth-of-type(1) {
  background: url("/egg/image/visitorServiceNew/htsd-item-bg-left.png") no-repeat center center;
  background-size: 100% 100%;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item:nth-last-of-type(1) {
  background: url("/egg/image/visitorServiceNew/htsd-item-bg-right.png") no-repeat center center;
  background-size: 100% 100%;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-num {
  width: max-content;
  height: 28px;
  padding: 4px 14px;
  opacity: 1;
  border-radius: 14px;
  background: #333333;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-tit {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
  text-align: left;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-img-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-img-box .htsd-content-item-img {
  width: 208px;
  height: 208px;
  object-fit: cover;
}
.how-to-start-dropshipping-box .htsd-content .htsd-content-item-icon {
  font-size: 20px;
  color: #333;
}
.how-to-start-dropshipping-box .htsd-btn-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
}
.how-to-start-dropshipping-box .htsd-btn-box .htsd-btn {
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.how-to-start-dropshipping-box .htsd-btn-box .htsd-btn span {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
.how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover {
  border: 1px solid var(--color-primary);
}
.how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover span {
  color: var(--color-primary);
}
.how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover .htsd-btn-icon {
  color: var(--color-primary);
}
.how-to-start-dropshipping-box .htsd-btn-box .htsd-btn .htsd-btn-icon {
  font-size: 14px;
  color: #333333;
  margin-left: 4px;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .how-to-start-dropshipping-box {
    width: 100vw;
    padding: 72px 0;
  }
  .how-to-start-dropshipping-box .htsd-title {
    font-size: 24px;
    line-height: 28px;
  }
  .how-to-start-dropshipping-box .htsd-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    padding: 24px 8% 0;
    gap: 12px;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: auto;
    padding: 16px 12px 0;
    border-radius: 16px;
    opacity: 1;
    background: #f9f9f9;
    border: 1px solid #e3e3e3;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item:nth-of-type(1) {
    background: #f9f9f9;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item:nth-last-of-type(1) {
    background: #f9f9f9;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-num {
    height: 24px;
    padding: 2px 10px;
    opacity: 1;
    border-radius: 12px;
    background: #333333;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-tit {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
    text-align: left;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-img-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-img-box .htsd-content-item-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item-icon {
    display: none;
  }
  .how-to-start-dropshipping-box .htsd-btn-box {
    margin-top: 20px;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn {
    height: 40px;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn span {
    font-size: 14px;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn .htsd-btn-icon {
    font-size: 10px;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover {
    border: 1px solid #333;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover span {
    color: #333;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover .htsd-btn-icon {
    color: #333;
  }
}
@media (max-width: 700px) {
  .how-to-start-dropshipping-box {
    width: 100vw;
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
  }
  .how-to-start-dropshipping-box .htsd-title {
    width: calc(320 / 16 * var(--root-fs) * 1px);
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
    text-align: center;
  }
  .how-to-start-dropshipping-box .htsd-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    padding-top: calc(24 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 16 * var(--root-fs) * 1px);
    gap: 0;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    border: 1px solid #e3e3e3;
    width: calc(165 / 16 * var(--root-fs) * 1px);
    min-height: calc(196 / 16 * var(--root-fs) * 1px);
    padding-top: calc(16 / 16 * var(--root-fs) * 1px);
    padding-left: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(12 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 16 * var(--root-fs) * 1px);
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    margin: calc(6 / 16 * var(--root-fs) * 1px);
    background: #f9f9f9;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item:nth-of-type(1) {
    background: #f9f9f9;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item:nth-last-of-type(1) {
    background: #f9f9f9;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-num {
    height: calc(24 / 16 * var(--root-fs) * 1px);
    padding-top: calc(2 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(2 / 16 * var(--root-fs) * 1px);
    padding-left: calc(10 / 16 * var(--root-fs) * 1px);
    padding-right: calc(10 / 16 * var(--root-fs) * 1px);
    border-radius: calc(12 / 16 * var(--root-fs) * 1px);
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    font-weight: calc(600 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 16 * var(--root-fs) * 1px);
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-tit {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    text-align: calc(left / 16 * var(--root-fs) * 1px);
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item .htsd-content-item-img-box .htsd-content-item-img {
    width: calc(120 / 16 * var(--root-fs) * 1px);
    height: calc(120 / 16 * var(--root-fs) * 1px);
    object-fit: cover;
  }
  .how-to-start-dropshipping-box .htsd-content .htsd-content-item-icon {
    display: none;
  }
  .how-to-start-dropshipping-box .htsd-btn-box {
    margin-top: calc(20 / 16 * var(--root-fs) * 1px);
    width: max-content;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn {
    max-width: calc(343 / 16 * var(--root-fs) * 1px);
    padding-top: calc(8 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(8 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    min-height: calc(40 / 16 * var(--root-fs) * 1px);
    border-radius: calc(8 / 16 * var(--root-fs) * 1px);
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn span {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn .htsd-btn-icon {
    font-size: calc(10 / 16 * var(--root-fs) * 1px);
    margin-left: calc(2 / 16 * var(--root-fs) * 1px);
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover {
    border: 1px solid #333;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover span {
    color: #333;
  }
  .how-to-start-dropshipping-box .htsd-btn-box .htsd-btn:hover .htsd-btn-icon {
    color: #333;
  }
}
.get-product-source-box {
  width: 100%;
  background: linear-gradient(177.24deg, #fffaeb 0%, #fff0d9 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .get-product-source-box {
    width: 100vw;
    padding: 72px 0;
  }
}
@media (max-width: 700px) {
  .get-product-source-box {
    width: 100vw;
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
  }
}
.vst-banner-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.vst-banner-wrap .vst-banner-content {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 150px;
}
.vst-banner-wrap .vst-banner-content .vst-tit {
  padding-top: 90px;
  width: 760px;
}
.vst-banner-wrap .vst-banner-content .vst-tit .vst-tit-span {
  font-size: 42px;
  font-weight: 700;
  line-height: 58px;
  color: #fff;
}
.vst-banner-wrap .vst-banner-content .vst-tit .active {
  font-size: 42px;
  font-weight: 700;
  line-height: 58px;
  color: #ff7700;
  position: relative;
}
.vst-banner-wrap .vst-banner-content .vst-tit .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background: url("/egg/image/visitorServiceNew/after-icon-bg.png") no-repeat center center;
  background-size: 100% 100%;
  right: 0;
  top: 54px;
}
.vst-banner-wrap .vst-banner-content .vst-con {
  width: 750px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  padding-top: 4px;
  padding-bottom: 36px;
  margin-bottom: 0;
}
.vst-banner-wrap .vst-banner-content .vst-btn-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
}
.vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn {
  padding: 12px 24px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}
.vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-primary {
  background: #fff;
  color: #f70;
  margin-right: 20px;
}
.vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-primary:hover {
  background: #ff7700;
  color: #fff;
}
.vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-secondary:hover {
  background: transparent;
  color: #ff7700;
  border: 1px solid #ff7700;
}
.vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-secondary:only-child,
.vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-secondary:first-child:not(:has(+ .vst-btn-primary)) {
  margin-left: 0;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .vst-banner-wrap {
    display: flex;
    align-items: center;
    width: 100vw;
    padding: 0 8%;
  }
  .vst-banner-wrap .vst-banner-content {
    width: 100%;
    padding-bottom: 80px;
  }
  .vst-banner-wrap .vst-banner-content .vst-tit {
    padding-top: 40px;
    width: 343px;
    line-height: 36px;
  }
  .vst-banner-wrap .vst-banner-content .vst-tit .vst-tit-span {
    font-size: 28px;
    line-height: 36px;
  }
  .vst-banner-wrap .vst-banner-content .vst-tit .active::after {
    height: 10px;
    top: 36px;
  }
  .vst-banner-wrap .vst-banner-content .vst-con {
    width: 343px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 0 24px;
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box {
    width: 343px;
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn {
    padding: 8px 16px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-primary:hover {
    background: #fff;
    color: #f70;
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-secondary:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
}
@media (max-width: 700px) {
  .vst-banner-wrap {
    display: flex;
    align-items: center;
    width: 100vw;
  }
  .vst-banner-wrap .vst-banner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: calc(60 / 16 * var(--root-fs) * 1px);
  }
  .vst-banner-wrap .vst-banner-content .vst-tit {
    padding-top: calc(32 / 16 * var(--root-fs) * 1px);
    width: calc(343 / 16 * var(--root-fs) * 1px);
    line-height: calc(36 / 16 * var(--root-fs) * 1px);
  }
  .vst-banner-wrap .vst-banner-content .vst-tit .vst-tit-span {
    font-size: calc(28 / 16 * var(--root-fs) * 1px);
    line-height: calc(36 / 16 * var(--root-fs) * 1px);
  }
  .vst-banner-wrap .vst-banner-content .vst-tit .active {
    display: inline-block;
  }
  .vst-banner-wrap .vst-banner-content .vst-tit .active::after {
    height: calc(10 / 16 * var(--root-fs) * 1px);
    top: calc(32 / 16 * var(--root-fs) * 1px);
  }
  .vst-banner-wrap .vst-banner-content .vst-con {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    padding-top: calc(8 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    height: calc(40 / 16 * var(--root-fs) * 1px);
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn {
    padding-top: calc(8 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(8 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    height: calc(40 / 16 * var(--root-fs) * 1px);
    line-height: calc(40 / 16 * var(--root-fs) * 1px);
    border-radius: calc(8 / 16 * var(--root-fs) * 1px);
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-primary:hover {
    background: #fff;
    color: #f70;
  }
  .vst-banner-wrap .vst-banner-content .vst-btn-box .vst-btn-secondary:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
}
.vst-already-have-store {
  width: 100%;
}
.vst-already-have-store .vst-ahstore-box {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info {
  max-width: 520px;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subtitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  padding-bottom: 24px;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 28px;
  color: #fff;
  text-align: left;
  padding-bottom: 10px;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item {
  padding-bottom: 8px;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item .iconfont {
  font-size: 16px;
  color: var(--color-primary);
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item .vst-ahstore-subInfo-subtitle-text {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 24px;
  color: #fff;
  text-align: left;
  padding-left: 6px;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn {
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn .vst-ahstore-btn-text {
  color: #fff;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn:hover {
  border: 1px solid var(--color-primary);
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn:hover .vst-ahstore-btn-text {
  color: var(--color-primary);
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn {
  background: #fff;
  margin-right: 20px;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn .vst-ahstore-btn-text {
  color: var(--color-primary);
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn:hover {
  background: var(--color-primary);
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn:hover .vst-ahstore-btn-text {
  color: #fff;
}
.vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn .vst-ahstore-btn-text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: left;
}
.vst-already-have-store .vst-ahstore-box .vst-platform-swiper-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper {
  width: 616px;
  min-height: 340px;
  height: 340px;
  position: relative;
  margin: 0 18px;
  transition: width 0.3s ease, height 0.3s ease;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  height: 100%;
  transition: gap 0.3s ease;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid .platform-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: -1;
  grid-row: -1;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid .platform-empty .empty-text {
  font-size: 16px;
  color: #999;
  text-align: center;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li {
  width: 184px;
  height: 90px;
  position: relative;
  opacity: 1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li .erp-tag {
  width: 32px;
  position: absolute;
  top: 0;
  right: 0;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li img.platformImage,
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li img.erp {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  object-fit: contain;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li:hover img.platformImage {
  transform: scale(1.2);
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform {
  background: #e5e5e5;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform:hover {
  box-shadow: none;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform .skeleton-element {
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform .skeleton-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: translateX(-100%);
  animation: skeleton-loading 1.5s infinite;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper-pagination .pagination {
  width: 5px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
  margin: 4px 0;
  cursor: pointer;
  border-radius: 100px;
}
.vst-already-have-store .vst-ahstore-box .platformSwiper-pagination .pagination.active {
  background: var(--color-primary);
}
.vst-already-have-store .register-store-box {
  margin-top: 30px;
  color: #666;
  display: flex;
  font-size: 18px;
  align-items: center;
}
.vst-already-have-store .register-store-link {
  color: var(--color-primary);
  cursor: pointer;
  display: inline-block;
  display: flex;
  align-items: center;
  margin-left: 5px;
}
.vst-already-have-store .register-store-link:hover {
  color: var(--color-primary-hover);
}
.vst-already-have-store .register-store-link .iconfont {
  margin-left: 2px;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .vst-already-have-store {
    width: 100vw;
  }
  .vst-already-have-store.cj .vst-ahstore-box {
    padding-top: 72px;
  }
  .vst-already-have-store .vst-ahstore-box {
    width: 100%;
    padding: 0 8%;
    padding-bottom: 72px;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info {
    max-width: 48%;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-title {
    font-size: 24px;
    line-height: 28px;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subtitle {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 16px;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-title {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 8px;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item {
    padding-bottom: 8px;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item .iconfont {
    font-size: 14px;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item .vst-ahstore-subInfo-subtitle-text {
    font-size: 14px;
    line-height: 20px;
    padding-left: 0;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap {
    margin-top: 0;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn {
    height: 40px;
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 12px;
    min-width: 250px;
    max-width: 65%;
    text-align: center;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn {
    margin-right: 0;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn:hover {
    background: #fff;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn:hover .vst-ahstore-btn-text {
    color: var(--color-primary);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn:hover {
    border: 1px solid #fff;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn:hover .vst-ahstore-btn-text {
    color: #fff;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn .vst-ahstore-btn-text {
    font-size: 14px;
  }
  .vst-already-have-store .vst-ahstore-box .vst-platform-swiper-wrap {
    flex-direction: column;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper {
    min-width: 42.8vw;
    width: 42.8vw;
    min-height: auto;
    height: auto;
    position: relative;
    margin: 0;
    transition: width 0.3s ease, height 0.3s ease;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1vw;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    height: 100%;
    transition: gap 0.3s ease;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid .platform-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: -1;
    grid-row: -1;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid .platform-empty .empty-text {
    font-size: 16px;
    color: #999;
    text-align: center;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li {
    width: 13vw;
    height: 8vw;
    position: relative;
    opacity: 1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li .erp-tag {
    width: 32px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li img.platformImage,
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li img.erp {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    object-fit: contain;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li:hover img.platformImage {
    transform: scale(1.2);
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform {
    background: #e5e5e5;
    box-shadow: none;
    position: relative;
    overflow: hidden;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform:hover {
    box-shadow: none;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform .skeleton-element {
    width: 100%;
    height: 100%;
    background: #e5e5e5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform .skeleton-element::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateX(-100%);
    animation: skeleton-loading 1.5s infinite;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper-pagination {
    flex-direction: row;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper-pagination .pagination {
    width: 30px;
    height: 5px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 4px;
    cursor: pointer;
    border-radius: 100px;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper-pagination .pagination.active {
    background: var(--color-primary);
  }
}
@media (max-width: 700px) {
  .vst-already-have-store {
    width: 100vw;
  }
  .vst-already-have-store .vst-ahstore-box {
    flex-direction: column;
    justify-content: center;
    width: calc(343 / 16 * var(--root-fs) * 1px);
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
    padding-left: calc(0 / 16 * var(--root-fs) * 1px);
    padding-right: calc(0 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-title {
    text-align: center;
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subtitle {
    text-align: center;
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-title {
    font-size: calc(18 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(8 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item {
    padding-bottom: calc(8 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item .iconfont {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-subInfo .vst-ahstore-subInfo-subtitle .vst-ahstore-subInfo-subtitle-item .vst-ahstore-subInfo-subtitle-text {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    padding-left: calc(0 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap {
    margin-top: 0;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn {
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(40 / 16 * var(--root-fs) * 1px);
    padding-top: calc(10 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(10 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    border-radius: calc(8 / 16 * var(--root-fs) * 1px);
    margin-top: calc(12 / 16 * var(--root-fs) * 1px);
    min-width: calc(250 / 16 * var(--root-fs) * 1px);
    max-width: calc(343 / 16 * var(--root-fs) * 1px);
    text-align: center;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn {
    margin-right: 0;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn:hover {
    background: #fff;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.authorize-btn:hover .vst-ahstore-btn-text {
    color: var(--color-primary);
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn:hover {
    border: 1px solid #fff;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn.no-store-btn:hover .vst-ahstore-btn-text {
    color: #fff;
  }
  .vst-already-have-store .vst-ahstore-box .vst-ahstore-info .vst-ahstore-btn-wrap .vst-ahstore-btn .vst-ahstore-btn-text {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .vst-platform-swiper-wrap {
    padding-top: calc(12 / 16 * var(--root-fs) * 1px);
    flex-direction: column;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper {
    min-width: calc(343 / 16 * var(--root-fs) * 1px);
    width: calc(343 / 16 * var(--root-fs) * 1px);
    min-height: auto;
    height: auto;
    position: relative;
    margin: 0;
    transition: width 0.3s ease, height 0.3s ease;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: calc(12 / 16 * var(--root-fs) * 1px);
    width: 100%;
    margin: 0 auto;
    padding: calc(10 / 16 * var(--root-fs) * 1px);
    height: 100%;
    transition: gap 0.3s ease;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid .platform-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: -1;
    grid-row: -1;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-grid .platform-empty .empty-text {
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    color: #999;
    text-align: center;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li {
    width: calc(102 / 16 * var(--root-fs) * 1px);
    height: calc(50 / 16 * var(--root-fs) * 1px);
    border-radius: calc(8 / 16 * var(--root-fs) * 1px);
    transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li .erp-tag {
    width: calc(32 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper .swiper-slide .platform-li.skeleton-platform .skeleton-element {
    width: 100%;
    border-radius: calc(8 / 16 * var(--root-fs) * 1px);
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper-pagination {
    flex-direction: row;
  }
  .vst-already-have-store .vst-ahstore-box .platformSwiper-pagination .pagination {
    width: calc(16 / 16 * var(--root-fs) * 1px);
    height: calc(4 / 16 * var(--root-fs) * 1px);
    margin-left: calc(3 / 16 * var(--root-fs) * 1px);
    margin-right: calc(3 / 16 * var(--root-fs) * 1px);
    border-radius: calc(100 / 16 * var(--root-fs) * 1px);
  }
}
.common-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10054;
}
.common-modal .cmmd-box {
  width: 758px;
  height: auto;
  background-color: #fff;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}
.common-modal .cmmd-box .cmmd-closeIcon {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  right: 24px;
  top: 15px;
  cursor: pointer;
}
.common-modal .cmmd-box .cmmd-closeIcon:hover {
  color: #333;
}
.common-modal .cmmd-box .cmmd-tit {
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  height: 50px;
  background: #f9f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-modal .cmmd-box-padding {
  padding: 0 20px 32px;
}
.common-modal .cmmd-box-connect-store {
  border-radius: 16px;
}
.common-modal .cmmd-box-connect-store .cmmd-tit {
  border-radius: 16px 16px 0 0;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .common-modal .cmmd-box-connect-store {
    width: calc(100vw - 16%);
    max-width: 740px;
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box .modal-platforms-ul .modal-platforms-li {
    width: calc((100% - 30px) / 3);
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box .modal-platforms-ul .modal-platforms-li:nth-child(4n + 1) {
    margin-right: 10px !important;
  }
  .common-modal .cmmd-box-padding {
    width: calc(100vw - 16%);
    max-width: 740px;
  }
}
@media (max-width: 700px) {
  .common-modal .cmmd-box-connect-store {
    width: calc(343 / 16 * var(--root-fs) * 1px);
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box {
    max-height: 70vh;
    overflow-y: auto;
    padding: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box .modal-platforms-tit {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(16 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(12 / 16 * var(--root-fs) * 1px);
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box .modal-platforms-ul .modal-platforms-li {
    flex-direction: column;
    justify-content: flex-start;
    margin-right: 0;
    text-align: center;
    width: calc(102 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box .modal-platforms-ul .modal-platforms-li .logo {
    width: calc(40 / 16 * var(--root-fs) * 1px);
    height: calc(40 / 16 * var(--root-fs) * 1px);
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box .modal-platforms-ul .modal-platforms-li .showName {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(16 / 16 * var(--root-fs) * 1px);
    padding-left: calc(0 / 16 * var(--root-fs) * 1px);
    padding-top: calc(4 / 16 * var(--root-fs) * 1px);
    margin-left: 0;
    text-align: center;
  }
  .common-modal .cmmd-box-connect-store .modal-platforms-box .modal-platforms-ul .modal-platforms-li:nth-child(4n + 1) {
    margin-right: 0 !important;
  }
  .common-modal .visitor-register-store-box {
    width: calc(343 / 16 * var(--root-fs) * 1px) !important;
  }
  .common-modal .visitor-register-store-box .modal-platforms-ul {
    justify-content: space-around;
  }
  .common-modal .visitor-register-store-box .modal-platforms-ul .modal-platforms-li {
    flex-direction: column;
    justify-content: flex-start;
    margin-right: 0;
    text-align: center;
    width: calc(102 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .common-modal .visitor-register-store-box .modal-platforms-ul .modal-platforms-li .logo {
    width: calc(40 / 16 * var(--root-fs) * 1px);
    height: calc(40 / 16 * var(--root-fs) * 1px);
  }
  .common-modal .visitor-register-store-box .modal-platforms-ul .modal-platforms-li .showName {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(16 / 16 * var(--root-fs) * 1px);
    padding-left: calc(0 / 16 * var(--root-fs) * 1px);
    padding-top: calc(4 / 16 * var(--root-fs) * 1px);
    margin-left: 0;
    text-align: center;
  }
  .common-modal .visitor-register-store-box .modal-platforms-ul .modal-platforms-li:nth-child(4n + 1) {
    margin-right: 0 !important;
  }
}
.common-modal .register-store-box {
  width: 420px;
}
.common-modal .register-store-box .modal-platforms-ul .modal-platforms-li {
  width: auto;
  margin: 0 40px 20px;
}
.common-modal .visitor-register-store-box {
  border-radius: 12px;
}
.common-modal .visitor-register-store-box .cmmd-tit {
  border-radius: 12px 12px 0 0;
}
.common-modal .visitor-register-store-box .modal-platforms-ul {
  padding-top: 30px;
  padding-bottom: 20px;
}
.common-modal .visitor-register-store-box .modal-platforms-ul .modal-platforms-li .logo {
  width: 40px;
}
.extension-modal {
  color: #333;
  text-align: center;
  font-size: 18px;
  margin-top: 60px;
}
.extension-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.extension-btns .exten-btn {
  min-width: 90px;
  margin: 0 15px;
  padding: 0 10px;
  line-height: 38px;
  height: 38px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.extension-btns .exten-btn.default {
  color: #666666;
  border: 1px solid #e4e4e4;
  background: #f9f9f9;
}
.extension-btns .exten-btn.default:hover {
  background-color: #f5f5f5;
}
.extension-btns .exten-btn.primary {
  background: var(--color-theme-1);
  color: #ffffff;
}
.extension-btns .exten-btn.primary:hover {
  background-color: var(--color-primary-hover);
}
.modal-platforms-box {
  padding: 32px 24px 22px;
}
.modal-platforms-ul {
  display: flex;
  flex-wrap: wrap;
}
.modal-platforms-ul.pb {
  padding-bottom: 102px;
}
.modal-platforms-ul .modal-platforms-li {
  width: 170px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0 10px 20px 0;
  position: relative;
}
.modal-platforms-ul .modal-platforms-li:nth-child(4n + 1) {
  margin-right: 0;
}
.modal-platforms-ul .modal-platforms-li:hover .showName span {
  color: var(--color-primary);
}
.modal-platforms-ul .modal-platforms-li:hover .showName span.secondName {
  color: var(--color-primary);
}
.modal-platforms-ul .modal-platforms-li .logo {
  width: 34px;
  border: 1px solid #eeeeee;
  border-radius: 2px;
}
.modal-platforms-ul .modal-platforms-li .showName {
  margin-left: 9px;
  transition: color 0.3s;
  display: flex;
  flex-flow: column;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 17px;
  text-align: left;
}
.modal-platforms-ul .modal-platforms-li .showName span {
  display: inline-block;
}
.modal-platforms-ul .modal-platforms-li .showName span.secondName {
  font-size: 12px;
  color: var(--color-font2);
}
.modal-platforms-ul .modal-platforms-li .miaoshouPlatforms {
  width: 710px;
  height: 97px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 10px;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 10;
}
.modal-platforms-ul .modal-platforms-li .miaoshouPlatforms::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #eeeeee transparent;
  border-width: 12px;
  position: absolute;
  left: 64px;
  top: -24px;
  z-index: 20;
}
.modal-platforms-ul .modal-platforms-li .miaoshouPlatforms::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  border-width: 11px;
  position: absolute;
  left: 65px;
  top: -21px;
  z-index: 30;
}
.modal-platforms-ul .modal-platforms-li .miaoshouPlatforms .text {
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 17px;
  text-align: left;
  margin: 0 0 2px 3px;
}
.modal-platforms-ul .modal-platforms-li .miaoshouPlatforms .miaoshouLogos {
  width: 648px;
  height: 52px;
}
@media (max-width: 700px) {
  .modal-platforms-ul {
    justify-content: space-around;
  }
}
.modal-platforms-tit {
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  margin-bottom: 20px;
}
.academyWrap {
  text-align: center;
}
.personalizedServices {
  width: 100%;
  background-color: #ffffff;
  background: url("/egg/image/visitorServiceNew/personalized-services-bg.png") no-repeat center center;
  background-size: 100% 100%;
}
.personalizedServices .ps-box {
  width: 1440px;
  padding: 100px 0;
  margin: 0 auto;
}
.personalizedServices .ps-box .ps-tit {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  padding-bottom: 24px;
}
.personalizedServices .ps-box .ps-ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.personalizedServices .ps-box .ps-ul .ps-li {
  width: 376px;
  height: 318px;
  background: #ffffff;
  padding: 42px 32px;
  margin: 36px 0 0 36px;
  border-radius: 16px;
}
.personalizedServices .ps-box .ps-ul .ps-li:hover {
  background-color: var(--color-primary-hover);
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-li-tit,
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-li-tips {
  color: #fff;
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box {
  background-color: var(--color-primary-hover);
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.qs {
  background-image: url("/egg/image/visitorServiceNew/ps-qs-hover.png");
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.cp {
  background-image: url("/egg/image/visitorServiceNew/ps-cp-hover.png");
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.odm {
  background-image: url("/egg/image/visitorServiceNew/ps-odm-hover.png");
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.pod {
  background-image: url("/egg/image/visitorServiceNew/ps-pod-hover.png");
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.bp {
  background-image: url("/egg/image/visitorServiceNew/ps-bp-hover.png");
}
.personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.threef {
  background-image: url("/egg/image/visitorServiceNew/ps-threef-hover.png");
}
.personalizedServices .ps-box .ps-ul .ps-li a.anchor-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.personalizedServices .ps-box .ps-ul .ps-li:nth-of-type(3n + 1) {
  margin-left: 0;
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img-box {
  width: 80px;
  height: 80px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img {
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img.qs {
  background-image: url("/egg/image/visitorServiceNew/ps-qs.png");
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img.cp {
  background-image: url("/egg/image/visitorServiceNew/ps-cp.png");
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img.odm {
  background-image: url("/egg/image/visitorServiceNew/ps-odm.png");
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img.pod {
  background-image: url("/egg/image/visitorServiceNew/ps-pod.png");
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img.bp {
  background-image: url("/egg/image/visitorServiceNew/ps-bp.png");
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-img.threef {
  background-image: url("/egg/image/visitorServiceNew/ps-threef.png");
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-li-tit {
  padding-top: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #333;
  text-align: left;
}
.personalizedServices .ps-box .ps-ul .ps-li .ps-li-tips {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #666666;
  text-align: left;
  margin-bottom: 0;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .personalizedServices {
    width: 100vw;
    background-size: cover;
  }
  .personalizedServices .ps-box {
    width: 100%;
    padding: 48px 8%;
    margin: 0 auto;
  }
  .personalizedServices .ps-box .ps-tit {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    padding: 0 24px 32px;
  }
  .personalizedServices .ps-box .ps-ul {
    gap: 12px;
  }
  .personalizedServices .ps-box .ps-ul .ps-li {
    width: auto;
    height: auto;
    background: #ffffff;
    padding: 24px 20px;
    margin: 0;
    border-radius: 16px;
    flex: 0 0 calc((100% - 2 * 12px) / 3);
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover {
    background: #fff;
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box {
    background-color: #f9f9f9;
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.qs {
    background-image: url("/egg/image/visitorServiceNew/ps-qs.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.cp {
    background-image: url("/egg/image/visitorServiceNew/ps-cp.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.odm {
    background-image: url("/egg/image/visitorServiceNew/ps-odm.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.pod {
    background-image: url("/egg/image/visitorServiceNew/ps-pod.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.bp {
    background-image: url("/egg/image/visitorServiceNew/ps-bp.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.threef {
    background-image: url("/egg/image/visitorServiceNew/ps-threef.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-li-tit {
    color: #333;
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-li-tips {
    color: #666;
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-img-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-img {
    width: 48px;
    height: 48px;
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-li-tit {
    padding-top: 8px;
    font-size: 16px;
    line-height: 22px;
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-li-tips {
    padding-top: 6px;
    font-size: 12px;
    line-height: 17px;
  }
}
@media (max-width: 700px) {
  .personalizedServices {
    width: 100vw;
    background-size: cover;
  }
  .personalizedServices .ps-box {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    padding-top: calc(40 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(28 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-tit {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-ul {
    display: flex;
    flex-wrap: wrap;
  }
  .personalizedServices .ps-box .ps-ul .ps-li {
    width: 100%;
    align-items: center;
    margin: 0;
    height: max-content;
    padding-top: calc(12 / 16 * var(--root-fs) * 1px);
    padding-left: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(12 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(12 / 16 * var(--root-fs) * 1px);
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(12 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover {
    background: #fff;
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box {
    background-color: #f9f9f9;
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.qs {
    background-image: url("/egg/image/visitorServiceNew/ps-qs.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.cp {
    background-image: url("/egg/image/visitorServiceNew/ps-cp.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.odm {
    background-image: url("/egg/image/visitorServiceNew/ps-odm.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.pod {
    background-image: url("/egg/image/visitorServiceNew/ps-pod.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.bp {
    background-image: url("/egg/image/visitorServiceNew/ps-bp.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-img-box .ps-img.threef {
    background-image: url("/egg/image/visitorServiceNew/ps-threef.png");
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-li-tit {
    color: #333;
  }
  .personalizedServices .ps-box .ps-ul .ps-li:hover .ps-li-tips {
    color: #666;
  }
  .personalizedServices .ps-box .ps-ul .ps-li a.anchor-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    min-height: calc(90 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-img-box {
    width: calc(56 / 16 * var(--root-fs) * 1px);
    height: calc(56 / 16 * var(--root-fs) * 1px);
    margin-right: calc(10 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-img {
    width: calc(48 / 16 * var(--root-fs) * 1px);
    height: calc(48 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-li-content {
    width: calc(250 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-li-tit {
    padding-top: 0;
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    line-height: calc(22 / 16 * var(--root-fs) * 1px);
  }
  .personalizedServices .ps-box .ps-ul .ps-li .ps-li-tips {
    padding-top: calc(4 / 16 * var(--root-fs) * 1px);
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(17 / 16 * var(--root-fs) * 1px);
  }
}
.logistics-solutions {
  width: 100%;
  background-color: #fff;
}
.logistics-solutions .logistics-solutions-box {
  width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-tit {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #1b1b1b;
  text-align: center;
  padding-bottom: 60px;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  gap: 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item {
  flex: 1 1 0;
  min-width: 182px;
  max-width: 240px;
  height: 480px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-size: cover;
  will-change: max-width, background-position;
  margin: 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(1) {
  background-position: 0% center;
  border-radius: 16px 0 0 16px;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(2) {
  background-position: 0% center;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(3) {
  background-position: 0% center;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(4) {
  background-position: 0% center;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(5) {
  background-position: 0% center;
  border-radius: 0 16px 16px 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item .logistics-solutions-item-tit {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 28px;
  color: #fff;
  text-align: left;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item .logistics-solutions-item-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  text-align: left;
  margin-bottom: 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .bfn {
  background: url("/egg/image/visitorServiceNew/logistics-solutions-bfn.png") no-repeat center center;
  background-size: cover;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .ecsl {
  background: url("/egg/image/visitorServiceNew/logistics-solutions-ecsl.png") no-repeat center center;
  background-size: cover;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .cbp {
  background: url("/egg/image/visitorServiceNew/logistics-solutions-cbp.png") no-repeat center center;
  background-size: cover;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .secpi {
  background: url("/egg/image/visitorServiceNew/logistics-solutions-secpi.png") no-repeat center center;
  background-size: cover;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .isqc {
  background: url("/egg/image/visitorServiceNew/logistics-solutions-isqc.png") no-repeat center center;
  background-size: cover;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active {
  flex: 2 1 0;
  max-width: 465px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center center;
  transform: translateX(0);
  opacity: 1;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active .logistics-solutions-item-tit {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  text-align: left;
  padding-bottom: 6px;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active .logistics-solutions-item-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  text-align: left;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 580px;
  height: 400px;
  position: relative;
  background: url("/egg/image/visitorServiceNew/logistics-solutions-left-bg.png") no-repeat center center;
  background-size: 100% 100%;
  padding: 56px 14px;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info {
  width: 326px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, #ffffff 100%);
  border: 1.67px solid #ffffff;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(17px);
  padding: 16px;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info .logistics-solutions-footer-left-info-icon {
  width: 34px;
  height: 34px;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info .logistics-solutions-footer-left-info-ttile {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
  text-align: left;
  margin-left: 14px;
  margin-bottom: 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn {
  position: absolute;
  right: 20px;
  bottom: 0;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content:hover {
  background: var(--color-primary-hover);
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content span {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content .left-btn-icon {
  font-size: 14px;
  margin-left: 4px;
  color: #fff;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right {
  width: 580px;
  height: 400px;
  background: url("/egg/image/visitorServiceNew/logistics-solutions-footer-right-bg.png") no-repeat center center;
  background-size: 100% 100%;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget {
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 62px;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #ffffff;
  text-align: left;
  vertical-align: top;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 36px;
  color: var(--color-primary);
  position: relative;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight .highlight-bg {
  position: absolute;
  bottom: -4px;
  left: -10px;
  width: 160px;
  height: 16px;
  background: url("/egg/image/visitorServiceNew/lsfr-highlight-bg.png") no-repeat center center;
  background-size: 100% 100%;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-input {
  width: 100%;
  height: 174px;
  border-radius: 8px;
  border: none;
  padding: 12px;
  font-size: 15px;
  margin-top: 28px;
  margin-bottom: 18px;
  color: #333;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-input::placeholder {
  color: #666;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn:hover {
  background: var(--color-primary-hover);
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn .tracking-btn-text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn .tracking-btn-icon {
  font-size: 14px;
  margin-left: 4px;
  color: #fff;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .logistics-solutions {
    width: 100vw;
    background-color: #fff;
  }
  .logistics-solutions .logistics-solutions-box {
    width: 100%;
    margin: 0 auto;
    padding: 72px 8%;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-tit {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 32px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content {
    width: 100%;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item {
    padding: 16px 12px;
    min-width: 16%;
    max-width: 36%;
    min-height: 300px;
    max-height: 340px;
    height: 32vw;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item .logistics-solutions-item-tit {
    font-size: 14px;
    line-height: 20px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item .logistics-solutions-item-content {
    font-size: 13px;
    line-height: 18px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active .logistics-solutions-item-tit {
    font-size: 18px;
    line-height: 25px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active .logistics-solutions-item-content {
    font-size: 13px;
    line-height: 18px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left {
    flex: 1;
    height: 33vw;
    padding: 12px;
    width: 44vw;
    background: url("/egg/image/visitorServiceNew/logistics-solutions-left-bg-ipad-large.png") no-repeat center center;
    background-size: 100% 100%;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info {
    width: 220px;
    border-radius: 12px;
    padding: 8px 12px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info .logistics-solutions-footer-left-info-icon {
    width: 20px;
    height: 20px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info .logistics-solutions-footer-left-info-ttile {
    font-size: 12px;
    line-height: 18px;
    margin-top: 4px;
    margin-left: 0;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn {
    right: 0;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content {
    border-radius: 8px;
    padding: 10px 12px;
    height: 40px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content:hover {
    background: var(--color-primary);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content span {
    font-size: 14px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content .left-btn-icon {
    font-size: 12px;
    margin-left: 2px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right {
    flex: 1;
    height: 33vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget {
    padding: 24px;
    width: 100%;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight {
    position: relative;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight .highlight-bg {
    position: absolute;
    bottom: -2px;
    left: -5px;
    width: 120%;
    height: 10px;
    background: url("/egg/image/visitorServiceNew/lsfr-highlight-bg.png") no-repeat center center;
    background-size: 100% 100%;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-input {
    width: 100%;
    height: 103px;
    border: none;
    padding: 12px;
    font-size: 12px;
    margin-top: 14px;
    margin-bottom: 12px;
    color: #333;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-input::placeholder {
    color: #666;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn {
    width: 100%;
    border: none;
    font-size: 14px;
    padding: 12px 0;
    height: 40px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn:hover {
    background: var(--color-primary);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn .tracking-btn-text {
    font-size: 14px;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn .tracking-btn-icon {
    font-size: 12px;
    margin-left: 2px;
  }
}
@media (min-width: 700px) and (max-width: 1200px) and (min-width: 800px) and (max-width: 950px) {
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left {
    background: url("/egg/image/visitorServiceNew/logistics-solutions-left-bg-mobile.png") no-repeat center center;
    background-size: 100% 100%;
  }
}
@media (min-width: 700px) and (max-width: 1200px) and (min-width: 700px) and (max-width: 800px) {
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left {
    background: url("/egg/image/visitorServiceNew/logistics-solutions-left-bg-ipad.png") no-repeat center center;
    background-size: 100% 100%;
  }
}
@media (min-width: 700px) and (max-width: 1200px) and (min-width: 700px) and (max-width: 900px) {
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (min-width: 700px) and (max-width: 1200px) and (min-width: 900px) and (max-width: 1200px) {
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (min-width: 700px) and (max-width: 1200px) and (min-width: 700px) and (max-width: 900px) {
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (min-width: 700px) and (max-width: 1200px) and (min-width: 900px) and (max-width: 1200px) {
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 700px) {
  .logistics-solutions {
    width: 100vw;
    background-color: #fff;
  }
  .logistics-solutions .logistics-solutions-box {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-tit {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content {
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    min-height: calc(520 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item {
    flex: 1 1 0;
    width: 100%;
    max-width: none;
    height: auto;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: max-height, background-position;
    display: flex;
    justify-content: center;
    position: relative;
    padding: calc(16 / 16 * var(--root-fs) * 1px);
    max-height: calc(76 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(1) {
    border-top-left-radius: calc(16 / 16 * var(--root-fs) * 1px);
    border-top-right-radius: calc(16 / 16 * var(--root-fs) * 1px);
    border-bottom-left-radius: calc(0 / 16 * var(--root-fs) * 1px);
    border-bottom-right-radius: calc(0 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(30 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(2) {
    border-top-left-radius: calc(16 / 16 * var(--root-fs) * 1px);
    border-top-right-radius: calc(16 / 16 * var(--root-fs) * 1px);
    margin-top: calc(-16 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(30 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(3) {
    border-top-left-radius: calc(16 / 16 * var(--root-fs) * 1px);
    border-top-right-radius: calc(16 / 16 * var(--root-fs) * 1px);
    margin-top: calc(-16 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(30 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(4) {
    border-top-left-radius: calc(16 / 16 * var(--root-fs) * 1px);
    border-top-right-radius: calc(16 / 16 * var(--root-fs) * 1px);
    margin-top: calc(-16 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(30 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item:nth-child(5) {
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    margin-top: calc(-16 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item .logistics-solutions-item-tit {
    z-index: 1;
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item .logistics-solutions-item-content {
    z-index: 1;
    font-size: calc(13 / 16 * var(--root-fs) * 1px);
    line-height: calc(18 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active {
    flex: 4 1 0;
    max-width: none;
    justify-content: flex-start;
    max-height: calc(320 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active:nth-child(5) {
    max-height: calc(332 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active .logistics-solutions-item-tit {
    font-size: calc(18 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-content .logistics-solutions-item.active .logistics-solutions-item-content {
    font-size: calc(13 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: calc(16 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left {
    background: url("/egg/image/visitorServiceNew/logistics-solutions-left-bg-mobile.png") no-repeat center center;
    background-size: 100% 100%;
    height: calc(245 / 16 * var(--root-fs) * 1px);
    padding: calc(12 / 16 * var(--root-fs) * 1px);
    border-radius: calc(12 / 16 * var(--root-fs) * 1px);
    width: 100%;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info {
    width: calc(220 / 16 * var(--root-fs) * 1px);
    border-radius: calc(12 / 16 * var(--root-fs) * 1px);
    padding-top: calc(8 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(8 / 16 * var(--root-fs) * 1px);
    padding-left: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(12 / 16 * var(--root-fs) * 1px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info .logistics-solutions-footer-left-info-icon {
    width: calc(20 / 16 * var(--root-fs) * 1px);
    height: calc(20 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .logistics-solutions-footer-left-info .logistics-solutions-footer-left-info-ttile {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(18 / 16 * var(--root-fs) * 1px);
    margin-top: calc(4 / 16 * var(--root-fs) * 1px);
    margin-left: calc(0 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn {
    right: calc(0 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content {
    height: calc(40 / 16 * var(--root-fs) * 1px);
    line-height: calc(40 / 16 * var(--root-fs) * 1px);
    border-radius: calc(8 / 16 * var(--root-fs) * 1px);
    padding-top: calc(10 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(10 / 16 * var(--root-fs) * 1px);
    padding-left: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(12 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content:hover {
    background: var(--color-primary);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content span {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-left .left-btn .left-btn-content .left-btn-icon {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    margin-left: calc(2 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right {
    width: 100%;
    margin-top: calc(16 / 16 * var(--root-fs) * 1px);
    height: max-content;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget {
    padding: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title {
    font-size: calc(22 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight {
    font-size: calc(22 / 16 * var(--root-fs) * 1px);
    line-height: calc(28 / 16 * var(--root-fs) * 1px);
    position: relative;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-title .highlight .highlight-bg {
    position: absolute;
    bottom: calc(-2 / 16 * var(--root-fs) * 1px);
    left: calc(-5 / 16 * var(--root-fs) * 1px);
    width: calc(120 / 16 * var(--root-fs) * 1px);
    height: calc(10 / 16 * var(--root-fs) * 1px);
    background: url("/egg/image/visitorServiceNew/lsfr-highlight-bg.png") no-repeat center center;
    background-size: 100% 100%;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-input {
    width: 100%;
    height: calc(103 / 16 * var(--root-fs) * 1px);
    border: none;
    padding: calc(12 / 16 * var(--root-fs) * 1px);
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    margin-top: calc(14 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(12 / 16 * var(--root-fs) * 1px);
    color: #333;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-input::placeholder {
    color: #666;
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn {
    width: 100%;
    border: none;
    height: calc(40 / 16 * var(--root-fs) * 1px);
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    padding-top: calc(12 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(12 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn:hover {
    background: var(--color-primary);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn .tracking-btn-text {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  .logistics-solutions .logistics-solutions-box .logistics-solutions-footer-box .logistics-solutions-footer-right .tracking-widget .tracking-btn .tracking-btn-icon {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    margin-left: calc(2 / 16 * var(--root-fs) * 1px);
  }
}
.advantages {
  width: 100%;
  background-color: #fff;
}
.advantages .adv-box {
  width: 1440px;
  margin: 0 auto;
  padding: 64px 180px;
  background-color: #ffe5d0;
}
.advantages .adv-box .adv-tit {
  font-size: 36px;
  color: #333333;
  text-align: center;
}
.advantages .adv-box .adv-ul {
  width: 1080px;
  margin: 0 auto;
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
}
.advantages .adv-box .adv-ul .adv-li {
  width: 512px;
  height: 64px;
  background: #ffffff;
  border-radius: 8px;
  margin-left: 56px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.advantages .adv-box .adv-ul .adv-li a {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  flex: 1;
}
.advantages .adv-box .adv-ul .adv-li:nth-of-type(2n + 1) {
  margin-left: 0;
}
.advantages .adv-box .adv-ul .adv-li:nth-of-type(1),
.advantages .adv-box .adv-ul .adv-li:nth-of-type(2) {
  margin-top: 0;
}
.advantages .adv-box .adv-ul .adv-li .adv-img {
  width: 40px;
  height: 40px;
  background-size: 656px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.fsnmf {
  background-position: 0px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.fdpa {
  background-position: -59px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.plsfmp {
  background-position: -118px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.aofap {
  background-position: -177px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.rstarcc {
  background-position: -236px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.qifep {
  background-position: -295px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.gwas {
  background-position: -354px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.wpr {
  background-position: -413px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.pws {
  background-position: -472px 58px;
}
.advantages .adv-box .adv-ul .adv-li .adv-img.sevencs {
  background-position: -531px 58px;
}
.advantages .adv-box .adv-ul .adv-li span {
  margin-left: 10px;
  font-size: 16px;
}
.advantages .adv-box .adv-ul .adv-li:hover {
  box-shadow: 1px 5px 10px 0px rgba(41, 41, 41, 0.2);
}
.advantages .adv-box .adv-ul .adv-li:hover a span {
  color: var(--color-primary);
}
.home-evaluation-wrap {
  background-color: #fff;
}
.home-evaluation-wrap .home-evaluation-box {
  width: 1440px;
  margin: 0 auto;
  padding: 100px 0 50px;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .home-evaluation-wrap {
    width: 100vw;
  }
  .home-evaluation-wrap .home-evaluation-box {
    width: 100%;
    padding: 72px 0;
  }
}
@media (max-width: 700px) {
  .home-evaluation-wrap {
    width: 100vw;
  }
  .home-evaluation-wrap .home-evaluation-box {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(32 / 16 * var(--root-fs) * 1px);
  }
}
@media (min-width: 700px) and (max-width: 1200px) {
  .home-get-support-wrap {
    width: 100vw;
  }
  .home-get-support-wrap .home-get-support-box {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .home-get-support-wrap {
    width: 100vw;
  }
  .home-get-support-wrap .home-get-support-box {
    width: 100%;
  }
}
.home-download-app-wrap {
  background-color: #f9f9f9;
}
.home-download-app-wrap .home-download-app-box {
  width: 1440px;
  height: 710px;
  margin: 0 auto;
  padding: 100px 50px 0;
  overflow: hidden;
}
.home-faq-wrap {
  background-color: #fff;
}
.home-faq-wrap .home-faq-box {
  width: 1440px;
  margin: 0 auto;
  padding: 100px 0 0;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .home-faq-wrap {
    width: 100vw;
  }
  .home-faq-wrap .home-faq-box {
    padding: 72px 0 0;
  }
}
@media (max-width: 700px) {
  .home-faq-wrap {
    width: 100vw;
  }
  .home-faq-wrap .home-faq-box {
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 16 * var(--root-fs) * 1px);
  }
}
.home-get-start-wrap {
  background-color: #fff;
}
.home-get-start-wrap .home-get-start-box {
  width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (min-width: 700px) and (max-width: 1200px) {
  .home-get-start-wrap {
    width: 100vw;
  }
  .home-get-start-wrap .home-get-start-box {
    width: 100%;
    padding: 72px 0;
  }
}
@media (max-width: 700px) {
  .home-get-start-wrap {
    width: 100vw;
  }
  .home-get-start-wrap .home-get-start-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
  }
}
.elites {
  width: 100%;
  padding: 64px 0;
  background: #fff;
}
.elites .eli-box {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.eli-icon-box {
  position: fixed;
  bottom: 150px;
  left: 20px;
  z-index: 100;
}
.eli-icon-box .eli-icon {
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: #e1e9ff;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eli-icon-box .eli-icon .iconluntan {
  font-size: 28px;
  line-height: 28px;
  color: #2e5ee0;
}
.eli-icon-box .eli-icon:hover {
  background: #c6d4ff;
}
.eli-icon-box .eli-icon:hover .iconluntan {
  color: #1542bd;
}
.eli-icon-box .eli-icon:hover .eli-hover-content {
  display: block;
}
.eli-icon-box .eli-icon .eli-hover-content {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #333;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 70px;
  width: 180px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.eli-icon-box .eli-icon .eli-hover-content::after {
  content: "";
  border: 5px solid #fff;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes skeleton-loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
