
/* ========== CSS 变量 ========== */
.rl-page[data-v-d3a1e03b] {
  --primary: #0B2F5E;
  --accent: #1A5276;
  --highlight: #2C7DA0;
  --orange: #FF6B35;
  --green: #10B981;
  --red: #E60012;
  --gold: #F5A623;
  --bg-white: #FFFFFF;
  --bg-light: #F5F7FA;
  --bg-section: #F8F9FA;
  --text-dark: #1A2332;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border: #E2E8F0;
  overflow-x: hidden;
}

/* ========== Hero ========== */
.hero-section[data-v-d3a1e03b] {
  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-d3a1e03b] {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 47, 94, 0.72) 0%, rgba(11, 47, 94, 0.55) 100%);
  z-index: 1;
}
.hero-content[data-v-d3a1e03b] {
  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-d3a1e03b] {
  opacity: 1;
  transform: translateY(0);
}
.hero-badges[data-v-d3a1e03b] {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.badge[data-v-d3a1e03b] {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.badge-dark[data-v-d3a1e03b] {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}
.badge-orange[data-v-d3a1e03b] {
  background: rgba(255, 107, 53, 0.2);
  border: 1.5px solid var(--orange);
  color: var(--orange);
}
.badge-blue[data-v-d3a1e03b] {
  background: rgba(44, 125, 160, 0.2);
  border: 1.5px solid var(--highlight);
  color: var(--highlight);
}
.hero-title[data-v-d3a1e03b] {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
}
.hero-subtitle[data-v-d3a1e03b] {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-stats[data-v-d3a1e03b] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-card[data-v-d3a1e03b] {
  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-d3a1e03b 0.5s ease forwards;
  animation-delay: var(--sdelay);
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card[data-v-d3a1e03b]:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}
@keyframes statIn-d3a1e03b {
to { opacity: 1; transform: translateY(0);
}
}
.stat-num[data-v-d3a1e03b] {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.2;
}
.stat-label[data-v-d3a1e03b] {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

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

/* ========== 公司介绍 ========== */
.section-about[data-v-d3a1e03b] {
  background: var(--bg-white);
}
.about-layout[data-v-d3a1e03b] {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-subtitle[data-v-d3a1e03b] { margin-bottom: 20px;
}
.about-text p[data-v-d3a1e03b] {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.about-text strong[data-v-d3a1e03b] {
  color: var(--highlight);
  font-weight: 700;
}
.honors-wall[data-v-d3a1e03b] {
  background: linear-gradient(135deg, var(--primary), #0A1F3E);
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
}
.honors-title[data-v-d3a1e03b] {
  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-d3a1e03b] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.honor-item[data-v-d3a1e03b] {
  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-d3a1e03b 0.4s ease forwards;
  animation-delay: var(--hdelay);
  transition: transform 0.3s, background 0.3s;
}
.honor-item[data-v-d3a1e03b]:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
}
@keyframes honorIn-d3a1e03b {
to { opacity: 1; transform: scale(1);
}
}
.honor-icon[data-v-d3a1e03b] { font-size: 2rem;
}
.honor-name[data-v-d3a1e03b] {
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

/* ========== 核心痛点 ========== */
.section-pain[data-v-d3a1e03b] {
  background: var(--bg-section);
}
.pain-grid[data-v-d3a1e03b] {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pain-card[data-v-d3a1e03b] {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: painIn-d3a1e03b 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-d3a1e03b]:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(11, 47, 94, 0.1);
  border-color: var(--red);
}
@keyframes painIn-d3a1e03b {
to { opacity: 1; transform: translateY(0);
}
}
.pain-card-num[data-v-d3a1e03b] {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(11, 47, 94, 0.07);
  line-height: 1;
  margin-bottom: -8px;
  position: absolute;
  top: 12px;
  right: 16px;
}
.pain-card-icon-wrap[data-v-d3a1e03b] {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.08), rgba(230, 0, 18, 0.02));
  border-radius: 16px;
  border: 1px solid rgba(230, 0, 18, 0.1);
}
.pain-card-icon[data-v-d3a1e03b] {
  font-size: 1.8rem;
}
.pain-card-title[data-v-d3a1e03b] {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.pain-card-desc[data-v-d3a1e03b] {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ========== 总体建设方案 ========== */
.section-solution[data-v-d3a1e03b] {
  background: var(--bg-white);
}
.position-row[data-v-d3a1e03b] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.position-card[data-v-d3a1e03b] {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: posIn-d3a1e03b 0.5s ease forwards;
  animation-delay: var(--posdelay);
  transition: transform 0.3s, box-shadow 0.3s;
}
.position-card[data-v-d3a1e03b]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(11, 47, 94, 0.08);
}
@keyframes posIn-d3a1e03b {
to { opacity: 1; transform: translateY(0);
}
}
.position-card-badge[data-v-d3a1e03b] {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.badge-aps[data-v-d3a1e03b] {
  background: linear-gradient(135deg, rgba(44, 125, 160, 0.12), rgba(44, 125, 160, 0.04));
  color: var(--highlight);
  border: 1.5px solid var(--highlight);
}
.badge-mes[data-v-d3a1e03b] {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.04));
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.badge-loop[data-v-d3a1e03b] {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04));
  color: var(--green);
  border: 1.5px solid var(--green);
}
.position-card-title[data-v-d3a1e03b] {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.position-card-desc[data-v-d3a1e03b] {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- 三层架构 --- */
.arch-heading[data-v-d3a1e03b] {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 28px;
}
.arch-stack[data-v-d3a1e03b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.arch-arrow-label[data-v-d3a1e03b] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 0;
}
.arch-arrow-label.bottom[data-v-d3a1e03b] {
  flex-direction: row;
}
.arch-block[data-v-d3a1e03b] {
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: archBlockIn-d3a1e03b 0.55s ease forwards;
  animation-delay: var(--ldelay);
  transition: box-shadow 0.3s;
}
.arch-block[data-v-d3a1e03b]:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.arch-block[data-v-d3a1e03b]:first-child {
  border-radius: 18px 18px 0 0;
}
.arch-block[data-v-d3a1e03b]:last-child {
  border-radius: 0 0 18px 18px;
}
@keyframes archBlockIn-d3a1e03b {
to { opacity: 1; transform: translateY(0);
}
}
.arch-block-head[data-v-d3a1e03b] {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: linear-gradient(90deg, rgba(11, 47, 94, 0.06), rgba(44, 125, 160, 0.02), transparent);
  border-bottom: 1px solid var(--border);
}
.arch-block-icon[data-v-d3a1e03b] {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(44, 125, 160, 0.1), rgba(11, 47, 94, 0.05));
  border-radius: 14px;
  flex-shrink: 0;
}
.arch-block-title[data-v-d3a1e03b] {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
}
.arch-block-body[data-v-d3a1e03b] {
  padding: 20px 28px;
}
.arch-group[data-v-d3a1e03b] {
  margin-bottom: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.9), rgba(240, 244, 248, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}
.arch-group[data-v-d3a1e03b]:last-child { margin-bottom: 0;
}
.arch-group[data-v-d3a1e03b]:hover {
  background: rgba(44, 125, 160, 0.04);
  border-color: rgba(44, 125, 160, 0.12);
  transform: translateX(4px);
}
.arch-group-label[data-v-d3a1e03b] {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.arch-group-label[data-v-d3a1e03b]::before {
  content: '▸';
  color: var(--highlight);
  font-weight: 700;
  font-size: 14px;
}
.arch-group-tags[data-v-d3a1e03b] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.arch-tag[data-v-d3a1e03b] {
  display: inline-block;
  padding: 5px 13px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  cursor: default;
}
.arch-tag[data-v-d3a1e03b]:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(44, 125, 160, 0.05);
  transform: translateY(-1px);
}

/* ========== APS ========== */
.section-aps[data-v-d3a1e03b] {
  background: var(--bg-section);
}
.aps-cards[data-v-d3a1e03b] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.aps-card[data-v-d3a1e03b] {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  animation: apsCardIn-d3a1e03b 0.5s ease forwards;
  animation-delay: var(--adelay);
  transition: transform 0.3s, box-shadow 0.3s;
}
.aps-card[data-v-d3a1e03b]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(11, 47, 94, 0.1);
}
@keyframes apsCardIn-d3a1e03b {
to { opacity: 1; transform: translateY(0);
}
}
.aps-card-head[data-v-d3a1e03b] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--primary), #0A1F3E);
}
.aps-card-icon[data-v-d3a1e03b] { font-size: 1.8rem;
}
.aps-card-name[data-v-d3a1e03b] {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.aps-card-list[data-v-d3a1e03b] {
  list-style: none;
  padding: 22px 24px 0;
  margin: 0 0 16px;
}
.aps-card-list li[data-v-d3a1e03b] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 4px 0;
}
.aps-bullet[data-v-d3a1e03b] {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--highlight);
  margin-top: 7px;
}
.aps-card-highlight[data-v-d3a1e03b] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  margin: 0 24px 22px;
  border-radius: 12px;
  text-align: center;
}
.hl-blue[data-v-d3a1e03b] {
  background: linear-gradient(135deg, rgba(44, 125, 160, 0.08), rgba(44, 125, 160, 0.02));
  border: 1px solid rgba(44, 125, 160, 0.15);
}
.hl-orange[data-v-d3a1e03b] {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.15);
}
.hl-green[data-v-d3a1e03b] {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.hl-val[data-v-d3a1e03b] {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
}
.hl-label[data-v-d3a1e03b] {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- 甘特图 --- */
.gantt-panel[data-v-d3a1e03b] {
  background: linear-gradient(180deg, #0d1929, var(--primary));
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 8px 36px rgba(11, 47, 94, 0.25);
}
.gantt-top[data-v-d3a1e03b] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 700;
}
.gantt-clock[data-v-d3a1e03b] {
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.gantt-main[data-v-d3a1e03b] {
  display: flex;
  gap: 0;
}
.gantt-labels[data-v-d3a1e03b] {
  display: flex;
  flex-direction: column;
  min-width: 110px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.gantt-label-row[data-v-d3a1e03b] {
  height: 42px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.gantt-chart-area[data-v-d3a1e03b] {
  flex: 1;
  position: relative;
  min-height: 210px;
}
.gantt-chart-row[data-v-d3a1e03b] {
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
}
.gantt-track[data-v-d3a1e03b] {
  position: absolute;
  inset: 6px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  overflow: hidden;
}
.gantt-bar[data-v-d3a1e03b] {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  border-radius: 5px;
  opacity: 0;
  animation: barIn-d3a1e03b 0.5s ease forwards;
  animation-delay: var(--bdelay);
  transition: filter 0.3s;
  cursor: default;
}
.gantt-bar[data-v-d3a1e03b]:hover { filter: brightness(1.2);
}
@keyframes barIn-d3a1e03b {
to { opacity: 1;
}
}
.gantt-bar.normal[data-v-d3a1e03b] {
  background: linear-gradient(90deg, var(--highlight), #06B6D4);
  box-shadow: 0 0 8px rgba(44, 125, 160, 0.3);
}
.gantt-bar.warning[data-v-d3a1e03b] {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
  animation: warnPulse-d3a1e03b 2s ease-in-out infinite;
}
@keyframes warnPulse-d3a1e03b {
0%, 100% { box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}
50% { box-shadow: 0 0 16px rgba(255, 107, 53, 0.55);
}
}
.gantt-bar.done[data-v-d3a1e03b] {
  background: linear-gradient(90deg, var(--green), #34D399);
  opacity: 0.45 !important;
  animation: none !important;
}
.gantt-bar-text[data-v-d3a1e03b] {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.gantt-grid[data-v-d3a1e03b] {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gantt-grid-line[data-v-d3a1e03b] {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(1) { left: 12.5%;
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(2) { left: 25%;
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(3) { left: 37.5%;
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(4) { left: 50%;
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(5) { left: 62.5%;
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(6) { left: 75%;
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(7) { left: 87.5%;
}
.gantt-grid-line[data-v-d3a1e03b]:nth-child(8) { left: 100%;
}
.gantt-bottom[data-v-d3a1e03b] {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 20px;
  justify-content: center;
}
.gantt-legend-item[data-v-d3a1e03b] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
}
.gantt-dot[data-v-d3a1e03b] {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.dot-normal[data-v-d3a1e03b] { background: var(--highlight);
}
.dot-warning[data-v-d3a1e03b] { background: var(--orange);
}
.dot-done[data-v-d3a1e03b] { background: var(--green);
}

/* ========== MES ========== */
.section-mes[data-v-d3a1e03b] {
  background: var(--bg-white);
}
.mes-cards[data-v-d3a1e03b] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mes-card[data-v-d3a1e03b] {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  animation: mesCardIn-d3a1e03b 0.5s ease forwards;
  animation-delay: var(--mdelay);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mes-card[data-v-d3a1e03b]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(11, 47, 94, 0.1);
}
@keyframes mesCardIn-d3a1e03b {
to { opacity: 1; transform: translateY(0);
}
}
.mes-card-head[data-v-d3a1e03b] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--primary), #0A1F3E);
}
.mes-card-icon[data-v-d3a1e03b] { font-size: 1.8rem;
}
.mes-card-name[data-v-d3a1e03b] {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.mes-card-list[data-v-d3a1e03b] {
  list-style: none;
  padding: 22px 24px;
  margin: 0;
}
.mes-card-list li[data-v-d3a1e03b] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 4px 0;
}
.mes-bullet[data-v-d3a1e03b] {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
}

/* ========== 量化收益 ========== */
.section-benefit[data-v-d3a1e03b] {
  background: var(--bg-section);
}
.benefit-label[data-v-d3a1e03b] {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;
}
.benefit-label.secondary[data-v-d3a1e03b] {
  margin-top: 36px;
}
.benefit-metrics[data-v-d3a1e03b] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric-card[data-v-d3a1e03b] {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: metricIn-d3a1e03b 0.45s ease forwards;
  animation-delay: var(--bdelay);
  transition: transform 0.3s, box-shadow 0.3s;
}
.metric-card[data-v-d3a1e03b]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(11, 47, 94, 0.1);
}
@keyframes metricIn-d3a1e03b {
to { opacity: 1; transform: translateY(0);
}
}
.metric-icon[data-v-d3a1e03b] { font-size: 1.5rem; display: block; margin-bottom: 8px;
}
.metric-value[data-v-d3a1e03b] {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 6px;
}
.metric-value.up[data-v-d3a1e03b] { color: var(--green);
}
.metric-value.down[data-v-d3a1e03b] { color: var(--orange);
}
.metric-label[data-v-d3a1e03b] {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.indirect-items[data-v-d3a1e03b] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 36px;
}
.indirect-row[data-v-d3a1e03b] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: transform 0.3s;
}
.indirect-row[data-v-d3a1e03b]:hover { transform: translateX(6px);
}
.ind-check[data-v-d3a1e03b] {
  font-weight: 900;
  color: var(--green);
  font-size: 1rem;
}
.testimonial-box[data-v-d3a1e03b] {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(11, 47, 94, 0.04), rgba(255, 107, 53, 0.04));
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 18px;
  padding: 32px 36px;
  position: relative;
  z-index: 0;
}
.testimonial-quote[data-v-d3a1e03b] {
  position: absolute;
  top: -12px;
  left: 28px;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text[data-v-d3a1e03b] {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial-author[data-v-d3a1e03b] { text-align: right;
}
.testimonial-author span[data-v-d3a1e03b] {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

/* ========== CTA ========== */
.cta-section[data-v-d3a1e03b] {
  background: linear-gradient(135deg, var(--primary) 0%, #0A1F3E 50%, #071428 100%);
  padding: 76px 24px;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cta-section[data-v-d3a1e03b]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(44, 125, 160, 0.06) 0%, transparent 50%);
}
.cta-inner[data-v-d3a1e03b] { position: relative; z-index: 1;
}
.cta-title[data-v-d3a1e03b] {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-subtitle[data-v-d3a1e03b] {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}
.cta-buttons[data-v-d3a1e03b] {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn[data-v-d3a1e03b] {
  padding: 16px 48px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}
.cta-btn[data-v-d3a1e03b]:hover {
  background: #E85D2C;
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}
.cta-big[data-v-d3a1e03b] {
  padding: 18px 56px;
  font-size: 1.1rem;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
.hero-section[data-v-d3a1e03b] { min-height: auto; padding: 60px 24px;
}
.hero-title[data-v-d3a1e03b] { font-size: 2.2rem;
}
.hero-stats[data-v-d3a1e03b] { grid-template-columns: repeat(2, 1fr);
}
.about-layout[data-v-d3a1e03b] { grid-template-columns: 1fr;
}
.pain-grid[data-v-d3a1e03b] { grid-template-columns: repeat(3, 1fr);
}
.position-row[data-v-d3a1e03b] { grid-template-columns: 1fr;
}
.aps-cards[data-v-d3a1e03b] { grid-template-columns: 1fr;
}
.mes-cards[data-v-d3a1e03b] { grid-template-columns: 1fr;
}
.benefit-metrics[data-v-d3a1e03b] { grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.hero-title[data-v-d3a1e03b] { font-size: 1.85rem;
}
.hero-subtitle[data-v-d3a1e03b] { font-size: 1.05rem;
}
.section[data-v-d3a1e03b] { padding: 56px 0;
}
.section-title[data-v-d3a1e03b] { font-size: 1.55rem;
}
.pain-grid[data-v-d3a1e03b] { grid-template-columns: repeat(2, 1fr);
}
.honors-grid[data-v-d3a1e03b] { grid-template-columns: 1fr;
}
.benefit-metrics[data-v-d3a1e03b] { grid-template-columns: repeat(2, 1fr);
}
.testimonial-box[data-v-d3a1e03b] { padding: 24px 20px;
}
}
@media (max-width: 480px) {
.hero-title[data-v-d3a1e03b] { font-size: 1.55rem;
}
.hero-subtitle[data-v-d3a1e03b] { font-size: 0.95rem;
}
.badge[data-v-d3a1e03b] { font-size: 0.72rem; padding: 5px 12px;
}
.hero-stats[data-v-d3a1e03b] { grid-template-columns: 1fr 1fr;
}
.pain-grid[data-v-d3a1e03b] { grid-template-columns: 1fr;
}
.cta-title[data-v-d3a1e03b] { font-size: 1.5rem;
}
.cta-big[data-v-d3a1e03b] { padding: 14px 36px; font-size: 1rem;
}
.gantt-main[data-v-d3a1e03b] { flex-direction: row;
}
.gantt-labels[data-v-d3a1e03b] { min-width: 70px; border-right: 1px solid rgba(255, 255, 255, 0.1); border-bottom: none; padding-right: 6px;
}
.gantt-label-row[data-v-d3a1e03b] { font-size: 0.62rem;
}
.benefit-metrics[data-v-d3a1e03b] { grid-template-columns: 1fr 1fr;
}
}

/* ========== 回到顶部 ========== */
.back-to-top[data-v-d3a1e03b] {
  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(11, 47, 94, 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-d3a1e03b] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top[data-v-d3a1e03b]:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px rgba(11, 47, 94, 0.4);
  transform: translateY(-3px);
}
.back-to-top svg[data-v-d3a1e03b] { width: 22px; height: 22px;
}
@media (max-width: 768px) {
.back-to-top[data-v-d3a1e03b] { bottom: 24px; right: 24px; width: 42px; height: 42px;
}
.back-to-top svg[data-v-d3a1e03b] { width: 18px; height: 18px;
}
}
