﻿/* 织音引擎 · 企业级 B2B 落地页主题 */
:root {
  --zy-orange: #ff6a00;
  --zy-orange-deep: #e85d00;
  --zy-orange-soft: #fff4eb;
  --zy-dark: #1a1a1a;
  --zy-dark-2: #252525;
  --zy-text: #333333;
  --zy-muted: #666666;
  --zy-border: #e8e8e8;
  --zy-white: #ffffff;
  --zy-container: 1200px;
  --zy-header-h: 72px;
}

body.zy-mxq-theme {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--zy-text);
  background: var(--zy-white);
  -webkit-font-smoothing: antialiased;
}

body.zy-mxq-theme #wrapper {
  overflow-x: hidden;
}

body.zy-mxq-theme .tf-header,
body.zy-mxq-theme #goTop,
body.zy-mxq-theme .cursor-trail {
  display: none !important;
}

.zy-container {
  width: 100%;
  max-width: var(--zy-container);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .zy-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* —— 顶栏 —— */
.zy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--zy-header-h);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.zy-header.is-scrolled,
.zy-header--solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.zy-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--zy-header-h);
  gap: 1rem;
}

.zy-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none !important;
  color: var(--zy-dark) !important;
  flex-shrink: 0;
}

.zy-header__brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.zy-header__brand span {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.zy-header.is-scrolled .zy-header__brand span,
.zy-header--solid .zy-header__brand span {
  color: var(--zy-dark);
}

body.landing-page-home .zy-header:not(.is-scrolled):not(.zy-header--solid) .zy-header__brand span {
  color: #fff;
}

.zy-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .zy-nav {
    display: flex;
  }
}

.zy-nav a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9375rem;
  color: var(--zy-text);
  text-decoration: none !important;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

body.landing-page-home .zy-header:not(.is-scrolled):not(.zy-header--solid) .zy-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.zy-nav a:hover,
.zy-nav a.is-active {
  color: var(--zy-orange) !important;
}

.zy-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.zy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.zy-btn:hover {
  transform: translateY(-1px);
}

.zy-btn--primary {
  background: var(--zy-orange);
  color: #fff !important;
  border-color: var(--zy-orange);
}

.zy-btn--primary:hover {
  background: var(--zy-orange-deep);
  border-color: var(--zy-orange-deep);
  color: #fff !important;
}

.zy-btn--ghost {
  background: transparent;
  color: var(--zy-orange) !important;
  border-color: var(--zy-orange);
}

.zy-btn--ghost:hover {
  background: var(--zy-orange-soft);
}

.zy-btn--white-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.75);
}

.zy-btn--white-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

body.landing-page-home .zy-header:not(.is-scrolled):not(.zy-header--solid) .zy-btn--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.75);
}

.zy-btn--dark {
  background: var(--zy-dark);
  color: #fff !important;
  border-color: var(--zy-dark);
}

.zy-btn--dark:hover {
  background: #000;
  color: #fff !important;
}

.zy-header__menu-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--zy-border);
  border-radius: 8px;
  background: #fff;
  color: var(--zy-text);
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .zy-header__menu-toggle {
    display: none;
  }
}

/* —— Hero —— */
.zy-hero {
  position: relative;
  min-height: clamp(580px, 72vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--zy-header-h) + 3.5rem) 0 4.5rem;
  background-color: #87a8c4;
  background-image: var(--zy-hero-photo, none);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.zy-hero::before {
  display: none;
}

.zy-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.zy-hero__eyebrow {
  font-size: 1rem;
  margin-bottom: 1.15rem;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.zy-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.35);
}

.zy-hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 1.35rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.zy-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  font-size: 1rem;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.zy-hero__tags span:not(:last-child)::after {
  content: "|";
  margin-left: 0.75rem;
  opacity: 0.45;
}

.zy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.zy-page-hero {
  padding: calc(var(--zy-header-h) + 2.5rem) 0 2.5rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
  text-align: center;
  border-bottom: 1px solid var(--zy-border);
}

.zy-page-hero__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--zy-dark);
  margin-bottom: 0.75rem;
}

.zy-page-hero__desc {
  color: var(--zy-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* —— Section 通用 —— */
.zy-section {
  padding: 4rem 0;
}

.zy-section--gray {
  background: #f7f8fa;
}

.zy-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.zy-section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--zy-dark);
  margin-bottom: 0.65rem;
}

.zy-section__head p {
  color: var(--zy-muted);
  font-size: 0.9375rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* —— 三大数据源 —— */
body.zy-mxq-theme .zy-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  body.zy-mxq-theme .zy-data-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.zy-mxq-theme .zy-data-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--zy-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.zy-mxq-theme .zy-data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--zy-orange) 0%, #ffb347 100%);
  opacity: 0.85;
}

