.home-body .cm-navbar {
  background: #fff;
}

.home-page {
  color: #07162c;
  background:
    radial-gradient(640px 480px at 4% 8%, rgba(22, 119, 255, .08), transparent 70%),
    radial-gradient(720px 540px at 98% 26%, rgba(125, 60, 255, .06), transparent 70%),
    radial-gradient(680px 520px at 2% 52%, rgba(0, 166, 216, .05), transparent 70%),
    radial-gradient(760px 560px at 96% 74%, rgba(22, 119, 255, .06), transparent 70%),
    radial-gradient(600px 460px at 50% 97%, rgba(125, 60, 255, .05), transparent 70%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 24%, #f7fbff 52%, #ffffff 78%, #f5f9ff 100%);
  overflow-x: clip;
}

.home-hero {
  --theme: #246bff;
  --theme-2: #743cff;
  --soft: rgba(22, 119, 255, .16);
  position: relative;
  overflow: visible;
  min-height: 760px;
  padding: 20px 0 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .74) 0 36%, rgba(255, 255, 255, .24) 36% 100%),
    radial-gradient(circle at 76% 18%, color-mix(in srgb, var(--theme-2) 24%, transparent), transparent 36%),
    linear-gradient(116deg, #eef8ff 0%, #f9fcff 47%, #eee8ff 100%);
  transition: background .55s ease;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .86;
  background:
    linear-gradient(110deg, transparent 0 10%, rgba(35, 113, 255, .08) 10.08% 10.24%, transparent 10.4% 100%),
    linear-gradient(110deg, transparent 0 25%, rgba(35, 113, 255, .06) 25.08% 25.24%, transparent 25.4% 100%),
    linear-gradient(110deg, transparent 0 63%, rgba(35, 113, 255, .11) 63.08% 63.28%, transparent 63.46% 100%),
    radial-gradient(circle at 46% 80%, rgba(255, 255, 255, .88), transparent 28%);
  transform: translateX(0);
  transition: transform .48s cubic-bezier(.2, .72, .18, 1), opacity .48s ease;
}

.home-hero.is-bg-left .home-hero-bg {
  animation: homeBgLeft .8s cubic-bezier(.2, .72, .18, 1);
}

.home-hero.is-bg-right .home-hero-bg {
  animation: homeBgRight .8s cubic-bezier(.2, .72, .18, 1);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
}

.home-hero::before {
  right: -9vw;
  top: 8%;
  width: 56vw;
  height: 56vw;
  min-width: 640px;
  min-height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--soft), transparent 62%);
}

.home-hero::after {
  left: -12vw;
  bottom: -28vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 184, 214, .16), transparent 64%);
}

.home-hero .container {
  position: relative;
  z-index: 1;
  max-width: 94%;
}

.home-hero>.container:last-child {
  position: static;
}

.home-hero-layout {
  display: grid;
  grid-template-columns: minmax(440px, .96fr) minmax(580px, 1.04fr);
  gap: clamp(52px, 3.8vw, 90px);
  align-items: center;
  min-height: 480px;
  margin: 0 auto;
  padding: 0;
}

/* 整页轮播：文字+图片作为一个页面整体同步滑进滑出 */
.home-hero-pages {
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 574px;
}

.home-hero-page {
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  padding: 38px 56px 56px;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 1.2s cubic-bezier(.16, .86, .22, 1);
}

.home-hero-page.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.home-hero-page.is-leaving-left,
.home-hero-page.is-leaving-right {
  visibility: visible;
  transition: none;
}

.home-hero-page.is-leaving-left {
  transform: translateX(-100%);
  animation: homeHeroLeaveLeft 1.2s cubic-bezier(.16, .86, .22, 1) both;
}

.home-hero-page.is-leaving-right {
  transform: translateX(100%);
  animation: homeHeroLeaveRight 1.2s cubic-bezier(.16, .86, .22, 1) both;
}

.home-hero-page.enter-from-left,
.home-hero-page.enter-from-right {
  z-index: 4;
  opacity: 1;
  visibility: visible;
  transition: none;
}

.home-hero-page.enter-from-left {
  transform: translateX(-100%);
}

.home-hero-page.enter-from-right {
  transform: translateX(100%);
}

