
/* ========== CSS 变量 ========== */
.xx-page[data-v-1190c2de] {
  --primary: #0a2b4e;
  --secondary: #2c7da0;
  --accent: #00b4d8;
  --highlight: #00B4D8;
  --gold: #f5a623;
  --green: #2e7d32;
  --cyan: #00bcd4;
  --orange: #e65100;
  --bg-white: #FFFFFF;
  --bg-light: #F5F7FA;
  --bg-section: #F8F9FA;
  --text-dark: #1a2332;
  --text-secondary: #4A5568;
  --text-muted: #5a6a7e;
  --border: #E2E8F0;
  overflow-x: hidden;
}

/* ========== Hero ========== */
.hero-section[data-v-1190c2de] {
  position: relative;
  min-height: 760px;
  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-1190c2de] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero-content[data-v-1190c2de] {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 64px 32px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-content.visible[data-v-1190c2de] {
  opacity: 1;
  transform: translateY(0);
}
.hero-badges[data-v-1190c2de] {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.badge[data-v-1190c2de] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-dark[data-v-1190c2de] {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}
.badge-orange[data-v-1190c2de] {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.15));
  color: #ffd54f;
  border: 1px solid rgba(245, 166, 35, 0.4);
}
.badge-gold[data-v-1190c2de] {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 180, 216, 0.15));
  color: #00e5ff;
  border: 1px solid rgba(0, 188, 212, 0.4);
}
.hero-title[data-v-1190c2de] {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero-subtitle[data-v-1190c2de] {
  font-size: 1.45rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-stats[data-v-1190c2de] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-card[data-v-1190c2de] {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  animation: statIn-1190c2de 0.5s ease forwards;
  animation-delay: var(--sdelay);
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card[data-v-1190c2de]:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.stat-highlight[data-v-1190c2de] {
  border-color: rgba(0, 180, 216, 0.35);
  background: rgba(0, 180, 216, 0.12);
}
@keyframes statIn-1190c2de {
to { opacity: 1; transform: translateY(0);
}
}
.stat-num[data-v-1190c2de] {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label[data-v-1190c2de] {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

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

/* ========== 背景介绍 ========== */
.section-about[data-v-1190c2de] {
  background: var(--bg-white);
}
.about-layout[data-v-1190c2de] {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-content[data-v-1190c2de] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}
.section-about.visible .about-content[data-v-1190c2de] {
  opacity: 1;
  transform: translateX(0);
}
.about-subtitle[data-v-1190c2de] {
  color: var(--highlight);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.about-text p[data-v-1190c2de] {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.about-text strong[data-v-1190c2de] {
  color: var(--highlight);
  font-weight: 700;
}

/* 荣誉胶囊标签 */
.honors-inline[data-v-1190c2de] {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.honors-inline-title[data-v-1190c2de] {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.honors-inline-lead[data-v-1190c2de] {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.honors-pills[data-v-1190c2de] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.h-pill[data-v-1190c2de] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(8px);
  animation: pillIn-1190c2de 0.45s ease forwards calc(var(--hdelay, 0s) + 0.3s);
  transition: transform 0.25s, box-shadow 0.25s;
}
.h-pill[data-v-1190c2de]:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.15);
}
@keyframes pillIn-1190c2de {
to { opacity: 1; transform: translateY(0);
}
}
.h-pill-dot[data-v-1190c2de] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* 企业实力墙 */
.honors-wall[data-v-1190c2de] {
  background: linear-gradient(135deg, var(--primary), #0d3a66);
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease 0.2s;
}
.section-about.visible .honors-wall[data-v-1190c2de] {
  opacity: 1;
  transform: translateX(0);
}
.honors-title[data-v-1190c2de] {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.honors-grid[data-v-1190c2de] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.honor-item[data-v-1190c2de] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 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-1190c2de 0.4s ease forwards;
  animation-delay: var(--hdelay);
  transition: transform 0.3s, background 0.3s;
}
.honor-item[data-v-1190c2de]:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
}
@keyframes honorIn-1190c2de {
to { opacity: 1; transform: scale(1);
}
}
.honor-icon[data-v-1190c2de] { font-size: 2rem;
}
.honor-name[data-v-1190c2de] {
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

/* ========== 存在问题 ========== */
.section-pain[data-v-1190c2de] {
  background: var(--bg-section);
}
.pain-grid[data-v-1190c2de] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pain-card[data-v-1190c2de] {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px 28px;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  animation: painIn-1190c2de 0.5s ease forwards;
  animation-delay: var(--pdelay);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.pain-card[data-v-1190c2de]:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(10, 43, 78, 0.1);
  border-color: var(--accent);
}
@keyframes painIn-1190c2de {
to { opacity: 1; transform: translateY(0);
}
}
.pain-card-num[data-v-1190c2de] {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(10, 43, 78, 0.07);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 20px;
}
.pain-card-icon-wrap[data-v-1190c2de] {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(0, 180, 216, 0.02));
  border-radius: 16px;
  border: 1px solid rgba(0, 180, 216, 0.1);
}
.pain-card-icon[data-v-1190c2de] {
  font-size: 1.8rem;
}
.pain-card-title[data-v-1190c2de] {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}
.pain-card-desc[data-v-1190c2de] {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 16px;
}
.pain-card-details[data-v-1190c2de] {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.pain-card-details p[data-v-1190c2de] {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 4px;
  padding-left: 14px;
  position: relative;
}
.pain-card-details p[data-v-1190c2de]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ========== 项目建设 ========== */
.section-solution[data-v-1190c2de] {
  background: var(--bg-white);
}
.solution-block[data-v-1190c2de] {
  margin-bottom: 56px;
}
.solution-block[data-v-1190c2de]:last-child {
  margin-bottom: 0;
}
.solution-block-header[data-v-1190c2de] {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 4px solid var(--gold);
}
.solution-block-badge[data-v-1190c2de] {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 143, 0, 0.15), rgba(245, 166, 35, 0.1));
  border: 1px solid var(--orange);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.solution-block-badge.badge-green[data-v-1190c2de] {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
  border-color: var(--green);
  color: var(--green);
}
.solution-block-badge.badge-blue[data-v-1190c2de] {
  background: linear-gradient(135deg, rgba(44, 125, 160, 0.15), rgba(44, 125, 160, 0.08));
  border-color: #2C7DA0;
  color: #2C7DA0;
}
.solution-block-title[data-v-1190c2de] {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.solution-block-lead[data-v-1190c2de] {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.solution-grid[data-v-1190c2de] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-card[data-v-1190c2de] {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  opacity: 0;
  transform: translateY(16px);
  animation: solIn-1190c2de 0.5s ease forwards;
  animation-delay: var(--delay);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.solution-card[data-v-1190c2de]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(10, 43, 78, 0.08);
  border-color: var(--accent);
}
@keyframes solIn-1190c2de {
to { opacity: 1; transform: translateY(0);
}
}
.solution-card-icon[data-v-1190c2de] {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 14px;
}
.solution-card-title[data-v-1190c2de] {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.solution-card-desc[data-v-1190c2de] {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ========== CTA ========== */
.cta-section[data-v-1190c2de] {
  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-1190c2de]::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-1190c2de] { position: relative; z-index: 1;
}
.cta-title[data-v-1190c2de] {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-subtitle[data-v-1190c2de] {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}
.cta-buttons[data-v-1190c2de] {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn[data-v-1190c2de] {
  padding: 16px 48px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--highlight);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
}
.cta-btn[data-v-1190c2de]:hover {
  background: #00c5ee;
  box-shadow: 0 6px 28px rgba(0, 180, 216, 0.5);
  transform: translateY(-2px);
}
.cta-big[data-v-1190c2de] {
  padding: 18px 56px;
  font-size: 1.1rem;
}

/* ========== 回到顶部 ========== */
.back-to-top[data-v-1190c2de] {
  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-1190c2de] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top[data-v-1190c2de]: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-1190c2de] { width: 22px; height: 22px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
.hero-section[data-v-1190c2de] { min-height: auto; padding: 60px 24px;
}
.hero-title[data-v-1190c2de] { font-size: 2.2rem;
}
.hero-stats[data-v-1190c2de] { grid-template-columns: repeat(4, 1fr);
}
.about-layout[data-v-1190c2de] { grid-template-columns: 1fr;
}
.pain-grid[data-v-1190c2de] { grid-template-columns: 1fr;
}
.solution-grid[data-v-1190c2de] { grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.hero-title[data-v-1190c2de] { font-size: 1.85rem;
}
.hero-subtitle[data-v-1190c2de] { font-size: 1.05rem;
}
.section[data-v-1190c2de] { padding: 56px 0;
}
.section-title[data-v-1190c2de] { font-size: 1.55rem;
}
.honors-grid[data-v-1190c2de] { grid-template-columns: 1fr;
}
.solution-grid[data-v-1190c2de] { grid-template-columns: 1fr;
}
.cta-title[data-v-1190c2de] { font-size: 1.5rem;
}
.cta-big[data-v-1190c2de] { padding: 14px 36px; font-size: 1rem;
}
.hero-stats[data-v-1190c2de] { grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.hero-title[data-v-1190c2de] { font-size: 1.55rem;
}
.hero-subtitle[data-v-1190c2de] { font-size: 0.95rem;
}
.badge[data-v-1190c2de] { font-size: 0.72rem; padding: 5px 12px;
}
.hero-stats[data-v-1190c2de] { grid-template-columns: 1fr 1fr;
}
.honors-pills[data-v-1190c2de] { flex-direction: column;
}
.cta-title[data-v-1190c2de] { font-size: 1.5rem;
}
.cta-big[data-v-1190c2de] { padding: 14px 36px; font-size: 1rem;
}
}
@media (max-width: 768px) {
.back-to-top[data-v-1190c2de] { bottom: 24px; right: 24px; width: 42px; height: 42px;
}
.back-to-top svg[data-v-1190c2de] { width: 18px; height: 18px;
}
}
