.wrap {
  width: 16rem;
  margin: 0 auto;
}
.pc-header.active {
  color: #000;
  background-color: #ffffff;
  box-shadow: 0 0.04rem 0.06rem -0.01rem rgba(0, 0, 0, 0.1);
}
.pc-header.active .header-navs a,
.pc-header.active .header-lang__text,
.pc-header.active .header-search__toggle {
  color: #000;
}
.pc-header.active .header-navs li.nav-active a {
  color: #000;
}
.pc-header.active .header-navs li.nav-active::before {
  background: #ff6600;
}
/* PC 顶栏：内容区 16rem 居中，1
em=1rem 由 fontsize.js 设置 */
.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.8rem;
  z-index: 9999;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(0.06rem);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.pc-header .header-wrap {
  box-sizing: border-box;
  width: 16rem;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-header .header-left {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  min-width: 0;
}

.pc-header .header-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  min-height: 0;
}

.pc-header .logo {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.pc-header .logo a {
  display: block;
  width: 1.84rem;
  height: 0.46rem;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pc-header.active .logo a {
  background-image: url("../images/logo2.png");
}

.pc-header .header-navs {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0 1rem 0 0.48rem;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
  gap: 1rem;
}

.pc-header .header-navs li {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.pc-header .header-navs li.nav-active a {
  color: #ffffff;
}

/* 当前页导航：右上角白色小菱形 */
.pc-header .header-navs li.nav-active::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  right: -0.1rem;
  transform: translate(50%, -50%) rotate(45deg);
  width: 0.06rem;
  height: 0.06rem;
  background: #fff;
  pointer-events: none;
  z-index: 2;
  animation: nav-diamond-flash 1.5s ease-in-out infinite;
}

/* 导航小菱形闪烁动画 */
@keyframes nav-diamond-flash {
  0%,
  100% {
    opacity: 1;
    transform: translate(50%, -50%) rotate(45deg) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(50%, -50%) rotate(45deg) scale(0.8);
  }
}

.pc-header .header-navs a {
  color: rgba(255, 255, 255, 1);
  font-size: 0.16rem;
  white-space: nowrap;
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.pc-header .header-navs a:hover {
  color: #fff;
}
.pc-header.active .header-navs a:hover {
  color: #000;
}
/* 首屏透明顶栏时：当前项文字与下划线同色系 */
.pc-header:not(.active) .header-navs li.nav-active > a {
  color: #fff;
}

/* 服务与方法论 — 二级菜单 */
.header-navs__item--dropdown {
  position: relative;
}
.header-navs__item--dropdown .header-navs__parent {
  display: inline-flex;
  align-items: center;
}

.header-navs__item--dropdown.nav-active::before {
  animation: nav-diamond-flash 1.5s ease-in-out infinite;
}

.header-navs__item--dropdown:hover .header-navs__parent,
.header-navs__item--dropdown.nav-active .header-navs__parent {
  color: #fff;
}

.pc-header.active .header-navs__item--dropdown::before,
.pc-header.active .header-navs__item--dropdown.nav-active::before {
  background: #ff6600;
}

.header-subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  transform: translateX(-50%);
}

.header-navs__item--dropdown:hover .header-subnav,
.header-navs__item--dropdown:focus-within .header-subnav,
.header-subnav:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-subnav__wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.1rem 0;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.header-subnav__link {
  font-size: 0.16rem;
  line-height: 2;
  color: #333 !important;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.08rem 0.32rem;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
  text-align: center;
  display: block;
}

.header-subnav__link:hover,
.header-subnav__link--active {
  color: #ff6600;
  background-color: #f8f8f8;
}

.pc-header .header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  gap: 0.32rem;
}

/* 语言：地球 + 中文 + 下拉箭头 */
.pc-header .header-lang {
  position: relative;
  flex-shrink: 0;
  height: 100%;
  display: flex;
}

.pc-header .header-lang__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #fff;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.pc-header .header-lang__trigger:hover {
  opacity: 0.9;
}

.pc-header .header-lang__globe {
  display: flex;
  align-items: center;
  line-height: 0;
}

.pc-header .header-lang__globe svg {
  width: 0.18rem;
  height: 0.18rem;
  display: block;
}

.pc-header .header-lang__text {
  font-size: 0.15rem;
  white-space: nowrap;
}

.pc-header .header-lang__chevron {
  display: flex;
  align-items: center;
  line-height: 0;
  margin-left: 0.02rem;
}

.pc-header .header-lang__chevron svg {
  width: 0.12rem;
  height: 0.12rem;
  display: block;
}

.pc-header .header-lang__menu {
  display: none;
  position: absolute;
  top: 85%;
  left: 0;
  padding: 0.06rem 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0.06rem;
  box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.pc-header .header-lang:hover .header-lang__menu,
.pc-header .header-lang:focus-within .header-lang__menu,
.pc-header .header-lang.is-open .header-lang__menu {
  display: block;
}

.pc-header .header-lang__opt {
  display: block;
  padding: 0.1rem 0.2rem;
  font-size: 0.16rem;
  color: #333;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pc-header .header-lang__opt:hover {
  background: rgba(0, 0, 0, 0.05);
}

.pc-header .header-lang__opt.is-active {
  font-weight: 600;
}
.pc-header .free-Consultate {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  background: #ff6600;
  height: 0.48rem;
  font-size: 0.16rem;
  color: #ffffff;
  border-radius: 0.24rem;
  padding: 0 0.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.pc-header .free-Consultate:hover {
  transform: translateY(-4px);
  color: #ffffff;
  text-decoration: none;
}
.pc-header .free-Consultate img {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

/* 首页首屏：Swiper 轮播 */
.banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.banner-swiper {
  position: relative;
  width: 100%;
  height: 10.24rem;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.banner-swiper .swiper-wrapper,
.banner-swiper .swiper-slide {
  height: 10.24rem;
}

.banner-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.banner-slide__bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-slide__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.banner-slide__content {
  position: relative;
  z-index: 1;
  width: 16rem;
}

.banner-slide__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.1rem 0.16rem;
  margin: 0 0 0.2rem 0;
  font-size: 0.68rem;
  line-height: 1.2;
  color: #fff;
  font-weight: normal;
}

.banner-slide__title-line {
  color: #fff;
}

.banner-slide__title-accent {
  color: #ff6600;
}

.banner-slide__sub {
  margin: 0 0 0.47rem 0;
  font-size: 0.24rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 1);
  max-width: 4.6rem;
}

.banner-slide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-height: 0.6rem;
  padding: 0.12rem 0.1rem 0.12rem 0.2rem;
  background: #ff6600;
  color: #fff;
  font-size: 0.16rem;
  text-decoration: none;
  border-radius: 0.3rem;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}

.banner-slide__cta:hover {
  background: #e65c00;
}

.banner-slide__cta-icon {
  width: 0.32rem;
  height: 0.32rem;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

/* 底部上箭头：14px 设计高宽（与 rem 基准一致取 0.14rem） */
@keyframes banner-swiper-arrow-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-0.1rem);
  }
}

.banner-swiper__arrow-up {
  position: absolute;
  bottom: 0.62rem;
  left: 50%;
  z-index: 4;
  line-height: 0;
  text-decoration: none;
  animation: banner-swiper-arrow-float 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .banner-swiper__arrow-up {
    animation: none;
    transform: translateX(-50%);
  }
}

.banner-swiper__arrow-up img {
  display: block;
  width: 0.14rem;
  height: 0.14rem;
  object-fit: contain;
}

/* 右下角：序号 + 分节条 */
.banner-swiper.swiper .banner-swiper__pagination.swiper-pagination,
.banner-swiper.swiper .swiper-pagination.banner-swiper__pagination {
  top: auto;
  left: auto;
  right: 0.48rem;
  bottom: 0.62rem;
  width: auto;
  margin: 0;
  padding: 0;
  z-index: 4;
  font-size: 0;
  line-height: 0;
}

.banner-swiper__pag {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.banner-swiper__pag-num {
  display: inline-block;
  min-width: 0.4rem;
  font-size: 0.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  vertical-align: middle;
  font-family: "Microsoft YaHei", "Microsoft YaHei UI", "微软雅黑", sans-serif;
}

.banner-swiper__bar {
  display: flex;
  align-items: center;
  height: 0.08rem;
}

.banner-swiper__bar-seg {
  display: block;
  width: 0.26rem;
  height: 0.08rem;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease;
}

.banner-swiper__bar-seg.is-active {
  background: rgba(255, 255, 255, 0.6);
}

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

/* 首页：LINK 结构化增长框架 */
.index-link {
  box-sizing: border-box;
  padding: 0.5rem 0;
  background: #f9f7f4 url(../images/coreservices-bg1.png) no-repeat center top;
  background-size: cover;
}

.index-link__wrap {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.index-link__head {
  flex: 0 0 auto;
  margin-bottom: 0.32rem;
  text-align: center;
}

.index-link__title {
  margin: 0 0 0.1rem;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
}

.index-link__sub {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #999;
}

.index-link__body {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  gap: 0.36rem;
  min-height: 0;
}

.index-link__media {
  flex: 0 0 60%;
  min-width: 0;
  height: auto;
}

.index-link__video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.08rem;
  background: #111;
  object-fit: cover;
}

.index-link__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.08rem;
}