.home-hero-page.enter-from-left.is-active,
.home-hero-page.enter-from-right.is-active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.home-hero-page.enter-from-left.is-active {
  animation: homeHeroEnterLeft 1.2s cubic-bezier(.16, .86, .22, 1) both;
}

.home-hero-page.enter-from-right.is-active {
  animation: homeHeroEnterRight 1.2s cubic-bezier(.16, .86, .22, 1) both;
}

@keyframes homeHeroEnterLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes homeHeroEnterRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes homeHeroLeaveLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes homeHeroLeaveRight {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

.home-hero-copy {
  position: relative;
  min-height: 324px;
}

.home-copy-slide {
  max-width: 620px;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--theme) 22%, transparent);
}

.home-hero-subtitle {
  width: max-content;
  max-width: 100%;
  margin: 14px 0 0;
  color: #246bff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero h1 {
  margin: 0;
  color: #07162c;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 900;
}

.home-hero-slogan {
  margin: 16px 0 0;
  color: #162a48;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 800;
}

.home-hero-desc {
  margin: 12px 0 0;
  color: #5c6e86;
  font-size: 16px;
  line-height: 1.85;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.home-btn-primary {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--theme) 28%, transparent);
}

.home-btn-primary:hover {
  color: #fff;
  box-shadow: 0 24px 46px color-mix(in srgb, var(--theme) 34%, transparent);
}

.home-btn-ghost {
  color: var(--theme);
  border: 1px solid color-mix(in srgb, var(--theme) 36%, transparent);
  background: rgba(255, 255, 255, .74);
}

.home-btn-ghost:hover {
  color: var(--theme);
  border-color: color-mix(in srgb, var(--theme) 70%, transparent);
  background: #fff;
}

.home-hero-visual {
  position: relative;
  min-height: 400px;
  overflow: visible;
}

.home-slider {
  box-sizing: border-box;
  position: relative;
  height: 400px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 34px 96px rgba(15, 54, 112, .22);
  opacity: 0;
  transform: translateX(62px);
  animation: heroVisualIn .72s cubic-bezier(.2, .72, .18, 1) .12s forwards;
}

.home-slider::before,
.home-slider::after {
  content: "";
  position: absolute;
  z-index: 1;
}

.home-slider::before {
  content: none;
}

.home-slider::after {
  content: none;
}

.home-slide {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.home-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.slide-orbit {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.slide-orbit i {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
}

.slide-orbit i:nth-child(1) {
  right: -20px;
  top: 48px;
  width: 100px;
  height: 100px;
}

.slide-orbit i:nth-child(2) {
  right: 90px;
  bottom: 52px;
  width: 110px;
  height: 110px;
}

.slide-orbit i:nth-child(3) {
  left: 54%;
  top: 58%;
  width: 84px;
  height: 84px;
}

.slide-kicker {
  position: relative;
  color: #68dcff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-slide h2 {
  position: relative;
  margin: 18px 0 16px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
}

.home-slide p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.8;
}

.slide-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.slide-grid span {
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, .11);
}

.home-play {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #e9f2ff 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .20);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.86);
  transition: opacity .24s ease, transform .24s ease;
}

.home-slider:hover .home-play,
.home-play.is-playing {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-play::before,
.home-play::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--theme) 34%, transparent);
  animation: playPulse 1.7s ease-out infinite;
}

.home-play::after {
  animation-delay: .45s;
}

.home-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--theme);
}

.home-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(7, 22, 44, .72);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.home-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.home-video-dialog {
  width: min(100%, 980px);
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 72px rgba(7, 22, 44, .36);
}

.home-video-dialog video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.home-video-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #07162c;
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 22, 44, .18);
}

.home-slider-dots {
  position: relative;
  z-index: 7;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
}

.home-slider-dots button {
  width: 30px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 119, 255, .18);
  transition: width .22s ease, background-color .22s ease;
}

.home-slider-dots button.is-active {
  width: 50px;
  background: var(--theme);
}

.home-business-cards {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 0;
  width: min(1760px, calc(100% - 144px));
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  transform: translate(-50%, 50%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .26);
  backdrop-filter: blur(26px) saturate(130%);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
  box-shadow: 0 24px 70px rgba(43, 94, 168, .15), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.business-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: center;
  min-height: 92px;
  padding: 16px 18px;
  color: #07162c;
  text-decoration: none;
  border-right: 1px solid rgba(43, 78, 128, .10);
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: box-shadow .24s ease, transform .24s ease;
}