body.zy-mxq-theme .zy-data-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.28);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.12);
}

body.zy-mxq-theme .zy-data-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

body.zy-mxq-theme .zy-data-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--zy-orange-soft);
  color: var(--zy-orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
}

body.zy-mxq-theme .zy-data-card__num {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--zy-orange-deep);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

body.zy-mxq-theme .zy-data-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--zy-dark);
}

body.zy-mxq-theme .zy-data-card p {
  font-size: 0.875rem;
  color: var(--zy-muted);
  line-height: 1.7;
  margin: 0;
}

body.zy-mxq-theme .zy-data-card--fair::before {
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

body.zy-mxq-theme .zy-data-card--fair .zy-data-card__icon {
  background: #eff6ff;
  color: #1d4ed8;
}

body.zy-mxq-theme .zy-data-card--fair .zy-data-card__num {
  color: #1d4ed8;
}

body.zy-mxq-theme .zy-data-card--corp::before {
  background: linear-gradient(90deg, #059669 0%, #34d399 100%);
}

body.zy-mxq-theme .zy-data-card--corp .zy-data-card__icon {
  background: #ecfdf5;
  color: #047857;
}

body.zy-mxq-theme .zy-data-card--corp .zy-data-card__num {
  color: #047857;
}

/* —— 1+N 智能体 —— */
body.zy-mxq-theme .zy-agent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  body.zy-mxq-theme .zy-agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  body.zy-mxq-theme .zy-agent-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  body.zy-mxq-theme .zy-agent-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

body.zy-mxq-theme .zy-agent-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--zy-border);
  border-radius: 14px;
  padding: 1.35rem 1.15rem 1.25rem;
  height: 100%;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.zy-mxq-theme .zy-agent-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.1);
}

body.zy-mxq-theme .zy-agent-card__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--zy-orange) 0%, #ff8c3a 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.28);
}

body.zy-mxq-theme .zy-agent-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--zy-dark);
  line-height: 1.35;
}

body.zy-mxq-theme .zy-agent-card p {
  font-size: 0.8125rem;
  color: var(--zy-muted);
  line-height: 1.65;
  margin: 0;
}

/* —— 四步流程 —— */
body.zy-mxq-theme .zy-fta-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  body.zy-mxq-theme .zy-fta-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  body.zy-mxq-theme .zy-fta-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
  }

  body.zy-mxq-theme .zy-fta-flow__step {
    position: relative;
    border-radius: 0;
  }

  body.zy-mxq-theme .zy-fta-flow__step:first-child {
    border-radius: 12px 0 0 12px;
  }

  body.zy-mxq-theme .zy-fta-flow__step:last-child {
    border-radius: 0 12px 12px 0;
  }

  body.zy-mxq-theme .zy-fta-flow__step + .zy-fta-flow__step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--zy-orange);
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}

body.zy-mxq-theme .zy-fta-flow__step {
  text-align: center;
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
  border: 1px solid rgba(255, 106, 0, 0.12);
  border-radius: 12px;
  font-size: 0.8125rem;
  color: var(--zy-text);
  line-height: 1.55;
}

body.zy-mxq-theme .zy-fta-flow__step strong {
  display: block;
  color: var(--zy-orange-deep);
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

body.zy-mxq-theme .zy-fta-highlight {
  background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--zy-orange);
}

body.zy-mxq-theme .zy-fta-highlight h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zy-dark);
  margin-bottom: 1rem;
}

body.zy-mxq-theme .zy-fta-quote {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--zy-border);
  font-size: 0.875rem;
  color: var(--zy-muted);
  line-height: 1.75;
  margin: 0;
}

body.zy-mxq-theme .zy-fta-quote + .zy-fta-quote {
  margin-top: 0.75rem;
}

body.zy-mxq-theme .zy-fta-quote::before {
  content: "「";
  color: var(--zy-orange);
  font-weight: 700;
  margin-right: 0.15rem;
}

/* —— AI 干活 / 商家把控 —— */
body.zy-mxq-theme .zy-mode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  body.zy-mxq-theme .zy-mode-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