/* 视频封面层 */
.index-video__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.index-video__cover.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.index-video__play-icon {
  width: 0.34rem;
  height: 0.34rem;
  opacity: 0.85;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.index-video__cover:hover .index-video__play-icon {
  transform: scale(1.1);
  opacity: 1;
}

/* 视频控制条 */
.index-video__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 0.4rem 0.12rem 0.12rem;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.index-link__video-wrapper:hover .index-video__controls,
.link-fw-hero__video-wrapper:hover .index-video__controls,
.index-video__controls.is-visible {
  opacity: 1;
}

/* 进度条 */
.index-video__progress {
  width: 100%;
  height: 0.04rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.02rem;
  margin-bottom: 0.08rem;
  cursor: pointer;
}

.index-video__progress-bar {
  height: 100%;
  background: #ff6600;
  border-radius: 0.02rem;
  width: 0;
  transition: width 0.1s linear;
}

/* 控制按钮 */
.index-video__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 时间显示 */
.index-video__time {
  font-size: 0.12rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: monospace;
}

.index-video__btn {
  background: none;
  border: none;
  padding: 0.04rem;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.index-video__btn:hover {
  opacity: 1;
}

.index-video__btn-icon {
  display: block;
  width: 0.2rem;
  height: 0.2rem;
  background: #fff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.index-video__btn--play.is-playing .index-video__btn-icon {
  background: #fff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* 音量控制 */
.index-video__volume {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.index-video__btn--volume .index-video__btn-icon {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.index-video__btn--volume.is-muted .index-video__btn-icon {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.index-video__volume-slider {
  width: 0.6rem;
  height: 0.04rem;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.02rem;
  cursor: pointer;
}

.index-video__volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0.1rem;
  height: 0.1rem;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.index-video__volume-slider::-moz-range-thumb {
  width: 0.1rem;
  height: 0.1rem;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.index-link__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.index-link__label {
  margin: 0 0 0.2rem;
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.28rem;
  color: #333;
}

.index-link__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.12rem;
  margin-bottom: 0.2rem;
}

.index-link-pillar {
  box-sizing: border-box;
  padding: 0.16rem 0.18rem 0.14rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.18);
  border-radius: 0.04rem;
  background: #0f1623;
}

.index-link-pillar__letter {
  display: block;
  margin-bottom: 0.06rem;
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 1;
  color: #ff6600;
}

.index-link-pillar__name {
  margin: 0 0 0.04rem;
  font-size: 0.14rem;
  font-weight: 600;
  line-height: 0.22rem;
  color: #fff;
}

.index-link-pillar__desc {
  margin: 0;
  font-size: 0.12rem;
  line-height: 0.18rem;
  color: rgba(255, 255, 255, 0.55);
}

.index-link__text {
  margin: 0 0 0.08rem;
  font-size: 0.16rem;
  line-height: 0.5rem;
  color: #666;
  text-align: justify;
}

.index-link__text:last-of-type {
  margin-bottom: 0.14rem;
  line-height: 0.3rem;
}

.index-link__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  align-self: flex-start;
  padding: 0 0.18rem;
  height: 0.36rem;
  border: 0.01rem solid #ff6600;
  border-radius: 0.18rem;
  font-size: 0.14rem;
  line-height: 1;
  color: #ff6600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  margin-top: auto;
}

.index-link__cta:hover {
  background: #ff6600;
  color: #fff;
  text-decoration: none;
}

.index-link__cta img {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.index-link__cta:hover img {
  filter: brightness(0) invert(1);
}

/* 网站诊断模块（布局复用 plan-lead） */
.website-check {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff url(../images/plan-bg.png) center center no-repeat;
  background-size: 100% 100%;
}

.website-check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-6rem, -2.6rem);
  width: 2.2rem;
  height: 1.39rem;
  background: url("../images/from-topimg.png") no-repeat center / contain;
  z-index: 0;
}

.website-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(3.7rem, 1.6rem);
  width: 1.6rem;
  height: 1.36rem;
  background: url("../images/from-bottomimg.png") no-repeat center / contain;
  z-index: 2;
}

.website-check__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.website-check__card {
  box-sizing: border-box;
  width: 8.9rem;
  height: 5.2rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  padding: 0.4rem 0.8rem 0.32rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.website-check__title {
  margin: 0 0 0.13rem 0;
  font-size: 0.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #333333;
}

.website-check__sub {
  margin: 0 0 0.86rem 0;
  font-size: 0.22rem;
  line-height: 1.4;
  color: #666;
  text-align: center;
}

.website-check__form {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 0.54rem;
  margin: 0 0 0.3rem 0;
  /* border: 1px solid #eeeeee; */
  border-radius: 0.27rem;
  justify-content: center;
}

.website-check__field {
  flex: 1;
  min-width: 0;
  /* height: 0.54rem; */
}

.website-check__input {
  box-sizing: border-box;
  width: 100%;
  height: 0.54rem;
  margin: 0 0.24rem;
  font-size: 0.16rem;
  line-height: 0.48rem;
  color: #333;
  background-color: #fff;
  border: none;
  border-right: none;
  border-radius: 0.24rem 0 0 0.24rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15); */
}

.website-check__input:focus {
  /* border-color: #ff6600; */
  /* box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.12); */
}

.website-check__input::placeholder {
  color: #bfbfbf;
}

.website-check__submit {
  flex-shrink: 0;
  width: 3.6rem;
  height: 0.48rem;
  border-radius: 0.24rem;
  background: #ff6600;
  font-size: 0.16rem;
  color: #fff;
  margin-right: 0.05rem;
  line-height: 0.48rem;
}

.website-check__submit:hover {
  background: #e65c00;
}

.website-check__hint.from-tips {
  width: auto;
  max-width: 3.58rem;
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.5;
}

/* 出海业务诊断计划 */
.plan-lead {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 9rem;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  background: #fff url(../images/plan-bg.png) center center no-repeat;
  background-size: 100% 100%;
}

.plan-lead::before {
  content: "";
  position: absolute;
  top: 2.6rem;
  /* left: 50%; */
  transform: translateX(-4.7rem);
  width: 2.2rem;
  height: 1.39rem;
  background: url("../images/from-topimg.png") no-repeat center / contain;
  z-index: 0;
}

.plan-lead::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  right: 50%;
  transform: translate(5.3rem, 1.1rem);
  width: 1.6rem;
  height: 1.36rem;
  background: url("../images/from-bottomimg.png") no-repeat center / contain;
  z-index: 2;
}

.plan-lead__inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}

.plan-lead__title {
  margin: 0 0 0.25rem 0;
  font-size: 0.4rem;
  color: #333333;
}

.plan-lead__sub {
  font-size: 0.2rem;
  line-height: 1.5;
  color: #999;
  text-align: center;
}

.plan-lead__card {
  box-sizing: border-box;
  width: 8.9rem;
  min-height: 5.2rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  padding: 0.36rem 0.72rem 0.48rem;
  margin: 0.47rem auto 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.plan-lead__progress {
  height: 0.04rem;
  margin-bottom: 0.28rem;
  border-radius: 0.02rem;
  background: #eee;
  overflow: hidden;
}

.plan-lead__progress-bar {
  height: 100%;
  border-radius: inherit;
  background: #ff6600;
  transition: width 0.45s ease;
}

.plan-lead__wizard {
  width: 100%;
}

.plan-lead__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.plan-lead__track {
  display: flex;
  flex-wrap: nowrap;
  width: calc(var(--plan-total, 8) * 100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.plan-lead__slide {
  flex: 0 0 calc(100% / var(--plan-total, 8));
  width: calc(100% / var(--plan-total, 8));
  max-width: calc(100% / var(--plan-total, 8));
  min-width: 0;
  box-sizing: border-box;
  text-align: left;
}

.plan-lead__dim {
  margin: 0 0 0.08rem;
  font-size: 0.14rem;
  line-height: 0.22rem;
  color: #ff6600;
  font-weight: 600;
}

.plan-lead__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.12rem;
  margin-bottom: 0.12rem;
}

.plan-lead__options--stack {
  grid-template-columns: 1fr;
}

.plan-lead__option {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 0.48rem;
  padding: 0.12rem 0.16rem;
  border: 0.01rem solid #e0e0e0;
  border-radius: 0.08rem;
  background: #fff;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #333;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 0.04rem 0.04rem rgba(0, 0, 0, 0.06);
  width: 96%;
  margin: auto;
}

.plan-lead__option strong {
  display: block;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.24rem;
  color: inherit;
}

.plan-lead__option span {
  display: block;
  margin-top: 0.04rem;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #999;
}

.plan-lead__option:hover {
  border-color: #ff6600;
}

.plan-lead__option.is-active {
  border-color: #ff6600;
  background: #fff7f2;
  color: #ff6600;
  /* box-shadow: 0 0.04rem 0.12rem rgba(255, 102, 0, 0.15); */
}

.plan-lead__option.is-active span {
  color: #ff6600;
  opacity: 0.85;
}

.plan-lead__other-wrap {
  margin-top: 0.12rem;
}

.plan-lead__other-wrap[hidden] {
  display: none !important;
}

.plan-lead__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.1rem;
  margin-bottom: 0.16rem;
  max-height: 2.6rem;
  overflow-y: auto;
  /* padding: 0 0.2rem; */
  width: 96%;
  margin-left: 2%;
}

.plan-lead__check {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  padding: 0.1rem 0.12rem;
  border: 0.01rem solid #eee;
  border-radius: 0.06rem;
  font-size: 0.14rem;
  line-height: 0.22rem;
  color: #333;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.plan-lead__check:hover {
  border-color: #ff6600;
}

.plan-lead__check input {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 0.16rem;
  height: 0.16rem;
  margin-top: 0.03rem;
  border: 0.01rem solid #d9d9d9;
  border-radius: 0.02rem;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    background-image 0.2s ease;
}

.plan-lead__check input:checked {
  border-color: #ff6600;
  background-color: #ff6600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5.5l3.5 3.5L11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.1rem 0.08rem;
}

.plan-lead__check span {
  flex: 1;
  min-width: 0;
}

.plan-lead__check:has(input:checked) {
  border-color: #ff6600;
  background: #fff7f2;
}

.plan-lead__input--inline {
  margin-bottom: 0.12rem;
}

.plan-lead__input--inline[hidden] {
  display: none !important;
}

.plan-lead__next {
  display: block;
  width: 80%;
  height: 0.44rem;
  margin-top: 0.3rem;
  border: 0.01rem solid #ff6600;
  border-radius: 0.22rem;
  background: #fff;
  font-size: 0.16rem;
  line-height: 0.44rem;
  color: #ff6600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.plan-lead__next:hover {
  background: #ff6600;
  color: #fff;
}

.plan-lead__prev {
  display: block;
  width: 40%;
  height: 0.44rem;
  margin-top: 0.2rem;
  border: 0.01rem solid #d9d9d9;
  border-radius: 0.22rem;
  background: #fff;
  font-size: 0.16rem;
  line-height: 0.44rem;
  color: #999;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.plan-lead__prev:hover {
  border-color: #bbb;
  color: #666;
  background: #f5f5f5;
}

.plan-lead__btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.12rem;
  margin-top: 0.2rem;
  width: 96%;
  margin: auto;
}

.plan-lead__btn-row .plan-lead__next {
  width: 40%;
  margin-top: 0;
}

.plan-lead__btn-row .plan-lead__prev {
  margin-top: 0;
}

.plan-lead__btn-row--submit .plan-lead__submit {
  display: block;
  width: 48%;
  height: 0.44rem;
  border: 0.01rem solid #ff6600;
  border-radius: 0.22rem;
  background: #ff6600;
  font-size: 0.16rem;
  line-height: 0.44rem;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  margin-top: 0;
}

.plan-lead__btn-row--submit .plan-lead__submit:hover {
  background: #e55a00;
  border-color: #e55a00;
}

.plan-lead__btn-row--submit .plan-lead__prev {
  width: 48%;
  height: 0.44rem;
  line-height: 0.44rem;
  border-radius: 0.22rem;
}

.plan-lead__fields {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
  /* padding: 0 0.2rem; */
  width: 96%;
  margin-left: 2%;
}

.plan-lead__slide .plan-lead__card-h {
  margin-bottom: 0.2rem;
  font-size: 0.2rem;
}

.plan-lead__slide .plan-lead__card-hint {
  margin-bottom: 0.2rem;
}

.plan-lead__slide .plan-lead__submit {
  /* margin-top: 0.16rem; */
}

.plan-lead__slide .from-tips {
  margin-top: 0.16rem;
}

.plan-lead__slide.is-error .plan-lead__checks,
.plan-lead__slide.is-error .plan-lead__options {
  outline: 0.01rem solid #ff4d4f;
  border-radius: 0.06rem;
}

.plan-lead__card-h {
  margin: 0 0 0.16rem 0;
  font-size: 0.24rem;
  line-height: 1.3;
  color: #333;
}

.plan-lead__card-hint {
  margin: 0 0 0.47rem 0;
  font-size: 0.16rem;
  line-height: 1.4;
  color: #999;
}

.plan-lead__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  text-align: left;
}

.plan-lead__field {
  position: relative;
  width: 100%;
}

