
/* ========== 全局变量 ========== */
.gh-page[data-v-b3816c9b] {
  --primary: #0a2b4e;
  --accent: #2c7da0;
  --highlight: #00b4d8;
  --gold: #f5a623;
  --purple: #8b5cf6;
  --orange: #f97316;
  --green: #10b981;
  --cyan: #06b6d4;
  --bg-light: #f0f4f8;
  --text-dark: #1a2332;
  --text-muted: #5a6a7e;
  overflow-x: hidden;
}

/* ========== Hero 区 ========== */
.hero-section[data-v-b3816c9b] {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  background: no-repeat center center / cover;
}
.hero-overlay[data-v-b3816c9b] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero-content[data-v-b3816c9b] {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 64px 32px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.hero-content.visible[data-v-b3816c9b] {
  opacity: 1;
  transform: translateY(0);
}
.hero-badges[data-v-b3816c9b] {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.badge[data-v-b3816c9b] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.badge-gold[data-v-b3816c9b] {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.25),
    rgba(245, 166, 35, 0.12)
  );
  border: 1.5px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
}
.badge-blue[data-v-b3816c9b] {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.2),
    rgba(0, 180, 216, 0.08)
  );
  border: 1.5px solid var(--highlight);
  color: var(--highlight);
}
.hero-title[data-v-b3816c9b] {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle[data-v-b3816c9b] {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 20px;
}
.hero-tags[data-v-b3816c9b] {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.tag[data-v-b3816c9b] {
  padding: 7px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.tag-highlight[data-v-b3816c9b] {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 700;
}
.hero-desc[data-v-b3816c9b] {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}
.hero-stats[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card[data-v-b3816c9b] {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  animation: statIn-b3816c9b 0.5s ease forwards;
  animation-delay: var(--sdelay);
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.stat-card[data-v-b3816c9b]:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
@keyframes statIn-b3816c9b {
to {
    opacity: 1;
    transform: translateY(0);
}
}
.stat-num[data-v-b3816c9b] {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label[data-v-b3816c9b] {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ========== 通用 Section ========== */
.section[data-v-b3816c9b] {
  padding: 84px 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.section.visible[data-v-b3816c9b] {
  opacity: 1;
  transform: translateY(0);
}
.section-inner[data-v-b3816c9b] {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header[data-v-b3816c9b] {
  text-align: center;
  margin-bottom: 48px;
}
.section-title[data-v-b3816c9b] {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-subtitle[data-v-b3816c9b] {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ========== 模块一：关于港虹 ========== */
.section-about[data-v-b3816c9b] {
  background: var(--bg-light);
}
.about-layout[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-subtitle[data-v-b3816c9b] {
  margin-bottom: 20px;
}
.about-text p[data-v-b3816c9b] {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.honors-wall[data-v-b3816c9b] {
  background: linear-gradient(135deg, var(--primary), #134a7a);
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
}
.honors-title[data-v-b3816c9b] {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.honors-grid[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.honor-item[data-v-b3816c9b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: scale(0.9);
  animation: honorIn-b3816c9b 0.4s ease forwards;
  animation-delay: var(--hdelay);
  transition:
    transform 0.3s,
    background 0.3s;
}
.honor-item[data-v-b3816c9b]:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
}
@keyframes honorIn-b3816c9b {
to {
    opacity: 1;
    transform: scale(1);
}
}
.honor-icon[data-v-b3816c9b] {
  font-size: 2rem;
}
.honor-name[data-v-b3816c9b] {
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

/* ========== 模块二：转型 ========== */
.section-transform[data-v-b3816c9b] {
  background: #fff;
}
.transform-layout[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.transform-bg-box[data-v-b3816c9b] {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-left: 5px solid var(--accent);
}
.transform-bg-box h3[data-v-b3816c9b] {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.transform-bg-box p[data-v-b3816c9b] {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.transform-quote[data-v-b3816c9b] {
  background: linear-gradient(
    135deg,
    rgba(44, 125, 160, 0.06),
    rgba(0, 180, 216, 0.04)
  );
  border-left: 4px solid var(--highlight);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
}
.transform-quote strong[data-v-b3816c9b] {
  color: var(--highlight);
  font-weight: 700;
}
.strategy-title[data-v-b3816c9b] {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}
.goal-radar[data-v-b3816c9b] {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 24px;
}
.radar-center[data-v-b3816c9b] {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  z-index: 3;
  box-shadow: 0 0 36px rgba(10, 43, 78, 0.3);
}
.radar-ring[data-v-b3816c9b] {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(44, 125, 160, 0.25);
}
.radar-ring-1[data-v-b3816c9b] {
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  animation: ringRotate-b3816c9b 20s linear infinite;
}
.radar-ring-2[data-v-b3816c9b] {
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  animation: ringRotate-b3816c9b 30s linear infinite reverse;
}
@keyframes ringRotate-b3816c9b {
to {
    transform: translate(-50%, -50%) rotate(360deg);
}
}
.radar-item[data-v-b3816c9b] {
  position: absolute;
  width: 70px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.section-transform.visible .radar-item[data-v-b3816c9b] {
  animation: radarItemIn-b3816c9b 0.4s ease forwards;
  animation-delay: var(--gdelay);
}
.radar-item .radar-label[data-v-b3816c9b] {
  padding: 6px 14px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0, 180, 216, 0.25);
}
@keyframes radarItemIn-b3816c9b {
to {
    opacity: 1;
}
}
.pos-1[data-v-b3816c9b] {
  top: 15px;
  left: 95px;
}
.pos-2[data-v-b3816c9b] {
  top: 84px;
  left: 185px;
}
.pos-3[data-v-b3816c9b] {
  top: 190px;
  left: 151px;
}
.pos-4[data-v-b3816c9b] {
  top: 190px;
  left: 39px;
}
.pos-5[data-v-b3816c9b] {
  top: 84px;
  left: 5px;
}
.strategy-list[data-v-b3816c9b] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strategy-list li[data-v-b3816c9b] {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.strategy-list strong[data-v-b3816c9b] {
  color: var(--accent);
}

/* ========== 模块三：六大系统 ========== */
.section-systems[data-v-b3816c9b] {
  background: var(--bg-light);
}
.systems-grid[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sys-card[data-v-b3816c9b] {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
  border-top: 4px solid transparent;
  opacity: 0;
  transform: translateY(24px);
  animation: cardRise-b3816c9b 0.55s ease forwards;
  animation-delay: var(--cdelay);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.sys-card[data-v-b3816c9b]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
@keyframes cardRise-b3816c9b {
to {
    opacity: 1;
    transform: translateY(0);
}
}
.sys-orange[data-v-b3816c9b] {
  border-top-color: var(--orange);
}
.sys-blue[data-v-b3816c9b] {
  border-top-color: var(--accent);
}
.sys-green[data-v-b3816c9b] {
  border-top-color: var(--green);
}
.sys-purple[data-v-b3816c9b] {
  border-top-color: var(--purple);
}
.sys-cyan[data-v-b3816c9b] {
  border-top-color: var(--cyan);
}
.sys-grey[data-v-b3816c9b] {
  border-top-color: #64748b;
}
.sys-icon[data-v-b3816c9b] {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.sys-title[data-v-b3816c9b] {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.sys-list[data-v-b3816c9b] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sys-list li[data-v-b3816c9b] {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--text-dark);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.sys-list li[data-v-b3816c9b]::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}
.systems-note[data-v-b3816c9b] {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 16px 24px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 10px;
  border: 1px dashed rgba(16, 185, 129, 0.25);
}

/* ========== 模块四：系统集成 ========== */
.section-integration[data-v-b3816c9b] {
  background: #fff;
}
.integration-layout[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}
.integ-card[data-v-b3816c9b] {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.integ-icon[data-v-b3816c9b] {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.integ-card h3[data-v-b3816c9b] {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.integ-tags[data-v-b3816c9b] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.integ-tag[data-v-b3816c9b] {
  padding: 6px 16px;
  border-radius: 8px;
  background: rgba(44, 125, 160, 0.08);
  border: 1px solid rgba(44, 125, 160, 0.18);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.integ-desc[data-v-b3816c9b] {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eef2f6;
}
.auto-vendors[data-v-b3816c9b] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.vendor-item[data-v-b3816c9b] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text-dark);
}
.vendor-flag[data-v-b3816c9b] {
  font-size: 1.1rem;
}
.vendor-name[data-v-b3816c9b] {
  font-weight: 500;
}
.auto-systems[data-v-b3816c9b] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.auto-tag[data-v-b3816c9b] {
  padding: 5px 13px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  font-size: 0.82rem;
  color: var(--purple);
}
.integ-arrow-wrap[data-v-b3816c9b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
}
.integ-arrow-svg[data-v-b3816c9b] {
  width: 80px;
  height: 26px;
  animation: arrowFlow-b3816c9b 2s ease-in-out infinite;
}
@keyframes arrowFlow-b3816c9b {
0%,
  100% {
    transform: translateX(0);
}
50% {
    transform: translateX(6px);
}
}
.integ-data-flow[data-v-b3816c9b] {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--highlight);
  white-space: nowrap;
}
.integ-value[data-v-b3816c9b] {
  margin-top: 36px;
  text-align: center;
}
.integ-value blockquote[data-v-b3816c9b] {
  background: linear-gradient(
    135deg,
    rgba(10, 43, 78, 0.04),
    rgba(0, 180, 216, 0.03)
  );
  border-left: 4px solid var(--gold);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}

/* ========== 模块五：数据中心 ========== */
.section-dashboard[data-v-b3816c9b] {
  background: var(--bg-light);
}
.dashboard-intro[data-v-b3816c9b] {
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto 36px;
}
.dashboard-intro strong[data-v-b3816c9b] {
  color: var(--accent);
  font-weight: 700;
}
.dashboard-kpis[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.kpi-card[data-v-b3816c9b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(16px);
  animation: kpiIn-b3816c9b 0.4s ease forwards;
  animation-delay: var(--kdelay);
  transition: transform 0.3s;
}
.kpi-card[data-v-b3816c9b]:hover {
  transform: translateY(-3px);
}
@keyframes kpiIn-b3816c9b {
to {
    opacity: 1;
    transform: translateY(0);
}
}
.kpi-icon[data-v-b3816c9b] {
  font-size: 1.6rem;
}
.kpi-name[data-v-b3816c9b] {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

/* 大屏模拟 */
.dashboard-mock[data-v-b3816c9b] {
  max-width: 900px;
  margin: 0 auto;
}
.mock-screen[data-v-b3816c9b] {
  background: linear-gradient(180deg, #0c1929 0%, #0a1624 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.screen-header[data-v-b3816c9b] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(0, 180, 216, 0.08);
  border-bottom: 1px solid rgba(0, 180, 216, 0.12);
}
.screen-title[data-v-b3816c9b] {
  color: var(--highlight);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.screen-time[data-v-b3816c9b] {
  color: rgba(0, 180, 216, 0.6);
  font-size: 0.8rem;
  font-family: monospace;
}
.screen-body[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
}
.chart-panel[data-v-b3816c9b] {
  background: rgba(0, 180, 216, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.panel-header[data-v-b3816c9b] {
  padding: 8px 10px;
  font-size: 0.75rem;
  color: rgba(0, 180, 216, 0.8);
  border-bottom: 1px solid rgba(0, 180, 216, 0.08);
  font-weight: 600;
}
.panel-chart[data-v-b3816c9b] {
  padding: 12px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bar-chart svg[data-v-b3816c9b] {
  width: 100%;
  height: 100%;
}
.line-chart svg[data-v-b3816c9b] {
  width: 100%;
  height: 100%;
}
.pie-chart[data-v-b3816c9b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
}
.pie-chart svg[data-v-b3816c9b] {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.pie-legend[data-v-b3816c9b] {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}
.legend-item[data-v-b3816c9b] {
  display: flex;
  align-items: center;
  gap: 3px;
}
.legend-dot[data-v-b3816c9b] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.dot-pass[data-v-b3816c9b] {
  background: #00b4d8;
}
.dot-fail[data-v-b3816c9b] {
  background: #f5a623;
}

/* ========== 模块六：成果 ========== */
.section-results[data-v-b3816c9b] {
  background: #fff;
}
.results-grid[data-v-b3816c9b] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.result-card[data-v-b3816c9b] {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  animation: resultCardIn-b3816c9b 0.5s ease forwards;
  animation-delay: var(--rdelay);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.result-card[data-v-b3816c9b]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}
@keyframes resultCardIn-b3816c9b {
to {
    opacity: 1;
    transform: translateY(0);
}
}
.result-icon[data-v-b3816c9b] {
  font-size: 2rem;
  margin-bottom: 10px;
}
.result-title[data-v-b3816c9b] {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.result-value[data-v-b3816c9b] {
  margin-bottom: 10px;
}
.value-num[data-v-b3816c9b] {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.value-unit[data-v-b3816c9b] {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  margin-left: 4px;
}
.result-desc[data-v-b3816c9b] {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.result-trend[data-v-b3816c9b] {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-trend.up[data-v-b3816c9b] {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}
.result-trend.down[data-v-b3816c9b] {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}
.testimonial[data-v-b3816c9b] {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(10, 43, 78, 0.04),
    rgba(245, 166, 35, 0.03)
  );
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 18px;
  padding: 32px 36px;
  position: relative;
}
.quote-mark[data-v-b3816c9b] {
  position: absolute;
  top: -12px;
  left: 28px;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-text[data-v-b3816c9b] {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 16px;
}
.quote-author[data-v-b3816c9b] {
  text-align: right;
}
.author-name[data-v-b3816c9b] {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

/* ========== CTA ========== */
.cta-section[data-v-b3816c9b] {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #0d3a66 50%,
    #0a2550 100%
  );
  padding: 76px 24px;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cta-section[data-v-b3816c9b]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(245, 166, 35, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 180, 216, 0.06) 0%,
      transparent 50%
    );
}
.cta-inner[data-v-b3816c9b] {
  position: relative;
  z-index: 1;
}
.cta-title[data-v-b3816c9b] {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-subtitle[data-v-b3816c9b] {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}
.cta-buttons[data-v-b3816c9b] {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn[data-v-b3816c9b] {
  padding: 14px 38px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cta-btn.primary[data-v-b3816c9b] {
  background: var(--highlight);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
}
.cta-btn.primary[data-v-b3816c9b]:hover {
  background: #00c5ee;
  box-shadow: 0 6px 28px rgba(0, 180, 216, 0.5);
  transform: translateY(-2px);
}
.cta-big[data-v-b3816c9b] {
  padding: 16px 52px;
  font-size: 1.1rem;
}
.cta-btn.secondary[data-v-b3816c9b] {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.cta-btn.secondary[data-v-b3816c9b]:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 166, 35, 0.08);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
.hero-section[data-v-b3816c9b] {
    min-height: auto;
    padding: 60px 24px;
}
.hero-title[data-v-b3816c9b] {
    font-size: 2.2rem;
}
.hero-stats[data-v-b3816c9b] {
    grid-template-columns: repeat(2, 1fr);
}
.about-layout[data-v-b3816c9b] {
    grid-template-columns: 1fr;
}
.transform-layout[data-v-b3816c9b] {
    grid-template-columns: 1fr;
}
.systems-grid[data-v-b3816c9b] {
    grid-template-columns: repeat(2, 1fr);
}
.integration-layout[data-v-b3816c9b] {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
}
.integ-arrow-wrap[data-v-b3816c9b] {
    transform: rotate(90deg);
    min-width: auto;
}
.results-grid[data-v-b3816c9b] {
    grid-template-columns: repeat(2, 1fr);
}
.dashboard-kpis[data-v-b3816c9b] {
    grid-template-columns: repeat(3, 1fr);
}
.screen-body[data-v-b3816c9b] {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.hero-title[data-v-b3816c9b] {
    font-size: 1.85rem;
}
.hero-subtitle[data-v-b3816c9b] {
    font-size: 1.15rem;
}
.section[data-v-b3816c9b] {
    padding: 56px 0;
}
.section-title[data-v-b3816c9b] {
    font-size: 1.6rem;
}
.hero-stats[data-v-b3816c9b] {
    grid-template-columns: 1fr 1fr;
}
.honors-grid[data-v-b3816c9b] {
    grid-template-columns: 1fr;
}
.goal-radar[data-v-b3816c9b] {
    width: 220px;
    height: 220px;
}
.systems-grid[data-v-b3816c9b] {
    grid-template-columns: 1fr;
}
.results-grid[data-v-b3816c9b] {
    grid-template-columns: 1fr;
}
.dashboard-kpis[data-v-b3816c9b] {
    grid-template-columns: repeat(2, 1fr);
}
.screen-body[data-v-b3816c9b] {
    grid-template-columns: 1fr;
}
.stat-num[data-v-b3816c9b] {
    font-size: 1.5rem;
}
.value-num[data-v-b3816c9b] {
    font-size: 2rem;
}
.testimonial[data-v-b3816c9b] {
    padding: 24px 20px;
}
}
@media (max-width: 480px) {
.hero-title[data-v-b3816c9b] {
    font-size: 1.55rem;
}
.hero-subtitle[data-v-b3816c9b] {
    font-size: 1rem;
}
.badge[data-v-b3816c9b] {
    font-size: 0.78rem;
    padding: 6px 14px;
}
.hero-tags[data-v-b3816c9b] {
    flex-direction: column;
}
.cta-title[data-v-b3816c9b] {
    font-size: 1.5rem;
}
.cta-big[data-v-b3816c9b] {
    padding: 14px 36px;
    font-size: 1rem;
}
.pos-1[data-v-b3816c9b] {
    top: -10px;
    left: 75px;
}
.pos-2[data-v-b3816c9b] {
    top: 84px;
    left: 170px;
}
.pos-3[data-v-b3816c9b] {
    top: 190px;
    left: 151px;
}
.pos-4[data-v-b3816c9b] {
    top: 190px;
    left: 10px;
}
.pos-5[data-v-b3816c9b] {
    top: 84px;
    left: -20px;
}
}
/* 回到顶部 */
.back-to-top[data-v-b3816c9b] {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 78, 162, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  outline: none;
}
.back-to-top.visible[data-v-b3816c9b] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top[data-v-b3816c9b]:hover {
  background: rgba(0, 78, 162, 1);
  box-shadow: 0 6px 20px rgba(0, 78, 162, 0.4);
  transform: translateY(-3px);
}
.back-to-top svg[data-v-b3816c9b] {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
.back-to-top[data-v-b3816c9b] {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
}
.back-to-top svg[data-v-b3816c9b] {
    width: 18px;
    height: 18px;
}
}