body.zy-mxq-theme .zy-mode-card {
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

body.zy-mxq-theme .zy-mode-card--ai {
  background: linear-gradient(145deg, #fff8f3 0%, #fff 55%);
  border: 1px solid rgba(255, 106, 0, 0.22);
}

body.zy-mxq-theme .zy-mode-card--human {
  background: #fff;
  border: 1px solid var(--zy-border);
}

body.zy-mxq-theme .zy-mode-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

body.zy-mxq-theme .zy-mode-card--ai .zy-mode-card__badge {
  background: var(--zy-orange-soft);
}

body.zy-mxq-theme .zy-mode-card--human .zy-mode-card__badge {
  background: #f0f4ff;
}

body.zy-mxq-theme .zy-mode-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--zy-dark);
}

body.zy-mxq-theme .zy-mode-card p {
  font-size: 0.875rem;
  color: var(--zy-muted);
  line-height: 1.75;
  margin: 0;
}

body.zy-mxq-theme .zy-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

body.zy-mxq-theme .zy-industry-tags span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(255, 106, 0, 0.2);
  color: var(--zy-orange-deep);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

body.zy-mxq-theme .zy-industry-tags span:hover {
  background: var(--zy-orange-soft);
}

/* —— 平台能力 Tab —— */
.zy-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--zy-border);
  padding-bottom: 0;
}

.zy-tab {
  padding: 0.75rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--zy-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.zy-tab:hover {
  color: var(--zy-orange);
}

.zy-tab.is-active {
  color: var(--zy-orange);
  border-bottom-color: var(--zy-orange);
}

.zy-panel {
  display: none;
}

.zy-panel.is-active {
  display: block;
}

.zy-feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--zy-border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

@media (min-width: 992px) {
  .zy-feature-card {
    grid-template-columns: 1fr 1fr;
    padding: 2.25rem;
  }
}

.zy-feature-card__visual {
  border-radius: 12px;
  background: linear-gradient(145deg, #f0f4f8 0%, #e8eef5 100%);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.zy-feature-card__visual img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.zy-feature-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--zy-dark);
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--zy-orange);
}

.zy-feature-card__desc {
  color: var(--zy-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.zy-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.zy-feature-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--zy-text);
  line-height: 1.55;
}

.zy-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zy-orange);
}

.zy-feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* —— 场景 Tab —— */
.zy-scenario-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--zy-border);
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

@media (min-width: 992px) {
  .zy-scenario-card {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 2rem;
  }
}

.zy-quote {
  background: var(--zy-orange-soft);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.zy-quote::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  left: 0.75rem;
  font-size: 2rem;
  color: var(--zy-orange);
  opacity: 0.35;
  line-height: 1;
}

.zy-quote p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--zy-text);
  padding-left: 1.25rem;
}

.zy-quote cite {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  color: var(--zy-muted);
  font-style: normal;
  padding-left: 1.25rem;
}

/* —— 信任背书 —— */
.zy-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .zy-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .zy-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.zy-trust-item {
  background: #fff;
  border: 1px solid var(--zy-border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.zy-trust-item:hover {
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.08);
  transform: translateY(-2px);
}

.zy-trust-item__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--zy-orange-soft);
  color: var(--zy-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
}

.zy-trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--zy-dark);
}

.zy-trust-item p {
  font-size: 0.8125rem;
  color: var(--zy-muted);
  line-height: 1.65;
  margin: 0;
}

/* —— 客户评价 —— */
.zy-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .zy-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zy-testimonial {
  background: #fff;
  border: 1px solid var(--zy-border);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
}

.zy-testimonial__stars {
  color: var(--zy-orange);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.zy-testimonial__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--zy-text);
  margin-bottom: 1rem;
}

.zy-testimonial__author {
  font-size: 0.8125rem;
  color: var(--zy-muted);
}

.zy-testimonial__author strong {
  display: block;
  color: var(--zy-dark);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* —— FAQ —— */
.zy-faq-item {
  border-bottom: 1px solid var(--zy-border);
}

.zy-faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--zy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.zy-faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--zy-orange);
  flex-shrink: 0;
}

.zy-faq-item.is-open .zy-faq-q::after {
  content: "−";
}

.zy-faq-a {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.875rem;
  color: var(--zy-muted);
  line-height: 1.75;
}

.zy-faq-item.is-open .zy-faq-a {
  display: block;
}

/* —— CTA 橙色带 —— */
.zy-cta-band {
  background: linear-gradient(135deg, var(--zy-orange) 0%, #ff8533 100%);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.zy-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.zy-cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .zy-cta-band__inner {
    grid-template-columns: 1fr auto;
  }
}

.zy-cta-band h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.zy-cta-band p {
  opacity: 0.92;
  margin: 0;
  font-size: 0.9375rem;
}

.zy-cta-band .zy-btn--dark {
  background: var(--zy-dark);
  border-color: var(--zy-dark);
}