.business-card>* {
  position: relative;
  z-index: 1;
}

.business-card:first-child {
  border-radius: 16px 0 0 16px;
}

.business-card:last-child {
  border-right: 0;
  border-radius: 0 16px 16px 0;
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme) 22%, transparent), color-mix(in srgb, var(--theme-2) 17%, transparent)),
    rgba(255, 255, 255, .38);
  opacity: 0;
  transition: opacity .24s ease;
}

.business-card::after {
  content: none;
}

.business-card:hover,
.business-card:focus,
.business-card:focus-visible {
  color: #07162c;
  box-shadow: 0 18px 44px rgba(30, 92, 180, .18), inset 0 1px 0 rgba(255, 255, 255, .72);
  text-decoration: none;
  transform: none;
}

.business-card:hover::before,
.business-card:focus::before,
.business-card:focus-visible::before {
  opacity: 1;
}

.business-card span {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: #fff;
  font-size: 16px;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--theme) 18%, transparent);
}

.business-card strong {
  align-self: end;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.business-card small {
  grid-column: 2;
  grid-row: 2;
  min-height: 20px;
  margin-top: 4px;
  color: #667891;
  font-size: 12px;
  line-height: 1.45;
  transition: opacity .2s ease, transform .2s ease;
}

.business-card b {
  position: absolute;
  z-index: 2;
  left: 72px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 26px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  opacity: 0;
  transition: opacity .24s ease;
}

.business-card b::after {
  content: ">";
  margin-left: 8px;
  font-size: 14px;
  line-height: 1;
}

.business-card:hover b,
.business-card:focus b,
.business-card:focus-visible b {
  opacity: 1;
}

.business-card:hover small,
.business-card:focus small,
.business-card:focus-visible small {
  opacity: 0;
}

.home-product-system {
  position: relative;
  overflow: hidden;
  padding: 180px 0 96px;
}

.home-product-system .container {
  position: relative;
  z-index: 1;
  max-width: 94%;
}

.home-product-head {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.home-product-head span {
  color: #246bff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-product-head h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 18px;
  overflow: hidden;
  border-radius: 14px;
  margin: 12px 0 14px;
  color: #07162c;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  isolation: isolate;
}

.home-product-head p {
  margin: 0;
  color: #64758b;
  font-size: 15px;
  line-height: 1.9;
}

.product-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-system-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #e2ecf9;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 46px rgba(43, 94, 168, .10);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.product-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(36, 107, 255, .08), rgba(125, 60, 255, .07));
  opacity: 0;
  transition: opacity .24s ease;
}

.product-system-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 119, 255, .4);
  background: #fff;
  box-shadow: 0 30px 64px rgba(43, 94, 168, .18);
}

.product-system-card:hover::before {
  opacity: 1;
}

.product-system-card>* {
  position: relative;
  z-index: 1;
}