.plan-lead__field--required .plan-lead__input {
  padding-right: 0.72rem;
}

.plan-lead__required {
  position: absolute;
  right: 0.14rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.12rem;
  line-height: 1;
  color: #ff4d4f;
  pointer-events: none;
}

.plan-lead__select,
.plan-lead__input {
  box-sizing: border-box;
  width: 96%;
  height: 0.48rem;
  padding: 0 0.36rem 0 0.2rem;
  font-size: 0.16rem;
  line-height: 0.48rem;
  color: #333;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.12rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  margin-left: 2%;
}

.plan-lead__input {
  padding: 0 0.2rem;
}

.plan-lead__input::placeholder {
  color: #bfbfbf;
}

.plan-lead__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12L6 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.14rem center;
  background-size: 0.12rem 0.08rem;
  cursor: pointer;
}

.plan-lead__select:focus,
.plan-lead__input:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.12);
}

.plan-lead__submit {
  display: block;
  width: 80%;
  margin-top: 0.8rem;
  margin-left: 10%;
  height: 0.48rem;
  padding: 0 0.24rem;
  font-size: 0.16rem;
  color: #fff;
  line-height: 0.48rem;
  text-align: center;
  background: #ff6600;
  border-radius: 0.24rem;
  border: 1px solid #eeeeee;
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow:
    0px 4px 20px 0px rgba(255, 102, 0, 0.3),
    inset 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.from-tips {
  width: 3.9rem;
  font-size: 0.14rem;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  letter-spacing: 0em;
  color: #999999;
  margin: auto;
}
.plan-lead__submit:hover {
  background: #e65c00;
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  right: 0.32rem;
  bottom: 1.5rem;
  width: 0.74rem;
  height: 0.74rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top img {
  display: block;
  width: 100%;
  height: auto;
}

.back-to-top:hover img {
  opacity: 0.8;
}

/* 首页：问题 / 方案 分栏 + 轮播 */
@keyframes index-split-center-sway {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.1rem);
  }
}

.index-split {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 9rem;
  height: 9rem;
  overflow: hidden;
}

.index-split__viewport {
  position: relative;
  width: 100%;
  height: 9rem;
  overflow: hidden;
  z-index: 1;
}

.index-split__track {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 9rem;
  height: 9rem;
  will-change: transform;
  transition: transform 0.45s ease;
  box-sizing: border-box;
}

.index-split__page {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 9rem;
  box-sizing: border-box;
  min-height: 9rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.index-split__side {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}

.index-split__side--left,
.index-split__side--right {
  height: 100%;
  align-self: stretch;
}

.index-split__side--left {
  padding: 2.79rem 0.72rem 0 1.36rem;
  background: #0a0a0a url(../images/left-bg.png) center / cover no-repeat;
}

.index-split__side--right {
  padding: 2.79rem 0.72rem 0 1.36rem;
  background: #ff751a url(../images/right-bg.png) center / cover no-repeat;
}

.index-split__body {
  flex: 1;
  min-height: 0;
  text-align: left;
  padding-bottom: 0.56rem;
}

/* 右侧：标题与正文在上方，Logo+副文案整体贴底，与设稿图1一致 */
.index-split__side--right .index-split__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 0.6rem;
}

.index-split__side--right .index-split__brands {
  margin-top: auto;
}

.index-split__side--right .index-split__sublines {
  margin-top: 0.12rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 0.36rem;
  align-items: center;
}

.index-split__prog {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin: 0 0 0.53rem 0;
}

.index-split__prog-tick {
  display: block;
  width: 0.1rem;
  height: 0.08rem;
  background: rgba(255, 255, 255, 0.35);
  /* border-radius: 0.02rem; */
}

.index-split__prog-tick.is-active {
  width: 0.26rem;
  background: #fff;
}

.index-split__kicker {
  margin: 0 0 0.35rem 0;
  font-size: 0.24rem;
  font-weight: 400;
  color: #fff;
}

.index-split__lead {
  margin: 0;
  font-size: 0.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 0.7rem;
  text-align: justify;
}

.index-split__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem 0.28rem;
  box-sizing: border-box;
  border-radius: 0.04rem;
  max-width: 100%;
}

.index-split__logoimg {
  display: block;
  max-height: 0.4rem;
  width: auto;
  object-fit: contain;
}

.index-split__sublines {
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.55;
  color: #ffffff;
  text-align: left;
}

.index-split__arrow {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0;
  line-height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.index-split__arrow-img {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  object-fit: contain;
  animation: index-split-center-sway 2.4s ease-in-out infinite;
}

.index-split__nav {
  position: absolute;
  bottom: 0.36rem;
  z-index: 4;
  display: flex;
  align-items: center;
  pointer-events: auto;
  box-sizing: border-box;
  width: 50%;
  padding: 0 0.4rem;
}

.index-split__nav--prev {
  left: 0;
  justify-content: flex-end;
  padding-right: 0.48rem;
}

.index-split__nav--next {
  right: 0;
  left: auto;
  justify-content: flex-start;
  padding-left: 0.48rem;
}

.index-split__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 0.32rem;
  height: 0.32rem;
  min-width: 0.32rem;
  min-height: 0.32rem;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 0.01rem solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity 0.2s ease;
}

.index-split__circle--prev,
.index-split__circle--next {
  color: #fff;
}

.index-split__circle .index-split__circle-icon {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  margin: auto;
  flex-shrink: 0;
  transform: translate(0, 0.005rem);
  transition: color 0.2s ease;
}

.index-split__circle.is-boundary {
  color: #ff6600;
}

.index-split__circle:hover {
  opacity: 0.95;
  border-color: #fff;
}

/* 核心业务：三栏 + 竖线分隔 */
.core-biz {
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  padding: 0.98rem 0 0.83rem 0;
  height: 9rem;
}

.core-biz__wrap {
  box-sizing: border-box;
  width: 16rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.4rem;
}

.core-biz__head {
  text-align: center;
  margin-bottom: 0.48rem;
}

.core-biz__title {
  margin: 0 0 0.2rem 0;
  font-size: 0.4rem;
  font-weight: 400;
  /* line-height: 1.3; */
  color: #333;
}

.core-biz__sub {
  margin: 0;
  font-size: 0.18rem;
  line-height: 1.5;
  color: #999;
}

.core-biz__row {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  /* height: 9rem; */
  /* min-height: 9rem; */
}

.core-biz__col {
  /* flex: 1; */
  min-width: 0;
  padding: 0 0.18rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.core-biz__col:first-of-type {
  padding-left: 0;
}

.core-biz__col:last-of-type {
  padding-right: 0;
}

.core-biz__col-inner {
  display: flex;
  flex-direction: column;
  /* flex: 1; */
  /* min-height: 0; */
  /* height: 100%; */
  overflow: hidden;
}

/* 上：标题+正文；下：与图固定 0.54rem 间距后，图贴齐模块底 */
.core-biz__text {
  flex: 0 0 auto;
}

.core-biz__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem 0.14rem;
  margin: 0 0 0.43rem 0;
  padding: 0;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}

.core-biz__num {
  font-size: 0.36rem;
  /* font-weight: 700; */
  line-height: 1;
  color: #ff6600;
}

.core-biz__name {
  min-width: 0;
  font-weight: 700;
}

.core-biz__dot {
  display: block;
  width: 0.08rem;
  height: 0.08rem;
  background: #ff6600;
  flex-shrink: 0;
  /* align-self: self-end; */
  /* margin-top: -0.5rem; */
  margin-top: 0.2rem;
  margin-left: -0.1rem;
}

.core-biz__desc {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #666;
  text-align: justify;
}

.core-biz__media-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  margin-top: 0.54rem;
}

.core-biz__media {
  line-height: 0;
  flex-shrink: 0;
  width: 100%;
  /* max-height: 100%; */
  overflow: hidden;
  border-radius: 0.04rem;
  height: 2.8rem;
}

.core-biz__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0.04rem;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.core-biz__media:hover img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .core-biz__media img {
    transition: none;
  }

  .core-biz__media:hover img {
    transform: none;
  }
}

.core-biz__divider {
  flex-shrink: 0;
  width: 0.01rem;
  min-width: 1px;
  height: 1.09rem;
  margin: 0 0.32rem;
  background: rgba(238, 238, 238, 0.9333);
}

/* 各平台深度经验 + 五步：共用背景外盒 */
.platform-sustain-wrap {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  background: url("../images/mask-pingtaibg.png") no-repeat center / cover
    #f9f9f9;
  /* padding-top: 1.15rem; */
}

/* 各平台深度经验 */
.platform-show {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1.15rem 0;
  background: transparent;
  overflow: hidden;
}

.platform-show__wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 16rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.4rem;
}

.platform-show__head {
  text-align: center;
  margin-bottom: 0.48rem;
}

.platform-show__title {
  margin: 0 0 0.27rem 0;
  font-size: 0.4rem;
  font-weight: 400;
  /* line-height: 1.3; */
  color: #333;
}

.platform-show__sub {
  margin-bottom: 0.46rem;
  font-size: 0.18rem;
  /* line-height: 1.5; */
  color: #999;
}

.platform-show__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 0.2rem 0.12rem; */
}

.platform-show__side--left,
.platform-show__side--right {
  flex: 0 0 auto;
}

/* 左侧与中间橙区（5.35rem 高）垂直居中对齐 */
.platform-show__side--left {
  margin-top: calc((5.35rem - 2.2rem) / 2);
}

/* 右侧 2×2 与中间橙区顶边相差 1.36rem，非垂直居中 */
.platform-show__side--right {
  margin-top: 1.36rem;
}

/* 中栏：橙区 + 底部文案，宽度随橙区 */
.platform-show__mid {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  align-items: stretch;
  align-self: flex-start;
}

.platform-show__cell {
  width: 2.2rem;
  height: 2.2rem;
  box-sizing: border-box;
  border: 0.01rem solid #eeeeee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  cursor: pointer;
}

.platform-show__cell:hover {
  border-color: #ff6600;
}

.platform-show__cell.is-active {
  border: 2px solid #ff6600;
  background: #fff8f3;
}

.platform-show__cell-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.platform-show__grid {
  display: grid;
  grid-template-columns: 2.2rem 2.2rem;
  grid-template-rows: 2.2rem 2.2rem;
  /* gap: 0.12rem; */
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 勿用负水平 margin，否则会与右栏重叠；列间距用 .platform-show__row 的 gap */
.platform-show__center {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
}

.platform-show__center-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  width: 5.35rem;
  height: 5.35rem;
  box-sizing: border-box;
  padding: 0.56rem 0.73rem 0.1rem 0.54rem;
  color: #fff;
  border-radius: 0.04rem;
  border: 0.01rem solid rgba(238, 238, 238, 0.9333);
  background: url("../images/pingtai-centerbg.png") no-repeat center / cover;
}

.platform-show__center-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* 与单元格一一对应 logo，滤色为白；最大约 1.91rem × 1rem */
.platform-show__center-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 0 0 0.22rem 0;
  line-height: 0;
  min-height: 1rem;
}

.platform-show__center-brand-img {
  display: block;
  max-width: 1.91rem;
  max-height: 1rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: 0 50%;
}

.platform-show__center-brand-title {
  display: inline-block;
  margin-left: 0.12rem;
  font-size: 0.2rem;
  color: #fff;
  line-height: 1;
}