/* —— 联系卡片 —— */
.zy-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .zy-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zy-contact-card {
  background: #fff;
  border: 1px solid var(--zy-border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.zy-contact-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.zy-contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--zy-orange-soft);
  color: var(--zy-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.zy-contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.zy-contact-card p {
  font-size: 0.875rem;
  color: var(--zy-muted);
  line-height: 1.65;
  margin: 0;
}

.zy-contact-card a {
  color: var(--zy-orange);
  text-decoration: none;
}

/* —— 关于页 —— */
.zy-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .zy-about-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.zy-about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef2f7, #dde4ed);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zy-about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.zy-about-text h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--zy-dark);
}

.zy-about-text p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--zy-muted);
  margin-bottom: 1rem;
}

.zy-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .zy-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.zy-value-card {
  background: #fff;
  border: 1px solid var(--zy-border);
  border-radius: 14px;
  padding: 1.5rem;
}

.zy-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zy-orange);
  margin-bottom: 0.65rem;
}

.zy-value-card p {
  font-size: 0.875rem;
  color: var(--zy-muted);
  line-height: 1.7;
  margin: 0;
}

.zy-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .zy-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.zy-stat {
  text-align: center;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--zy-border);
}

.zy-stat__num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--zy-orange);
  line-height: 1.2;
}

.zy-stat__label {
  font-size: 0.8125rem;
  color: var(--zy-muted);
  margin-top: 0.35rem;
}

/* —— 右侧浮动栏 —— */
.zy-float-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: none;
  flex-direction: column;
  background: var(--zy-orange);
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: -4px 0 16px rgba(255, 106, 0, 0.25);
}

@media (min-width: 992px) {
  .zy-float-bar {
    display: flex;
  }
}

.zy-float-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  padding: 0.65rem 0.4rem;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.65rem;
  line-height: 1.3;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.15s ease;
}

.zy-float-bar a:last-child {
  border-bottom: none;
}

.zy-float-bar a:hover {
  background: var(--zy-orange-deep);
}

.zy-float-bar a span:first-child {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

/* —— 深色页脚 —— */
.zy-footer {
  background: var(--zy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 0;
}

.zy-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .zy-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .zy-footer__grid {
    grid-template-columns: 1.4fr repeat(4, 1fr);
  }
}

.zy-footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.zy-footer__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.zy-footer__tagline {
  font-size: 0.8125rem;
  line-height: 1.65;
  max-width: 220px;
}

.zy-footer__col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.zy-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zy-footer__col li {
  margin-bottom: 0.45rem;
}

.zy-footer__col a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.15s ease;
}

.zy-footer__col a:hover {
  color: var(--zy-orange);
}

.zy-footer__phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--zy-orange) !important;
  display: block;
  margin-bottom: 0.5rem;
}

.zy-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.zy-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.zy-footer__legal a:hover {
  color: var(--zy-orange);
}

/* —— 移动端底栏保留 —— */
body.zy-mxq-theme .zhiyin-landing-mb-tabbar {
  border-top-color: var(--zy-border);
}

body.zy-mxq-theme .zhiyin-landing-mb-tab.is-active {
  color: var(--zy-orange) !important;
  background: var(--zy-orange-soft);
}

body.zy-mxq-theme .zhiyin-landing-mb-tab.is-active .icon {
  color: var(--zy-orange);
}

/* 隐藏旧页脚 */
body.zy-mxq-theme footer.zhiyin-footer-site {
  display: none !important;
}

#zyBackTop {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--zy-orange);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
  display: none;
}

@media (min-width: 992px) {
  #zyBackTop {
    bottom: 1.5rem;
    right: 4.5rem;
  }
}

@media (max-width: 991px) {
  .zy-hero {
    min-height: clamp(480px, 62vh, 640px);
    padding: calc(var(--zy-header-h) + 2.5rem) 0 3.5rem;
  }

  .zy-hero__tags span:not(:last-child)::after {
    display: none;
  }

  .zy-hero__tags {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* —— 移动端抽屉菜单 —— */
.offcanvas-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.offcanvas-menu.active,
.offcanvas-menu.show {
  opacity: 1;
  visibility: visible;
}

.offcanvas-content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--zy-dark);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.offcanvas-menu.active .offcanvas-content,
.offcanvas-menu.show .offcanvas-content {
  transform: translateX(0);
}

.offcanvas-content_wrapin {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.canvas_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.close-mb-menu {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.nav-ul-mb {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-ul-mb .mb-menu-link {
  display: block;
  padding: 0.85rem 0;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