.product-card-title {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.product-card-title h3 {
  margin: 0;
  color: #07162c;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.product-card-title em {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 7px;
  border-radius: 3px;
  color: #fff;
  background: #ff4d4f;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}

.product-card-tags span {
  padding: 4px 10px;
  border: 1px solid #e2ecf9;
  border-radius: 6px;
  color: #64758b;
  background: rgba(246, 249, 255, .82);
  font-size: 12px;
  line-height: 1.4;
}

.product-system-card p {
  min-height: 58px;
  margin: 0;
  color: #667891;
  font-size: 14px;
  line-height: 1.8;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.product-card-actions a {
  min-width: 108px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #246bff 0%, #743cff 100%);
  box-shadow: 0 10px 24px rgba(36, 107, 255, .22);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s ease, color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-card-actions a:hover {
  color: #fff;
  box-shadow: 0 16px 32px rgba(36, 107, 255, .3);
  text-decoration: none;
  transform: translateY(-2px);
}

@keyframes homeBgLeft {
  0% {
    transform: translateX(0);
    opacity: .86;
  }

  46% {
    transform: translateX(-4.5%);
    opacity: .58;
  }

  100% {
    transform: translateX(0);
    opacity: .86;
  }
}

@keyframes homeBgRight {
  0% {
    transform: translateX(0);
    opacity: .86;
  }

  46% {
    transform: translateX(4.5%);
    opacity: .58;
  }

  100% {
    transform: translateX(0);
    opacity: .86;
  }
}

@keyframes heroVisualIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes homeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes playPulse {
  0% {
    opacity: .8;
    transform: scale(.82);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes titleBorderLight {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 1199.98px) {
  .home-hero {
    padding-top: 18px;
    padding-bottom: 48px;
  }

  .home-hero-pages {
    min-height: 824px;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 0;
  }

  .home-hero-page {
    padding: 26px 38px 38px;
  }

  .home-hero-copy {
    min-height: 318px;
  }

  .home-hero h1 {
    font-size: 38px;
  }

  .home-business-cards {
    position: static;
    width: auto;
    margin: 72px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none;
  }

  .business-card {
    border-radius: 0;
  }

  .business-card:nth-child(3n) {
    border-right: 0;
  }

  .business-card:first-child {
    border-radius: 16px 0 0 0;
  }

  .business-card:nth-child(2) {
    border-radius: 0;
  }

  .business-card:nth-child(3) {
    border-radius: 0 16px 0 0;
  }

  .home-product-system {
    padding: 96px 0 76px;
  }

  .product-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .home-hero {
    min-height: auto;
    padding: 24px 0 36px;
    overflow: hidden;
  }

  .home-hero-pages {
    min-height: 668px;
  }

  .home-hero-layout {
    gap: 24px;
  }

  .home-hero-page {
    padding: 18px 24px 24px;
  }

  .home-hero-copy {
    min-height: 334px;
  }

  .home-hero-eyebrow {
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .home-hero-subtitle {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .home-hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .home-hero-slogan {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-hero-desc {
    font-size: 14px;
    line-height: 1.8;
  }

  .home-hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .home-btn {
    min-width: 124px;
    height: 44px;
    padding: 0 20px;
    font-size: 15px;
  }

  .home-hero-visual {
    min-height: auto;
  }

  .home-slider {
    height: 260px;
    border-radius: 18px;
  }

  .home-slide {
    inset: 0;
  }

  .home-slide h2 {
    font-size: 32px;
  }

  .home-slide p {
    font-size: 15px;
  }

  .slide-grid {
    grid-template-columns: 1fr;
  }

  .home-play {
    width: 62px;
    height: 62px;
  }

  .home-slider-dots {
    margin: 18px auto 20px;
  }

  .home-business-cards {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .business-card {
    min-height: 112px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(32, 78, 138, .10);
  }

  .business-card,
  .business-card:first-child,
  .business-card:nth-child(2),
  .business-card:last-child {
    border-radius: 14px;
  }

  .business-card:last-child {
    border-bottom: 0;
  }

  .home-product-system {
    padding: 72px 0 66px;
  }

  .home-product-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .home-product-head h2 {
    font-size: 30px;
  }

  .home-product-head p {
    font-size: 14px;
  }

  .product-system-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-system-card {
    min-height: auto;
    padding: 20px;
  }

  .product-system-card p {
    min-height: auto;
  }

  .product-card-actions a {
    flex: 1 1 auto;
  }
}

/* 行业解决方案轮播 */
.home-solutions {
  --theme: #246bff;
  --theme-2: #743cff;
  position: relative;
  overflow: hidden;
  padding: 76px 0 96px;
}

.home-solutions .container {
  position: relative;
  z-index: 1;
  max-width: 94%;
}

.home-solutions-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.home-solutions-head span {
  color: #246bff;
  font-size: 14px;
  font-weight: 900;
}

.home-solutions-head h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 18px;
  overflow: hidden;
  border-radius: 14px;
  margin: 12px 0 14px;
  color: #07162c;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  isolation: isolate;
}

.home-solutions-head p {
  margin: 0;
  color: #64758b;
  font-size: 15px;
  line-height: 1.9;
}

/* 行业解决方案 - 五卡聚焦（可滑动选择更多） */
.solutions-stage {
  position: relative;
  z-index: 1;
  margin-top: 46px;
}

.solutions-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  color: #246bff;
  font-size: 17px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(43, 94, 168, .22);
  cursor: pointer;
  transition: opacity .24s ease, color .24s ease, background-color .24s ease, transform .24s ease;
}

.solutions-arrow:hover {
  color: #fff;
  background: #246bff;
  transform: scale(1.06);
}

.solutions-arrow.is-disabled {
  opacity: .32;
  pointer-events: none;
}

.solutions-arrow-prev {
  left: -26px;
}

.solutions-arrow-next {
  right: -26px;
}

.solutions-showcase {
  --solutions-card-scale: 1.18;
  --solutions-card-gap: 18px;
  --solutions-active-gap: 42px;
  position: relative;
  display: flex;
  gap: var(--solutions-card-gap);
  overflow: hidden;
  /* 上下留出选中卡放大的空间，左右内边距保持放大后不贴边。 */
  padding: 58px 54px;
  cursor: grab;
  user-select: none;
}

.solutions-showcase.is-dragging {
  cursor: grabbing;
}

.solutions-showcase .solution-card {
  flex: 0 0 auto;
  min-width: 0;
  width: calc((100% - (var(--solutions-card-gap) * 4) - (var(--solutions-active-gap) * 2)) / 5);
  margin-inline: 0;
  height: 400px;
  transform-origin: center;
  transition: margin .45s cubic-bezier(.22, .72, .2, 1), transform .45s cubic-bezier(.22, .72, .2, 1), box-shadow .3s ease, border-color .3s ease;
}

/* 中间选中卡放大（scale 不影响布局，下方按钮位置不动） */
.solutions-showcase .solution-card.is-active {
  z-index: 2;
  margin-inline: var(--solutions-active-gap);
  transform: scale(var(--solutions-card-scale));
  border-color: rgba(22, 119, 255, .4);
  box-shadow: 0 38px 76px rgba(43, 94, 168, .26);
}

/* 悬停其他卡时，选中卡让位 */
.solutions-showcase:hover .solution-card.is-active:not(:hover) {
  z-index: 1;
  margin-inline: 0;
  transform: none;
  border-color: rgba(190, 214, 245, .7);
  box-shadow: 0 16px 40px rgba(43, 94, 168, .10);
}

.solutions-showcase .solution-card:hover {
  z-index: 2;
  margin-inline: var(--solutions-active-gap);
  transform: scale(var(--solutions-card-scale));
  border-color: rgba(22, 119, 255, .4);
  box-shadow: 0 38px 76px rgba(43, 94, 168, .26);
}

.solution-card {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  height: 390px;
  overflow: hidden;
  border: 1px solid rgba(190, 214, 245, .7);
  border-radius: 18px;
  background: linear-gradient(180deg, #eef6ff 0%, #e1efff 100%);
  box-shadow: 0 16px 40px rgba(43, 94, 168, .10);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.solution-card:hover {
  z-index: 3;
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(22, 119, 255, .45);
  box-shadow: 0 38px 76px rgba(43, 94, 168, .26);
  text-decoration: none;
}

.solution-card-info {
  position: relative;
  z-index: 2;
  padding: 24px 22px 0;
}

.solution-card-info h3 {
  margin: 0;
  color: #07162c;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.solution-card-info p {
  margin: 12px 0 0;
  color: #5c6e86;
  font-size: 14px;
  line-height: 1.75;
}

.solution-card-media {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
}

.solution-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.solution-card:hover .solution-card-media img {
  transform: scale(1.08);
}

.solutions-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

@media (max-width: 1199.98px) {
  .home-solutions {
    padding: 64px 0 76px;
  }
}

@media (max-width: 767.98px) {
  .home-solutions {
    padding: 56px 0 66px;
  }

  .home-solutions-head {
    text-align: left;
  }

  .home-solutions-head h2 {
    font-size: 30px;
  }

  .home-solutions-head p {
    font-size: 14px;
  }

  .solutions-stage {
    margin-top: 30px;
  }

  .solutions-showcase {
    --solutions-card-scale: 1.04;
    --solutions-active-gap: 0px;
    gap: 14px;
    padding: 24px 8px;
  }

  .solutions-showcase .solution-card {
    width: 66vw;
    height: 320px;
  }

  .solutions-arrow {
    display: none;
  }

  .solution-card-info {
    padding: 24px 22px 0;
  }

  .solution-card-info h3 {
    font-size: 19px;
  }

  .solutions-actions {
    margin-top: 28px;
  }
}

/* 客户案例 - 悬停展开 */
.home-cases {
  position: relative;
  overflow: hidden;
  padding: 76px 0 96px;
}

.home-cases .container {
  position: relative;
  z-index: 1;
  max-width: 94%;
}

.home-cases-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.home-cases-head span {
  color: #246bff;
  font-size: 14px;
  font-weight: 900;
}

.home-cases-head h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 18px;
  overflow: hidden;
  border-radius: 14px;
  margin: 12px 0 14px;
  color: #07162c;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  isolation: isolate;
}

.home-cases-head p {
  margin: 0;
  color: #64758b;
  font-size: 15px;
  line-height: 1.9;
}

.cases-track {
  display: flex;
  gap: 16px;
  height: 440px;
  margin-top: 46px;
  transition: filter .18s ease;
}

/* 大卡区固定显示 3 张，窗口切换时快速淡出换窗 */
.cases-track.is-switching {
  filter: opacity(0);
}

.case-card.is-hidden {
  display: none;
}

.case-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(43, 94, 168, .14);
  cursor: pointer;
  text-decoration: none;
  transition: flex-grow .55s cubic-bezier(.22, .72, .2, 1), box-shadow .3s ease;
}

.case-card:hover {
  text-decoration: none;
}

.case-card.is-active {
  flex-grow: 2.8;
  box-shadow: 0 28px 64px rgba(43, 94, 168, .24);
}

.case-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .45s ease;
}

.case-card:not(.is-active) .case-card-bg {
  filter: blur(3px) saturate(.92) brightness(.9);
}

.case-card.is-active .case-card-bg {
  transform: scale(1.04);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 44, .16) 0%, rgba(7, 22, 44, .42) 52%, rgba(7, 22, 44, .8) 100%);
  opacity: 1;
  transition: opacity .45s ease;
}

.case-card.is-active::after {
  opacity: .52;
}

.case-card-body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 340px;
  padding: 26px 28px 24px;
  color: #fff;
}

.case-card-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: rgba(255, 255, 255, .94);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.case-card-body h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

.case-card-more {
  margin-top: 14px;
  opacity: 0;
  transform: translateY(14px);
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.case-card.is-active .case-card-more {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition-delay: .22s;
}

.case-card-more p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card-more a,
.case-card-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color .22s ease, gap .22s ease;
}

.case-card-more a:hover,
.case-card:hover .case-card-more-link {
  color: #9ec5ff;
  gap: 12px;
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .home-cases {
    padding: 64px 0 76px;
  }

  .cases-track {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .home-cases {
    padding: 56px 0 66px;
  }

  .home-cases-head {
    text-align: left;
  }

  .home-cases-head h2 {
    font-size: 30px;
  }

  .home-cases-head p {
    font-size: 14px;
  }

  .cases-track {
    flex-direction: column;
    gap: 14px;
    height: 660px;
    margin-top: 30px;
  }

  .case-card-body {
    min-width: 0;
    padding: 20px 22px;
  }

  .case-card-body h3 {
    font-size: 19px;
  }
}

/* 客户案例 - 概览缩略条 */
.cases-thumbs {
  position: relative;
  display: flex;
  gap: 14px;
  /* 只占中间一半宽度，超出可滑动 */
  max-width: 50%;
  margin: 44px auto 0;
  /* 纵向内边距容纳选中卡上浮放大，避免被溢出裁切 */
  padding: 12px 2px 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

/* 内容不足一屏时居中显示；超出时 auto 边距收 0，从左正常滚动 */
.cases-thumbs::before,
.cases-thumbs::after {
  content: "";
  margin: auto;
}

.cases-thumbs::-webkit-scrollbar {
  display: none;
}

.cases-thumbs.is-dragging {
  cursor: grabbing;
}

.case-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 150px;
  height: 72px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #0d1b2e;
  box-shadow: 0 10px 26px rgba(43, 94, 168, .12);
  cursor: pointer;
  opacity: .72;
  transition: opacity .24s ease, border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.case-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 44, .05) 0%, rgba(7, 22, 44, .62) 100%);
  pointer-events: none;
}

.case-thumb span {
  position: absolute;
  z-index: 1;
  left: 8px;
  right: 8px;
  bottom: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-thumb:hover {
  opacity: .9;
}

.case-thumb.is-active {
  z-index: 2;
  opacity: 1;
  border-color: #246bff;
  transform: translateY(-4px) scale(1.14);
  box-shadow: 0 16px 34px rgba(36, 107, 255, .26);
}

@media (max-width: 767.98px) {
  .cases-thumbs {
    gap: 10px;
    max-width: 100%;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .case-thumb {
    width: 132px;
    height: 64px;
  }

  .case-thumb span {
    font-size: 12px;
  }
}

/* 合作伙伴 Logo 跑马灯（客户案例模块内） */
.partners-head {
  max-width: 720px;
  margin: 64px auto 0;
  text-align: center;
}

.partners-head span {
  color: #246bff;
  font-size: 14px;
  font-weight: 900;
}

.partners-head h3 {
  margin: 10px 0 12px;
  color: #07162c;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}

.partners-head p {
  margin: 0;
  color: #64758b;
  font-size: 15px;
  line-height: 1.9;
}

.partners-marquee {
  display: flex;
  column-gap: 20px;
  overflow: hidden;
  margin-top: 40px;
  padding: 6px 0;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.partners-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.partners-set {
  flex: 0 0 auto;
  display: grid;
  gap: 20px;
}

.partners-row {
  display: flex;
  gap: 20px;
}

.partners-row-stagger {
  transform: translateX(110px);
}

.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  height: 88px;
  border: 1px solid #e6eef9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(43, 94, 168, .08);
  user-select: none;
  transition: box-shadow .24s ease;
}

.partner-logo:hover {
  box-shadow: 0 16px 36px rgba(43, 94, 168, .14);
}

.partner-logo i {
  flex: 0 0 auto;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 4px;
}

.partner-logo span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1px;
  white-space: nowrap;
}

.partner-logo small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: .55;
}

@media (max-width: 767.98px) {
  .partners-head {
    margin-top: 44px;
    text-align: left;
  }

  .partners-head h3 {
    font-size: 22px;
  }

  .partners-head p {
    font-size: 14px;
  }

  .partners-marquee {
    margin-top: 28px;
  }

  .partners-set {
    gap: 14px;
  }

  .partners-row {
    gap: 14px;
  }

  .partners-row-stagger {
    transform: translateX(83px);
  }

  .partner-logo {
    width: 152px;
    height: 68px;
    border-radius: 10px;
  }

  .partner-logo span {
    font-size: 15px;
  }

  .partner-logo small {
    font-size: 9px;
  }
}

/* 新闻资讯 */
.home-news {
  position: relative;
  overflow: hidden;
  padding: 58px 0 72px;
}

.home-news .container {
  position: relative;
  z-index: 1;
  max-width: 94%;
}

.home-news-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.home-news-head span {
  color: #246bff;
  font-size: 14px;
  font-weight: 900;
}

.home-news-head h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 18px;
  overflow: hidden;
  border-radius: 14px;
  margin: 10px 0 10px;
  color: #07162c;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  isolation: isolate;
}

.home-news-head p {
  margin: 0;
  color: #64758b;
  font-size: 15px;
  line-height: 1.9;
}

.home-product-head span,
.home-solutions-head span,
.home-cases-head span,
.home-news-head span {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 16px;
  overflow: hidden;
  border-radius: 999px;
  color: #246bff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  isolation: isolate;
}

.home-product-head span::before,
.home-solutions-head span::before,
.home-cases-head span::before,
.home-news-head span::before {
  content: "";
  position: absolute;
  inset: -90%;
  z-index: -2;
  background: conic-gradient(from 0deg, transparent 0 72%, rgba(36, 107, 255, .82) 77%, rgba(125, 60, 255, .9) 83%, transparent 91%);
  animation: titleBorderLight 3.4s linear infinite;
}

.home-product-head span::after,
.home-solutions-head span::after,
.home-cases-head span::after,
.home-news-head span::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 0 0 0 1px rgba(36, 107, 255, .14);
}

.home-product-head h2,
.home-solutions-head h2,
.home-cases-head h2,
.home-news-head h2 {
  display: block;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  font-size: 34px;
  isolation: auto;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
}

/* 左侧 2x2 预览图 */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: stretch;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2ecf9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(43, 94, 168, .09);
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 119, 255, .4);
  box-shadow: 0 24px 52px rgba(43, 94, 168, .16);
  text-decoration: none;
}