.platform-show__center-copy {
  position: relative;
  z-index: 1;
}

.platform-show__center-txt {
  position: relative;
  z-index: 1;
  margin: 0 0 0.12rem 0;
  font-size: 0.16rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
  text-align: justify;
}

.platform-show__center-txt:last-of-type {
  margin-bottom: 0;
}

/* 两格在中栏下缘靠右，与「中间图下面右下角」一致 */
.platform-show__foot {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-wrap: wrap;
  /* gap: 0.2rem 0.24rem; */
  /* margin-top: 0.2rem; */
  width: 100%;
  box-sizing: border-box;
}

.platform-show__ft {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  min-height: 1.8rem;
  height: 1.8rem;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  text-align: center;
  padding: 0.1rem 0.08rem;
  gap: 0.06rem;
}

.platform-show__ft-zh {
  margin: 0;
  font-size: 0.16rem;
  color: #333;
  font-weight: 500;
}

.platform-show__ft-icon {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
}

.platform-show__ft:hover {
  cursor: pointer;
  border-color: #ff6600;
}

.platform-show__ft.is-active {
  border: 2px solid #ff6600;
  background: #fff8f3;
}

/* 五步构建可持续出海能力 */
.sustain-steps {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  /* padding: 0.56rem 0 0.6rem; */
  background: transparent;
  overflow: hidden;
  padding-bottom: 1rem;
}

.sustain-steps__wrap {
  box-sizing: border-box;
  width: 16rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.4rem;
}

.sustain-steps__head {
  text-align: center;
  margin-bottom: 0.96rem;
}

.sustain-steps__title {
  margin: 0 0 0.27rem 0;
  font-size: 0.4rem;
  font-weight: 400;
  /* line-height: 1.3; */
  color: #333;
}

.sustain-steps__sub {
  margin-bottom: 0.46rem;
  font-size: 0.18rem;
  /* line-height: 1.5; */
  color: #999;
}

.sustain-steps__flow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-evenly;
  max-width: 100%;
  margin: 0 auto;
  gap: 0 0.02rem;
}

.sustain-steps__item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  outline: none;
}

.sustain-steps__item:focus-visible {
  border-radius: 0.04rem;
  box-shadow:
    0 0 0 0.02rem #fff,
    0 0 0 0.04rem rgba(255, 102, 0, 0.55);
}

.sustain-steps__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.sustain-steps__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  box-sizing: border-box;
  padding: 0.12rem 0.1rem 0.1rem;
  border-radius: 50%;
  background: #737581;
  color: #fff;
  transition: background 0.2s ease;
}

/* 默认选中第一步；悬停/键盘时再切换高亮 */
.sustain-steps__flow:not(:hover):not(:focus-within)
  .sustain-steps__item:first-child
  .sustain-steps__circle {
  background: #ff6600;
}

.sustain-steps__flow:hover .sustain-steps__item .sustain-steps__circle {
  background: #737581;
}
.sustain-steps__flow:hover .sustain-steps__item:hover .sustain-steps__circle {
  background: #ff6600;
}

.sustain-steps__flow:not(:hover):focus-within
  .sustain-steps__item
  .sustain-steps__circle {
  background: #737581;
}
.sustain-steps__flow:not(:hover):focus-within
  .sustain-steps__item:focus-within
  .sustain-steps__circle {
  background: #ff6600;
}

.sustain-steps__step-lbl {
  display: block;
  font-size: 0.12rem;
  /* line-height: 1.1; */
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}

.sustain-steps__name {
  display: block;
  margin-top: 0.04rem;
  font-size: 0.24rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.sustain-steps__v-arr {
  object-fit: contain;
  /* 将 double-rightarrow.png 压为 #737581 系未高亮态 */
  filter: brightness(0) invert(0.451) sepia(0.08) saturate(0.25)
    hue-rotate(200deg) brightness(0.96) contrast(1.02);
  transition: filter 0.2s ease;
}

.sustain-steps__h-arr {
  display: block;
  width: 0.29rem;
  height: 0.17rem;
  flex: 0 0 auto;
}

.sustain-steps__v-arr {
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  margin-top: 0.1rem;
}

.sustain-steps__flow:not(:hover):not(:focus-within)
  .sustain-steps__item:first-child
  .sustain-steps__v-arr,
.sustain-steps__flow:not(:hover):not(:focus-within)
  .sustain-steps__item:first-child
  + .sustain-steps__sep
  .sustain-steps__h-arr {
  filter: none;
}

.sustain-steps__flow:hover .sustain-steps__item:hover .sustain-steps__v-arr,
.sustain-steps__flow:hover
  .sustain-steps__item:hover
  + .sustain-steps__sep
  .sustain-steps__h-arr,
.sustain-steps__flow:hover
  .sustain-steps__sep:has(+ .sustain-steps__item:hover)
  .sustain-steps__h-arr {
  filter: none;
}

.sustain-steps__flow:not(:hover):focus-within
  .sustain-steps__item:focus-within
  .sustain-steps__v-arr,
.sustain-steps__flow:not(:hover):focus-within
  .sustain-steps__item:focus-within
  + .sustain-steps__sep
  .sustain-steps__h-arr,
.sustain-steps__flow:not(:hover):focus-within
  .sustain-steps__sep:has(+ .sustain-steps__item:focus-within)
  .sustain-steps__h-arr {
  filter: none;
}

.sustain-steps__sep {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 1.8rem;
  box-sizing: border-box;
  padding: 0 0.02rem;
  align-self: flex-start;
}

.sustain-steps__desc {
  width: 100%;
  margin: 0.34rem 0 0 0;
  padding: 0.17rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.12rem;
  line-height: 1.5;
  color: #666;
  text-align: center;
  box-sizing: border-box;
}
.sustain-steps__desc.active {
  border-top: 0.01rem solid #ff6600;
}
/* 灵活的合作方式 */
.operate {
  box-sizing: border-box;
  width: 100%;
  background: #0d0d0d;
  overflow: hidden;
}

.operate__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-sizing: border-box;
  height: 9rem;
  align-items: stretch;
}

.operate__aside {
  flex: 0 0 calc(100% * 60 / 192);
  width: calc(100% * 60 / 192);
  min-width: 0;
  box-sizing: border-box;
  padding: 0.4rem 0 0.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: url("../images/operate-lbg.png") no-repeat center / cover
    rgb(255, 117, 26);
}

.operate__aside-title {
  margin: 0 0 0.25rem 0;
  font-size: 0.4rem;
  font-weight: 400;
  /* line-height: 1.3; */
  color: #fff;
}

.operate__aside-lead {
  margin: 0 0 0.52rem 0;
  font-size: 0.16rem;
  /* line-height: 1.6; */
  color: #fff;
  /* opacity: 0.95; */
}

.operate__nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  /* margin-top: auto; */
  padding-top: 0.12rem;
  /* justify-content: center; */
}

.operate__navtab {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* min-height: 0.6rem; */
  padding: 0.18rem 0.2rem 0.18rem 0.2rem;
  box-sizing: border-box;
  border: none;
  /* border-radius: 0.04rem; */
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  background: rgba(255, 255, 255, 0.2);
  height: 1.6rem;
}

.operate__navtab:hover {
  background: rgba(0, 0, 0, 0.22);
}

.operate__navtab.is-active {
  background: #fff;
  color: #ff6600;
}

.operate__navtab.is-active .operate__nav-txt {
  color: #ff6600;
}

.operate__navtab.is-active .operate__nav-ico {
  filter: none;
}

.operate__navtab:not(.is-active) {
  color: #fff;
}

.operate__navtab:not(.is-active) .operate__nav-ico {
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.operate__navtab-in {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.16rem;
  min-width: 0;
  flex: 1;
}

.operate__nav-ico {
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  object-fit: contain;
  flex-shrink: 0;
}

.operate__nav-txt {
  flex: 1;
  min-width: 0;
}

.operate__nav-bars {
  display: block;
  flex-shrink: 0;
  width: 0.57rem;
  height: 0.08rem;
  margin-left: 0.1rem;
}

.operate__nav-bars img {
  display: block;
  width: 0.57rem;
  height: 0.08rem;
  object-fit: contain;
}

.operate__navtab:not(.is-active) .operate__nav-bars {
  visibility: hidden;
}

.operate__main {
  display: flex;
  flex: 1 1 calc(100% * 132 / 192);
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  position: relative;
  padding: 1.47rem 0.5rem 0.36rem 0.5rem;
  color: #fff;
  background: url("../images/operate-rbg.png") no-repeat center / cover;
}

.operate__stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.operate__stack[hidden] {
  display: none !important;
}

.operate__stack.is-active {
  flex: 1 1 auto;
  min-height: 0;
}

.operate__main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.operate__main-top,
.operate__subtabs,
.operate__sheets,
.operate__stack {
  position: relative;
  z-index: 1;
}

.operate__main-top {
  align-items: flex-start;
  margin-bottom: 0.32rem;
  flex: 0 0 auto;
}

.operate__main-head {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.16rem;
  min-width: 0;
  flex: 1;
}

.operate__main-ico {
  width: 0.3rem;
  height: 0.3rem;
  object-fit: contain;
  flex-shrink: 0;
  /* margin-top: 0.04rem; */
  filter: brightness(0) invert(1);
}

.operate__main-titles {
  min-width: 0;
  flex: 1;
  padding-right: 0.12rem;
}

.operate__main-h {
  margin: 0 0 0.12rem 0;
  font-size: 0.36rem;
  font-weight: 400;
  /* line-height: 1.2; */
  color: #fff;
}

.operate__main-sub {
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #fff;
}

.operate__more {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  gap: 0.08rem;
  margin-top: 0;
  font-size: 0.15rem;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  padding: 0.1rem 0.2rem;
  border-radius: 0.24rem;
  box-shadow: 0 0.04rem 0.12rem rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.operate__more:hover {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff8533 0%, #ff6600 100%);
  box-shadow: 0 0.06rem 0.18rem rgba(255, 102, 0, 0.4);
  transform: translateY(-0.02rem);
}

.operate__more-ic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.operate__more-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.operate__subtabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.12rem 0.16rem;
  margin-bottom: 1.7rem;
  flex: 0 0 auto;
}

.operate__subtab {
  /* padding: 0.1rem 0.2rem 0.1rem 0.2rem; */
  border: none;
  border-radius: 0.04rem;
  background: rgba(225, 225, 225, 0.3);
  color: #fff;
  font-size: 0.2rem;
  /* line-height: 1.2; */
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  width: 1.6rem;
  height: 0.52rem;
}

.operate__subtab:hover {
  background: rgba(0, 0, 0, 0.5);
}

.operate__subtab.is-active {
  background: #ff6600;
  color: #fff;
  /* font-weight: 600; */
}

.operate__sheets {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}

.operate__sheet {
  display: none;
  flex-direction: column;
  animation: operate-fade 0.25s ease;
}

.operate__sheet.is-active {
  display: flex;
}

@keyframes operate-fade {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

.operate__sheet-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem 0.32rem;
  margin: 0 0 0.4rem 0;
  width: 100%;
  box-sizing: border-box;
}

.operate__sheet-hero-txt {
  flex: 1 1 auto;
  min-width: 0;
}

.operate__sheet-hero .operate__more {
  flex-shrink: 0;
  margin-top: 0;
  align-self: center;
}

.operate__sheet-hero .operate__sheet-h {
  margin: 0 0 0.1rem 0;
}

.operate__sheet-hero .operate__sheet-lead {
  margin: 0;
}

.operate__sheet-h {
  margin: 0 0 0.12rem 0;
  font-size: 0.24rem;
  font-weight: 400;
  /* line-height: 1.3; */
  color: #fff;
}

.operate__sheet-lead {
  margin: 0 0 0.16rem 0;
  font-size: 0.14rem;
  line-height: 1.55;
  color: #fff;
}

.operate__sheet-line {
  width: 100%;
  height: 0.01rem;
  margin: 0 0 0.35rem 0;
  background: rgba(255, 255, 255, 0.4);
  border: none;
}

.operate__sheet-k {
  margin: 0 0 0.1rem 0;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.26rem;
  color: #fff;
}

.operate__sheet-ol {
  margin: 0 0 0.25rem 0;
  padding: 0;
  font-size: 0.13rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  list-style: decimal;
}

.operate__sheet-ol li {
  margin-bottom: 0.08rem;
}

.operate__sheet-ol li:last-child {
  margin-bottom: 0;
}

.operate__sheet-foot {
  margin: 0;
  font-size: 0.14rem;
  /* line-height: 1.5; */
  color: #fff;
}

/* 页脚 */
.site-footer {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  background: #040912;
  overflow: hidden;
}

.site-footer__wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 16rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.7rem 0 0.4rem;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.24rem 0.4rem;
  padding-bottom: 1.12rem;
}

.site-footer__slogan {
  margin: 0;
  font-size: 0.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.28rem;
}

.site-footer__top-nav a {
  font-size: 0.16rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-footer__top-nav a:hover {
  color: #fff;
}

.site-footer__body {
  display: flex;
  align-items: start;
  margin-bottom: 0.4rem;
  justify-content: space-between;
}
.site-footer__address {
  display: flex;
  gap: 0.6rem;
  padding-top: 0.2rem;
}
.site-footer-qrcode {
  display: flex;
  gap: 0.3rem;
}
.site-footer__col--phone {
  text-align: left;
}

.site-footer__label {
  margin: 0 0 0.2rem 0;
  font-size: 0.18rem;
  color: #fff;
}

.site-footer__phone {
  display: inline-block;
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__phone:hover {
  opacity: 0.9;
}
.site-footer__loc {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-footer__china {
  display: block;
  flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
}

.site-footer__loc-title {
  font-size: 0.18rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__addr {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__col--qr {
  /* text-align: right; */
  /* justify-self: end; */
  max-width: 1.68rem;
  /* margin: auto; */
}

.site-footer__qr {
  line-height: 0;
  /* margin-left: auto; */
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.site-footer__qr-img {
  display: block;
  width: 1.26rem;
  height: 1.26rem;
  object-fit: cover;
}

.site-footer__qr-cap {
  margin: 0.1rem 0 0 0;
  font-size: 0.12rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  /* max-width: 1.55rem; */
}

.site-footer__brand {
  text-align: center;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo {
  display: block;
  width: 2rem;
  height: 0.5rem;
  margin: 0 auto 0.43rem;
  object-fit: contain;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0.32rem;
  padding-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.702);
}

.site-footer__tech {
  margin: 0;
}

.site-footer__icp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.16rem 0.24rem;
  text-align: right;
}

.site-footer__icp a {
  color: #5c5c5c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__icp a:hover {
  color: #8c8c8c;
}
.neiye-banner {
  height: 8.6rem;
  position: relative;
}
.neiye-banner .aboutbanner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.neiye-banner__content {
  position: absolute;
  top: 54%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 10;
}
.neiye-banner__subtitle {
  font-size: 0.36rem;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}
.neiye-banner__title {
  font-size: 0.18rem;
  color: #ffffff;
  font-weight: normal;
  line-height: 1.5;
}

/* 案例展示页 */
.case-page {
  background: #fff;
  padding: 0.6rem 0 0.8rem;
}

.case-page__wrap {
  box-sizing: border-box;
}

.case-filter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
  margin-bottom: 0.4rem;
}

.case-filter__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  width: 100%;
  padding: 0.2rem 0.16rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-radius: 0.04rem;
  transition: background 0.2s ease;
  border-left: 0.01rem solid #eee;
}

.case-filter__item:first-child {
  border-left: none;
}

.case-filter__item:hover {
  background: rgba(255, 102, 0, 0.06);
}

.case-filter__item.is-active .case-filter__title {
  color: #e85d04;
}

.case-filter__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.08rem;
}

.case-filter__icon {
  flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

.case-filter__title {
  margin: 0;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}

.case-filter__desc {
  margin: 0;
  width: 100%;
  font-size: 0.14rem;
  line-height: 1.5;
  color: #999;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}

.case-card {
  background: #fff;
  border-radius: 0.04rem;
  overflow: hidden;
  border: 0.01rem solid #eee;
  transition: box-shadow 0.2s ease;
}
.case-card:hover {
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.06);
}
.case-card:hover .case-card__img {
  transform: scale(1.05);
}
.case-card__media {
  position: relative;
  height: 2.5rem;
  overflow: hidden;
}

.case-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.case-card__badge {
  position: absolute;
  top: 0.12rem;
  right: 0.27rem;
  width: 0.8rem;
  height: 0.36rem;
  border-radius: 0.18rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.04rem;
  font-size: 0.12rem;
  line-height: 1;
  color: #fff;
  justify-content: center;
}

.case-card__badge img {
  flex-shrink: 0;
  width: 0.12rem;
  height: 0.12rem;
  /* object-fit: contain; */
}

.case-card__body {
  padding: 0.21rem 0.2rem 0.4rem;
}

.case-card__region {
  margin: 0 0 0.1rem;
  font-size: 0.14rem;
  color: #999;
}

.case-card__region span {
  color: #666;
}

.case-card__title {
  margin: 0 0 0.3rem;
  padding-bottom: 0.25rem;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1.45;
  color: #333;
  border-bottom: 1px solid #eee;
}

.case-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.08rem;
}

.case-card__stat-label {
  margin: 0 0 0.04rem;
  font-size: 0.12rem;
  color: #999;
  line-height: 1.3;
}

.case-card__stat-val {
  margin: 0;
  font-size: 0.2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.case-card__stat-rate {
  margin: 0.04rem 0 0;
  font-size: 0.12rem;
  color: #e85d04;
  line-height: 1;
}

.case-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* 案例详情页 */
.case-detail-hero {
  box-sizing: border-box;
  height: 4.8rem;
  background: #f9f9f9;
  padding-top: 0.8rem;
}

.case-detail-hero__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.4rem;
}

.case-detail-hero__content {
  flex: 1;
  min-width: 0;
  /* padding: 0.2rem 0; */
}

.case-detail-hero__region {
  margin: 0 0 0.45rem;
  font-size: 0.14rem;
  color: #999;
}

.case-detail-hero__region span {
  color: #666;
}

.case-detail-hero__title {
  margin: 0 0 1rem;
  font-size: 0.4rem;
  font-weight: normal;
  line-height: 0.24rem;
  color: #333;
}

.case-detail-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
  max-width: 5.6rem;
}

.case-detail-hero__stat-label {
  margin: 0 0 0.17rem;
  font-size: 0.16rem;
  color: #999;
  line-height: 0.24rem;
}

.case-detail-hero__stat-val {
  margin: 0;
  font-size: 0.36rem;
  font-weight: normal;
  color: #333;
  line-height: 0.24rem;
}

.case-detail-hero__stat-rate {
  margin: 0.17rem 0 0;
  font-size: 0.18rem;
  color: #e85d04;
  line-height: 0.24rem;
  color: #f40002;
}

.case-detail-hero__media {
  flex-shrink: 0;
  line-height: 0;
}

.case-detail-hero__media img {
  display: block;
  width: 6.3rem;
  height: 3.6rem;
  object-fit: cover;
  border-radius: 0.04rem;
}

.case-detail-body {
  background: #fff url(../images/casedetail-bg.png) no-repeat center top;
  background-size: cover;
  padding: 0.5rem 0 0.8rem;
}

.case-detail-body__wrap {
  box-sizing: border-box;
  width: 14rem;
}

.case-detail-row {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  padding: 0.64rem 0;
  border-top: 1px solid #eee;
}

.case-detail-row:first-child {
  border-top: none;
  padding-top: 0;
}

.case-detail-row__label {
  margin: 0;
  font-size: 0.4rem;
  font-weight: normal;
  line-height: 0.48rem;
  color: #333;
}

.case-detail-row__content p {
  /* margin: 0 0 0.2rem; */
  font-size: 0.22rem;
  line-height: 0.48rem;
  color: #333;
  text-align: justify;
  font-weight: normal;
}

.case-detail-row__content p:last-child {
  margin-bottom: 0;
}

.case-detail-item + .case-detail-item {
  margin-top: 0.28rem;
}

.case-detail-row__content h3 {
  /* margin: 0 0 0.1rem; */
  font-size: 0.22rem;
  font-weight: 400;
  line-height: 0.48rem;
  color: #333;
}

.case-detail-item__text {
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.75;
  color: #666;
  text-align: justify;
}

/* 出海洞察页 */
.insight-page {
  /* background: #f5f5f5; */
  padding: 0.6rem 0 0.8rem;
}

.insight-page__wrap {
  box-sizing: border-box;
}

.insight-filter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  height: 1.2rem;
  margin-bottom: 0.4rem;
  /* background: #fff; */
  border-radius: 0.04rem;
  overflow: hidden;
}

.insight-filter__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.08rem;
  height: 100%;
  padding: 0 0.2rem;
  border: none;
  border-left: 0.01rem solid #eee;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.insight-filter__item:first-child {
  border-left: none;
}

.insight-filter__item:hover {
  background: rgba(255, 102, 0, 0.06);
}

.insight-filter__item.is-active .insight-filter__title {
  color: #e85d04;
}

.insight-filter__icon {
  flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

.insight-filter__title {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.insight-list__row--featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.26rem;
}

.insight-list__row--normal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}

.insight-card {
  background: #fff;
  border-radius: 0.04rem;
  overflow: hidden;
  border: 0.01rem solid #eee;
  transition: box-shadow 0.2s ease;
}

.insight-card:hover {
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.06);
}

.insight-card:hover .insight-card__img {
  transform: scale(1.05);
}

.insight-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.insight-card__media {
  position: relative;
  height: 4.15rem;
  overflow: hidden;
}

.insight-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.insight-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  line-height: 0;
  pointer-events: none;
  width: 0.16rem;
}

.insight-card__play img {
  display: block;
  width: 100%;
  height: auto;
  /* object-fit: contain; */
}

.insight-card:not(.insight-card--video) .insight-card__play {
  display: none;
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 1.1rem;
  padding: 0.27rem;
}