.news-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 8;
}

.news-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.06);
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 16px 15px;
}

.news-card-body h3 {
  margin: 0;
  color: #07162c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .24s ease;
}

.news-card-body .news-meta {
  padding-top: 10px;
}

.news-card:hover h3,
.news-item:hover h3 {
  color: #246bff;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  color: #8a99ad;
  font-size: 13px;
}

.news-meta span {
  color: #246bff;
  font-weight: 700;
}

.news-meta time {
  position: relative;
  padding-left: 12px;
}

.news-meta time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c6d4e6;
  transform: translateY(-50%);
}

.news-list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 4px;
  max-height: none;
  overflow: visible;
}

.news-list-items {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  max-height: none;
  overflow: visible;
}

.news-item {
  padding: 13px 14px;
  border-bottom: 1px solid #e8f0fa;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item:hover {
  background: #fff;
  box-shadow: 0 12px 28px rgba(43, 94, 168, .12);
  transform: translateX(4px);
  text-decoration: none;
}

.news-item-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.news-item h3 {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #07162c;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .24s ease;
}

.news-item-head time {
  flex: 0 0 auto;
  color: #8a99ad;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.news-item .news-meta {
  margin-top: 6px;
  padding-top: 0;
  font-size: 14px;
}

.news-more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 40px;
  margin-top: auto;
  padding: 0 22px;
  border: 1px solid rgba(36, 107, 255, .4);
  border-radius: 8px;
  color: #246bff;
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  text-decoration: none;
  transition: color .24s ease, background-color .24s ease, border-color .24s ease, transform .24s ease;
}