.insight-card__title {
  margin: 0 0 0.21rem;
  font-size: 0.22rem;
  font-weight: normal;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.insight-card__date {
  font-size: 0.18rem;
  line-height: 1;
  color: #ff6600;
}

/* 洞察详情页 */
.insight-detail {
  padding: 0.8rem 0 0.8rem;
  background: #fff;
}

.insight-detail__wrap {
  box-sizing: border-box;
}

.insight-detail__crumb {
  margin: 0 0 0.45rem;
  font-size: 0.16rem;
  color: #333;
  background: rgba(250, 250, 250, 0.9725);
  height: 0.52rem;
  line-height: 0.52rem;
}

.insight-detail__crumb a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.insight-detail__crumb a:hover {
  color: #e85d04;
}

.insight-detail__crumb-sep {
  margin: 0 0.06rem;
  color: #ccc;
}

.insight-detail__crumb-current {
  color: #666;
}

.insight-detail__head {
  margin-bottom: 0.35rem;
  border-bottom: 1px solid #eee;
}

.insight-detail__meta {
  margin: 0 0 0.16rem;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #666;
}

.insight-detail__cat {
  padding-right: 0.1rem;
  margin-right: 0.1rem;
  border-right: 0.01rem solid #eee;
}

.insight-detail__title {
  padding: 0.3rem 0 0.75rem 0;
  font-size: 0.32rem;
  font-weight: normal;
  line-height: 1.45;
  color: #333;
}

.insight-detail__article {
  margin-bottom: 0.56rem;
}

.insight-detail__article p {
  margin: 0 0 0.24rem;
  font-size: 0.16rem;
  line-height: 1.85;
  color: #666;
  text-align: justify;
}

.insight-detail__article p:last-child {
  margin-bottom: 0;
}

.insight-detail__figure {
  margin: 0.32rem 0;
  line-height: 0;
}

.insight-detail__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.04rem;
}

.insight-detail__figure video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.04rem;
  background: #000;
}

.insight-detail-related {
  padding-top: 1.19rem;
  border-top: 1px solid #eee;
}

.insight-detail-related__title {
  margin: 0 0 0.5rem;
  font-size: 0.3rem;
  font-weight: normal;
  line-height: 1.4;
  color: #333;
}

.insight-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}

.insight-detail-related .insight-card {
  transition: box-shadow 0.2s ease;
}

.insight-detail-related .insight-card:hover {
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.06);
}
.insight-detail-related__grid .insight-card__media {
  height: 3.2rem;
}
.insight-detail-related__grid .insight-card__title {
  font-size: 0.2rem;
}

/* 关于我们 — 核心理念与三大支柱 */
.about-core {
  background: #fff url(../images/specializedServicesBg.png) no-repeat center top;
  background-size: cover;
  padding: 0.9rem 0 1.6rem;
}

.about-core__wrap {
  box-sizing: border-box;
  width: 14rem;
}

.about-core__block {
  text-align: center;
}

.about-core__block--pillars {
  padding-top: 2rem;
}

.about-core__label {
  margin: 0 0 0.12rem;
  font-size: 0.18rem;
  line-height: 0.48rem;
  color: #ff6600;
}

.about-core__title {
  margin: 0 0 0.45rem;
  font-size: 0.4rem;
  font-weight: normal;
  line-height: normal;
  color: #333;
  position: relative;
  padding-bottom: 0.12rem;
}

.about-core__title::after {
  position: absolute;
  content: "";
  width: 0.45rem;
  height: 0.01rem;
  background: #aeaeae;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.about-core__line {
  display: block;
  width: 0.04rem;
  height: 0.61rem;
  margin: 0 auto 0.65rem;
  object-fit: contain;
}

.about-core__intro p {
  margin-bottom: 0.2rem;
}
.about-core__intro p a {
  text-decoration: underline;
  cursor: text;
  font-size: 0.24rem;
  line-height: 0.36rem;
  color: #333;
}

.about-core__em {
  font-weight: inherit;
  color: #ff6600;
}

.about-core__desc {
  /* max-width: 10rem; */
  margin: 0.3rem auto 0.7rem;
  font-size: 0.24rem;
  line-height: 0.2rem;
  color: #333;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  text-align: center;
}

.about-pillar-card {
  box-sizing: border-box;
  padding: 0.8rem 0.34rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.06rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.about-pillar-card:hover {
  border: 1px solid #ff6600;
  box-shadow: 0 4px 15px 0 rgba(174, 70, 0, 0.15);
}

.about-pillar-card__icon {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  margin: 0 auto 0.4rem;
  object-fit: contain;
}

.about-pillar-card__en {
  /* margin: 0 0 0.08rem; */
  font-size: 0.12rem;
  line-height: 1.4;
  color: #999;
  letter-spacing: 0.01em;
}

.about-pillar-card__title {
  margin: 0 0 0.55rem;
  font-size: 0.24rem;
  font-weight: normal;
  line-height: 0.32rem;
  color: #333;
}

.about-pillar-card__text {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #666;
  text-align: center;
  border-top: 0.01rem solid #eee;
  padding-top: 0.47rem;
}

/* 关于我们 — 经营理念轮播 */
.about-operate {
  box-sizing: border-box;
  min-height: 9rem;
  padding: 1.45rem 0 0 0;
  background: #0a0a12 url(../images/operate-bg.png) no-repeat center center;
  background-size: cover;
}

.about-operate__wrap {
  display: flex;
  align-items: stretch;
  gap: 0.97rem;
}

.about-operate__left {
  flex: 0 0 4.8rem;
  max-width: 4.8rem;
  color: #fff;
}

.about-operate__label {
  margin: 0 0 0.1rem;
  font-size: 0.18rem;
  line-height: 0.48rem;
  color: #ff6600;
}

.about-operate__title {
  margin: 0 0 0.65rem;
  font-size: 0.4rem;
  font-weight: normal;
  line-height: 0.48rem;
  color: #fff;
}

.about-operate__text p {
  /* margin: 0 0 0.16rem; */
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #fff;
  text-align: justify;
}

.about-operate__text p:last-child {
  margin-bottom: 0;
}

.about-operate__tagline {
  margin: 0.8rem 0 0;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #fff;
}

.about-operate__right {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-operate-swiper {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.about-operate-swiper .swiper-slide {
  height: auto;
}

.about-op-card {
  box-sizing: border-box;
  height: 100%;
  min-height: 4.2rem;
  padding: 0.5rem 0.3rem 0.6rem 0.3rem;
  background: rgba(21, 21, 21, 0.2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(238, 238, 238, 0.3);
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.04rem;
  color: #fff;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-op-card:hover {
  background: url(../images/operate-cardbg.png) no-repeat center center;
  background-size: cover;
  border-color: #ff7519;
  box-shadow: none;
}

.about-op-card--featured {
  background: #ff7519;
  border-color: #ff7519;
  box-shadow: none;
}

.about-op-card--featured .about-op-card__icon,
.about-op-card--featured .about-op-card__line {
  filter: brightness(0) invert(1);
}

.about-op-card__icon {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  margin-bottom: 0.5rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(2500%)
    hue-rotate(1deg) brightness(1.05) contrast(1.02);
  transition: filter 0.25s ease;
}

.about-op-card:hover .about-op-card__icon,
.about-op-card:hover .about-op-card__line {
  filter: brightness(0) invert(1);
}

.about-op-card__title {
  margin: 0 0 0.12rem;
  font-size: 0.24rem;
  font-weight: normal;
  line-height: 0.32rem;
  color: #fff;
}

.about-op-card__line {
  display: block;
  width: 0.78rem;
  height: 0.03rem;
  object-fit: contain;
  margin: 0.3rem 0;
}

.about-op-card__list {
  margin: 0;
  padding: 0 0 0 0.18rem;
  list-style: disc;
}

.about-op-card__list li {
  margin-bottom: 0.1rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
  list-style: disc;
  color: rgba(255, 255, 255, 0.9);
}

.about-op-card__list li:last-child {
  margin-bottom: 0;
}

.about-op-card__foot {
  margin: 0.5rem 0 0;
  padding-top: 0.3rem;
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #fff;
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  border-top: 1px solid rgba(238, 238, 238, 0.1);
}

.about-op-card:hover .about-op-card__foot {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.about-operate__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.16rem;
  margin-top: 0.24rem;
  padding-right: 0.08rem;
}

.about-operate__nav-btn-wrap {
  position: static;
  width: auto;
  padding: 0;
  pointer-events: auto;
}

.about-operate__nav-btn-wrap .index-split__circle.is-boundary {
  color: #ff6600;
}

/* 关于我们 — 顾问团队与实战经验 */
.about-team {
  padding: 0.8rem 0 1rem;
  background: #fff url(../images/Team-and-experience.png) no-repeat center top;
  background-size: cover;
}

.about-team__wrap {
  box-sizing: border-box;
}

.about-team__head {
  margin-bottom: 1rem;
  text-align: center;
}

.about-team__title {
  margin: 0 0 0.2rem;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
}

.about-team__line {
  display: block;
  width: 0.04rem;
  height: 0.61rem;
  margin: 0 auto 0.28rem;
  object-fit: contain;
}

.about-team__intro {
  max-width: 11rem;
  margin: 0 auto;
  font-size: 0.24rem;
  line-height: 0.42rem;
  color: #333;
}

.about-team__intro:last-of-type {
  margin-bottom: 0;
}

.about-team__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.36rem;
  margin-bottom: 1.14rem;
}

.about-team-card {
  box-sizing: border-box;
  padding: 0.47rem;
  text-align: center;
  background: #fff;
  border-radius: 0.06rem;
  border: 0.01rem solid #eeeeee;
}

.about-team-card__icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 auto 0.25rem;
  object-fit: contain;
}

.about-team-card__title {
  margin: 0 0 0.58rem;
  font-size: 0.26rem;
  font-weight: normal;
  line-height: normal;
  color: #333;
}

.about-team-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.about-team-card__list li {
  position: relative;
  margin-bottom: 0.15rem;
  padding-left: 0.16rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #333;
}

.about-team-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.06rem;
  height: 0.06rem;
  background: #ff6600;
  border-radius: 0.01rem;
}

.about-team-card__list li:last-child {
  margin-bottom: 0;
}

.about-team__roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.about-team-role {
  box-sizing: border-box;
  padding: 0.45rem;
  background: #fff;
  /* border-radius: 0.04rem; */
  /* box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06); */
  border: 0.01rem solid #eee;
}

.about-team-role--primary {
  background: url(../images/team-bg.png) no-repeat center center;
  background-size: cover;
}

.about-team-role__title {
  margin: 0 0 0.06rem;
  font-size: 0.24rem;
  font-weight: normal;
  line-height: 0.32rem;
  color: #333;
}

.about-team-role--primary .about-team-role__title {
  color: #fff;
}

.about-team-role__en {
  margin: 0 0 0.16rem;
  font-size: 0.12rem;
  line-height: 1.4;
  color: #999;
  color: #737581;
}

.about-team-role--primary .about-team-role__en {
  color: rgba(255, 255, 255, 0.85);
}

.about-team-role__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  padding-bottom: 0.22rem;
  border-bottom: 0.01rem solid #eee;
  margin-bottom: 0.39rem;
}

.about-team-role__tags span {
  display: inline-block;
  padding: 0.04rem 0.12rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  border-radius: 0.16rem;
  /* border: 1px solid #ff6600; */
  color: #ff6600;
  background: transparent;
  background: rgba(255, 102, 0, 0.06);
}

.about-team-role--primary .about-team-role__tags span {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.about-team-role__text {
  margin: 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666;
  text-align: justify;
}

.about-team-role--primary .about-team-role__text {
  color: #fff;
}
.about-team-title {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #000;
  padding-bottom: 0.18rem;
}
.about-team-role--primary .about-team-title {
  color: #fff;
}
.about-team-role--primary .about-team-role__tags span {
  background: rgba(255, 255, 255, 0.32);
}

/* 核心服务页：服务层级 */
.core-services-page {
  background: #f9f7f4 url(../images/coreservices-bg1.png) no-repeat center top;
  background-size: cover;
  padding: 0.9rem 0 1.2rem;
}

.core-services-page__wrap {
  /* box-sizing: border-box; */
  /* width: 14rem; */
}

.core-services-page__head {
  margin-bottom: 1rem;
  text-align: center;
}

.core-services-page__title {
  margin: 0 0 0.12rem;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 0.48rem;
  color: #333;
}

.core-services-page__divider {
  display: block;
  width: 0.45rem;
  height: 0.01rem;
  margin: 0 auto 0.16rem;
  background: #aeaeae;
}

.core-services-page__sub {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #666;
}

.core-services-page__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.core-services-row {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 0.6rem;
}

.core-services-row--reverse {
  flex-direction: row-reverse;
  justify-content: end;
}

.core-services-row__media {
  flex: 0 0 7rem;
  width: 7rem;
  height: 4.8rem;
  border-radius: 0.12rem;
  overflow: hidden;
}

.core-services-row__media img {
  display: block;
  width: 7rem;
  height: 4.8rem;
  object-fit: cover;
}

.core-services-row__body {
  flex: 1;
  min-width: 0;
  max-width: 5.8rem;
}

.core-services-row__title {
  margin: 0 0 0.1rem;
  font-size: 0.32rem;
  font-weight: normal;
  line-height: normal;
  color: #333;
}

.core-services-row__desc {
  padding: 0 0 0.62rem;
  font-size: 0.2rem;
  line-height: normal;
  color: #333;
  border-bottom: 0.01rem solid #eee;
}

.core-services-row__list {
  margin: 0.2rem 0 0.4rem;
  padding: 0;
  list-style: none;
}

.core-services-row__list li {
  position: relative;
  /* margin-bottom: 0.14rem; */
  padding-left: 0.28rem;
  font-size: 0.2rem;
  line-height: 0.42rem;
  color: #333;
}

.core-services-row__list li:last-child {
  margin-bottom: 0;
}

.core-services-row__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: #ff6600;
  color: #fff;
  font-size: 0.1rem;
  line-height: 0.18rem;
  text-align: center;
}

.core-services-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  height: 0.48rem;
  padding: 0 0.08rem 0 0.24rem;
  background: #ff6600;
  border-radius: 0.24rem;
  font-size: 0.14rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.core-services-row__btn:hover {
  transform: translateY(-4px);
}

.core-services-row__btn img {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

/* 核心服务页：引语横幅 */
.core-services-quote {
  height: 3.6rem;
  background: url(../images/coreservices-bg2.png) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-services-quote__wrap {
  width: 14rem;
  text-align: center;
}

.core-services-quote__inner {
  margin: 0;
  padding: 0;
  border: none;
}

.core-services-quote__text {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0.8rem;
  font-family: "Microsoft YaHei", "Microsoft YaHei UI", "微软雅黑", sans-serif;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 0.66rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.core-services-quote__em {
  color: #ff6600;
  font-style: normal;
  font-weight: 400;
}

.core-services-quote__mark {
  position: absolute;
  font-family: "Microsoft YaHei", "Microsoft YaHei UI", "微软雅黑", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.core-services-quote__mark--open {
  top: -0.12rem;
  left: 0;
}

.core-services-quote__mark--close {
  right: 0;
  bottom: 0.08rem;
}

/* 核心服务页：专项服务 */
.core-special {
  box-sizing: border-box;
  height: 9.2rem;
  padding: 0.5rem 0 0.56rem;
  background: #f9f7f4 url(../images/coreservices-bg3.png) no-repeat center top;
  background-size: cover;
}

.core-special__wrap {
  box-sizing: border-box;
  /* width: 14rem; */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.core-special__head {
  flex: 0 0 auto;
  margin-bottom: 0.36rem;
  text-align: center;
}

.core-special__title {
  margin: 0 0 0.12rem;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
}

.core-special__divider {
  display: block;
  width: 0.45rem;
  height: 0.01rem;
  margin: 0 auto;
  background: #aeaeae;
}

.core-special__grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.2rem;
  min-height: 0;
}

.core-special-workshop {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.37rem 0.36rem 0.28rem;
  background: #fff;
  border-radius: 0.08rem;
  box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.06);
}

.core-special-workshop__top {
  flex: 0 0 auto;
  margin-bottom: 0.2rem;
}

.core-special-workshop__title {
  margin: 0 0 0.17rem;
  font-size: 0.3rem;
  font-weight: normal;
  line-height: 0.32rem;
  color: #333;
}

.core-special-workshop__lead {
  margin: 0 0 0.12rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #999;
  color: #737581;
}

.core-special-workshop__intro {
  box-sizing: border-box;
  padding: 0.14rem 0.18rem;
  background: #f9f9f9;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #666;
}

.core-special-workshop__body {
  flex: 1 1 auto;
  display: flex;
  /* gap: 0.2rem; */
  min-height: 0;
}

.core-special-workshop__nav {
  flex: 0 0 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  border-radius: 0.04rem;
  overflow: auto;
}

.core-special-workshop__nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 0.27rem 0.24rem;
  border: none;
  border-left: 0.04rem solid #eeeeee;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.core-special-workshop__nav-item.is-active {
  border-left-color: #ff6600;
  background: #fff7f2;
}

.core-special-workshop__nav-label {
  font-size: 0.18rem;
  line-height: 0.22rem;
  color: #333;
  transition: color 0.2s ease;
}

.core-special-workshop__nav-item.is-active .core-special-workshop__nav-label {
  color: #333;
  font-weight: normal;
}

.core-special-workshop__nav-bars {
  display: block;
  width: 0.42rem;
  height: 0.04rem;
  margin-top: 0.06rem;
  visibility: hidden;
}

.core-special-workshop__nav-bars img {
  display: block;
  width: 0.42rem;
  height: 0.04rem;
}

.core-special-workshop__nav-item.is-active .core-special-workshop__nav-bars {
  visibility: visible;
}

.core-special-workshop__panels {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.core-special-workshop__panel {
  box-sizing: border-box;
  height: 100%;
  padding: 0.3rem 0.24rem 0.26rem;
  background: #fff7f2;
  /* border-radius: 0.06rem; */
}

.core-special-workshop__panel[hidden] {
  display: none !important;
}

.core-special-workshop__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.16rem;
  margin-bottom: 0.3rem;
}

.core-special-workshop__panel-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.14rem;
  min-width: 0;
  flex: 1 1 auto;
}

.core-special-workshop__panel-icon {
  flex: 0 0 0.6rem;
  width: 0.6rem;
  height: 0.6rem;
  object-fit: contain;
}

.core-special-workshop__panel-titles--solo {
  padding-top: 0.04rem;
}

.core-special-workshop__panel-title {
  margin: 0 0 0.04rem;
  font-size: 0.24rem;
  font-weight: normal;
  line-height: normal;
  color: #333;
}

.core-special-workshop__panel-sub {
  margin: 0;
  font-size: 0.16rem;
  /* line-height: 0.2rem; */
  color: #999;
  color: #737581;
}

.core-special-workshop__panel-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  height: 0.32rem;
  padding: 0 0.14rem;
  border: 0.01rem solid #ff6600;
  border-radius: 0.16rem;
  font-size: 0.14rem;
  line-height: 1;
  color: #ff6600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.core-special-workshop__panel-btn:hover {
  background: #ff6600;
  color: #fff;
  text-decoration: none;
}

.core-special-workshop__panel-btn-ic {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.core-special-workshop__panel-btn:hover .core-special-workshop__panel-btn-ic {
  filter: brightness(0) invert(1);
}

.core-special-workshop__panel-desc h3 {
  margin: 0 0 0.04rem;
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.32rem;
  color: #333;
}

.core-special-workshop__panel-desc p {
  font-size: 0.14rem;
  line-height: 0.28rem;
  color: #333;
  margin-bottom: 0.12rem;
}

.core-special__side {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  min-height: 0;
}

.core-special-card {
  box-sizing: border-box;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.28rem 0.3rem 0.24rem;
  background: #fff;
  border-radius: 0.08rem;
  box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.06);
}

.core-special-card__title {
  margin: 0 0 0.15rem;
  font-size: 0.3rem;
  font-weight: normal;
  line-height: 0.32rem;
  color: #333;
}

.core-special-card__lead {
  margin: 0 0 0.1rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #999;
  color: #737581;
}

.core-special-card__box {
  flex: 1 1 auto;
  box-sizing: border-box;
  margin-bottom: 0.18rem;
  padding: 0.14rem 0.16rem;
  background: #f9f9f9;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #666;
}

.core-special-card .core-special-workshop__panel-btn {
  align-self: flex-start;
}

/* 核心服务页：价值交付 */
.core-value {
  box-sizing: border-box;
  /* height: 10.8rem; */
  padding: 0.8rem 0 1.5rem;
  background: #f5f3fa url(../images/coreservices-bg4.png) no-repeat center top;
  background-size: cover;
}

.core-value__wrap {
  box-sizing: border-box;
  width: 14rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.core-value__head {
  flex: 0 0 auto;
  margin-bottom: 0.5rem;
  text-align: center;
}

.core-value__title {
  margin: 0 0 0.16rem;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 0.48rem;
  color: #333;
}

.core-value__sub {
  margin: 0 auto;
  max-width: 10rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #999;
}

.core-value__grid {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  min-height: 0;
}

.core-value__row {
  display: grid;
  gap: 0.24rem;
}

.core-value__row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.core-value__row--2 {
  grid-template-columns: repeat(2, 1fr);
}

.core-value-card {
  box-sizing: border-box;
  padding: 0.33rem 0.17rem 0.42rem 0.46rem;
  background: #fff;
  border-radius: 0.08rem;
  box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.06);
}

.core-value-card__icon {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  margin-bottom: 0.24rem;
  object-fit: contain;
}

.core-value-card__title {
  margin: 0 0 0.26rem;
  font-size: 0.26rem;
  font-weight: normal;
  line-height: 0.3rem;
  color: #333;
  font-style: normal;
}

.core-value-card__em {
  font-style: normal;
  color: #ff6600;
}

.core-value-card__line {
  width: 0.32rem;
  height: 0.02rem;
  margin-bottom: 0.16rem;
  background: #ff6600;
  border-radius: 0.01rem;
}

.core-value-card__desc {
  margin: 0;
  font-size: 0.18rem;
  line-height: 1.5;
  color: #666;
}

/* 核心服务页：合作流程 */
.core-process {
  box-sizing: border-box;
  height: 10.24rem;
  padding: 1rem 0;
  background: #f9f7f4 url(../images/coreservices-bg5.png) no-repeat center top;
  background-size: cover;
}