.news-more:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #246bff 0%, #743cff 100%);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .home-news {
    padding: 56px 0 68px;
  }

  .news-layout {
    grid-template-columns: 1fr 1fr;
  }

  .news-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .home-news {
    padding: 48px 0 58px;
  }

  .home-news-head {
    text-align: left;
  }

  .home-news-head h2 {
    font-size: 30px;
  }

  .home-news-head p {
    font-size: 14px;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }

  .news-feature-body h3 {
    font-size: 18px;
  }

  .news-grid {
    gap: 12px;
  }

  .news-card-body {
    padding: 10px 12px 12px;
  }

  .news-card-body h3 {
    font-size: 13px;
  }

  .news-item h3 {
    font-size: 17px;
  }
}

/* 公司荣誉资质（新闻模块内） */
.honors-marquee {
  display: flex;
  column-gap: 72px;
  overflow: hidden;
  margin-top: 64px;
  padding: 10px 0;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.honors-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.honors-set {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 72px;
}

.honor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.honor-badge {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 2px solid transparent;
  border-radius: 50%;
  color: #246bff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .5px;
  background:
    linear-gradient(#f4f9ff, #e8f1ff) padding-box,
    linear-gradient(135deg, #246bff, #743cff) border-box;
  box-shadow: 0 10px 22px rgba(36, 107, 255, .16);
  transition: transform .26s ease, box-shadow .26s ease;
}

.honor-badge::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(36, 107, 255, .35);
  border-radius: 50%;
}

.honor-badge-en {
  font-size: 12px;
}

.honor-item:hover .honor-badge {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 30px rgba(36, 107, 255, .24);
}

.honor-name {
  color: #2a3b52;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1199.98px) {
  .honors-marquee {
    column-gap: 52px;
    margin-top: 52px;
  }

  .honors-set {
    gap: 52px;
  }
}

@media (max-width: 767.98px) {
  .honors-marquee {
    column-gap: 36px;
    margin-top: 40px;
  }

  .honors-set {
    gap: 36px;
  }

  .honor-badge {
    width: 50px;
    height: 50px;
    font-size: 13px;
  }

  .honor-badge-en {
    font-size: 11px;
  }

  .honor-name {
    font-size: 13px;
  }
}

/* 滚动加载动效 */
.reveal-init {
  opacity: 0;
}

.reveal-init.is-revealed {
  animation: revealUp .72s cubic-bezier(.16, .8, .24, 1) both;
}

.reveal-init.reveal-zoom.is-revealed {
  animation-name: revealZoom;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes revealZoom {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* 宽屏适配：内容区 90% 宽度下避免卡片过宽 */
@media (min-width: 1700px) {
  .product-system-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