.core-process__wrap {
  box-sizing: border-box;
  /* width: 14rem; */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.core-process__head {
  flex: 0 0 auto;
  margin-bottom: 0.4rem;
  text-align: center;
}

.core-process__title {
  margin: 0 0 0.12rem;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
}

.core-process__sub {
  margin: 0;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #999;
}

.core-process__track {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  /* min-height: 0; */
  width: 100%;
  /* transform: scale(0.915); */
  /* transform-origin: center center; */
}

.core-process__arrow {
  flex: 0 0 0.46rem;
  width: 0.46rem;
  height: 0.46rem;
  object-fit: contain;
}

.core-process-step {
  position: relative;
  flex: 0 0 3.42rem;
  width: 3.42rem;
  height: 3rem;
}

.core-process-step__back {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 2rem;
  height: 1.34rem;
  border-radius: 0.06rem;
  background: #ff6600;
  transform: translateX(-50%);
}

.core-process-step__front {
  position: absolute;
  top: 0.2rem;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  width: 3.42rem;
  height: 2.8rem;
  padding: 0.2rem 0.1rem;
  border: 0.02rem solid #fff;
  border-radius: 0.06rem;
  background: rgba(255, 248, 243, 0.6);
}

.core-process-step__head {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 0.56rem; */
  margin: 0 0 0.1rem;
  /* padding: 0 0.16rem; */
  /* border-radius: 0.04rem; */
  /* background: rgba(255, 102, 0, 0.12); */
  /* text-align: center; */
}

.core-process-step__num {
  font-size: 0.32rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  /* text-align: center; */
  font-family: DIN;
}

.core-process-step__title {
  margin: 0 0 0.38rem;
  font-size: 0.22rem;
  font-weight: normal;
  line-height: normal;
  color: #333;
  text-align: center;
}

.core-process-step__desc {
  margin: 0;
  font-size: 0.14rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

.core-process__foot {
  flex: 0 0 auto;
  margin-top: 0.36rem;
  text-align: center;
}

.core-process__lead {
  margin: 0 0 0.16rem;
  font-size: 0.24rem;
  font-weight: normal;
  /* line-height: 0.3rem; */
  color: #333;
}

.core-process__note {
  margin: 0 0 0.47rem;
  font-size: 0.16rem;
  /* line-height: 0.24rem; */
  color: #666;
}

.core-process__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  height: 0.48rem;
  padding: 0 0.08rem 0 0.24rem;
  border-radius: 0.24rem;
  background: #ff6600;
  font-size: 0.16rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.core-process__btn:hover {
  transform: translateY(-4px);
  text-decoration: none;
  color: #fff;
}

.core-process__btn img {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

/* 联系我们页 */
.contact-us-banner {
  height: 8.6rem;
}

.contact-us__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  box-sizing: border-box;
  /* width: 14rem; */
  transform: translate(-50%, -50%);
}

.contact-us__intro {
  margin-bottom: 0.36rem;
}

.contact-us__title {
  margin: 0 0 0.14rem;
  font-size: 0.48rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.contact-us__line {
  width: 0.6rem;
  height: 0.02rem;
  margin-bottom: 0.2rem;
  background: rgba(255, 255, 255, 0.85);
}

.contact-us__lead {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-us__panel {
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  width: 12.89rem;
  max-width: 100%;
  height: 2.6rem;
  padding: 0.28rem 0.32rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.15);
}

.contact-us__col {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 0.2rem;
  /* border-right: 0.01rem solid rgba(255, 255, 255, 0.12); */
}

.contact-us__col:first-child {
  padding-left: 0;
}

.contact-us__col:last-child {
  padding-right: 0;
  border-right: none;
}

.contact-us__qr {
  display: flex;
  align-items: center;
  gap: 0.14rem;
  height: 100%;
}

.contact-us__qr-img {
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.contact-us__qr-title {
  margin: 0 0 0.08rem;
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #fff;
}

.contact-us__qr-desc {
  margin: 0;
  font-size: 0.12rem;
  line-height: 0.2rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-us__col--contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
}

.contact-us__label {
  margin: 0 0 0.04rem;
  font-size: 0.12rem;
  line-height: 0.2rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-us__value {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #fff;
  text-decoration: none;
}

.contact-us__value:hover {
  color: #ff6600;
  text-decoration: none;
}

.contact-us__col--office {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-us__office-title {
  margin: 0 0 0.12rem;
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #fff;
}

.contact-us__office {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-us__loc {
  display: flex;
  align-items: flex-start;
  gap: 0.08rem;
}

.contact-us__flag {
  flex: 0 0 0.2rem;
  width: 0.2rem;
  height: 0.2rem;
  margin-top: 0.02rem;
  object-fit: contain;
}

.contact-us__loc-name {
  margin: 0 0 0.02rem;
  font-size: 0.12rem;
  line-height: 0.18rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-us__loc-addr {
  margin: 0;
  font-size: 0.11rem;
  line-height: 0.17rem;
  color: rgba(255, 255, 255, 0.65);
}

/* LINK™ 核心框架页 */
.link-fw-page {
  background: #fff;
}

.link-fw-hero {
  box-sizing: border-box;
  margin-top: 0.8rem;
  height: 6.6rem;
  padding: 0;
  overflow: hidden;
  background: #0a0f18;
}

.link-fw-hero__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.link-fw-hero__media {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("../images/operate-lbg.png") no-repeat center / cover
    rgb(255, 117, 26);
}

.link-fw-hero__video-wrapper {
  position: relative;
  width: 90%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.link-fw-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.link-fw-hero__video-poster {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/video-poster.png") no-repeat center / cover #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.link-fw-hero__video-poster.is-hidden {
  display: none;
}

.link-fw-hero__play-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-fw-hero__play-btn img {
  width: 0.46rem;
  height: 0.46rem;
  display: block;
}

.link-fw-hero__content {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.4rem 0.8rem 0.4rem 0.6rem;
  color: #fff;
  background: #0a0f18
    linear-gradient(
      135deg,
      rgba(255, 102, 0, 0.06) 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.03) 100%
    );
  position: relative;
}

.link-fw-hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 0.4rem,
      rgba(255, 255, 255, 0.02) 0.4rem,
      rgba(255, 255, 255, 0.02) 0.41rem
    ),
    repeating-linear-gradient(
      78deg,
      transparent,
      transparent 0.6rem,
      rgba(255, 102, 0, 0.04) 0.6rem,
      rgba(255, 102, 0, 0.04) 0.61rem
    );
  pointer-events: none;
}

.link-fw-hero__content > * {
  position: relative;
  z-index: 1;
}

.link-fw-hero__title {
  margin: 0 0 0.12rem;
  font-size: 0.44rem;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}

.link-fw-hero__sub {
  margin: 0 0 0.2rem;
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #ff6600;
}

.link-fw-hero__desc {
  margin: 0 0 0.28rem;
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: rgba(255, 255, 255, 0.72);
}

.link-fw-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  align-self: flex-start;
  padding: 0 0.2rem;
  height: 0.4rem;
  border: 0.01rem solid #ff6600;
  border-radius: 0.2rem;
  font-size: 0.14rem;
  line-height: 1;
  color: #ff6600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.link-fw-hero__cta:hover {
  background: #ff6600;
  color: #fff;
  text-decoration: none;
}

.link-fw-hero__cta:hover img {
  filter: brightness(0) invert(1);
}

.link-fw-section__head {
  margin: 0 0 0.4rem;
  text-align: center;
}

.link-fw-section__title {
  margin: 0;
  font-size: 0.4rem;
  font-weight: normal;
  line-height: normal;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 0.12rem;
}

.link-fw-section__head .link-fw-pillars__desc-list {
  margin-top: 0.24rem;
}

.link-fw-section__title::after {
  position: absolute;
  content: "";
  width: 0.45rem;
  height: 0.01rem;
  background: #aeaeae;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.link-fw-pillars {
  padding: 0.7rem 0 0.8rem;
  background: #f9f7f4 url(../images/coreservices-bg1.png) no-repeat center top;
  background-size: cover;
}

.link-fw-pillars__wrap {
  /* width: 14rem; */
  margin: 0 auto;
}

.link-fw-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.6rem;
}

.link-fw-pillar-card {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.24rem;
  border-radius: 0.12rem;
  background: #0f1623;
  color: #fff;
  cursor: pointer;
  text-align: center;
  height: 4.2rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.link-fw-pillar-card:hover {
  transform: translateY(-0.04rem);
  box-shadow: 0 0.12rem 0.32rem rgba(255, 102, 0, 0.15);
}

.link-fw-pillar-card:hover .link-fw-pillar-card__inner {
  opacity: 0;
  visibility: hidden;
}

.link-fw-pillar-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.link-fw-pillar-card__letter {
  margin-bottom: 0.12rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: #ff6600;
}

.link-fw-pillar-card__name {
  margin-bottom: 0.08rem;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 0.26rem;
}

.link-fw-pillar-card__tag {
  font-size: 0.16rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fw-pillar-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgb(2 9 78 / 90%);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.link-fw-pillar-card:hover .link-fw-pillar-card__overlay {
  transform: translateY(0);
}

.link-fw-pillar-card__overlay-content {
  padding: 0.25rem;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}

.link-fw-pillar-card__overlay-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.16rem;
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem solid #eee;
}

.link-fw-pillar-card__overlay-letter {
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ff6600;
  margin-bottom: 0.08rem;
}

.link-fw-pillar-card__overlay-name {
  font-size: 0.16rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.04rem;
}

.link-fw-pillar-card__overlay-tag {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
}

.link-fw-pillar-card__overlay-title {
  margin: 0 0 0.12rem;
  font-size: 0.18rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.link-fw-pillar-card__overlay-challenge {
  margin: 0 0 0.14rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
}

.link-fw-pillar-card__overlay-challenge strong {
  margin-bottom: 0.06rem;
  font-weight: 600;
  color: #fff;
}

.link-fw-pillar-card__overlay-solution {
  margin: 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.link-fw-pillar-card__overlay-solution strong {
  margin-bottom: 0.06rem;
  font-weight: 600;
  color: #fff;
}

.link-fw-pillars__desc {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.link-fw-pillars__desc-text {
  margin: 0 0 0.2rem;
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #333;
}

.link-fw-pillars__desc-list {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.24rem;
}

.link-fw-pillars__desc-list p {
  margin: 0;
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #555;
}

.link-fw-pillars__desc-bullet {
  color: #ff6600;
  margin-right: 0.06rem;
}

.link-fw-cases {
  padding: 0.6rem 0 0.5rem;
  background: #fff;
}

.link-fw-cases__wrap {
  /* width: 14rem; */
  margin: 0 auto;
}

.link-fw-cases .case-grid {
  margin-bottom: 0.36rem;
}

.link-fw-cases__foot {
  text-align: center;
}

.link-fw-cases__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0 0.22rem;
  height: 0.4rem;
  border: 0.01rem solid #ff6600;
  border-radius: 0.2rem;
  font-size: 0.14rem;
  color: #ff6600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.link-fw-cases__cta:hover {
  background: #ff6600;
  color: #fff;
  text-decoration: none;
}

.link-fw-cases__cta:hover img {
  filter: brightness(0) invert(1);
}

.link-fw-form.plan-lead {
  margin-top: 0;
}
