
/* ====== 全局变量 ====== */
.cable-solution-page[data-v-b58fbd45] {
  --primary-color: #0A2B4E;
  --secondary-color: #2C7DA0;
  --highlight-color: #00B4D8;
  --accent-color: #F5A623;
  --bg-light: #f7f9fc;
  --text-dark: #1a2332;
  --text-gray: #556677;
  --border-color: #e2e8f0;
}

/* ====== Hero 区域 ====== */
.hero-section[data-v-b58fbd45] {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background-color: #0a2b4e;
  background-size: cover;
  background-position: center;
  color: #fff;
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 0;
  background-attachment: fixed;
}
.hero-section.visible[data-v-b58fbd45] {
  opacity: 1;
}
.hero-bg[data-v-b58fbd45] {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 43, 78, 0.92),
    rgba(10, 43, 78, 0.78),
    rgba(44, 125, 160, 0.65)
  );
  z-index: 0;
}
.hero-content[data-v-b58fbd45] {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}
.hero-title[data-v-b58fbd45] {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: 2px;
  line-height: 1.2;
}
.hero-subtitle[data-v-b58fbd45] {
  font-size: 1.5rem;
  color: #00b4d8;
  font-weight: 600;
  margin: 0 0 28px;
}
.hero-desc[data-v-b58fbd45] {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 48px;
}
.hero-badges[data-v-b58fbd45] {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.badge-item[data-v-b58fbd45] {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 24px;
  border-radius: 12px;
  opacity: 0;
  animation: badgeIn-b58fbd45 0.6s ease forwards var(--d);
}
@keyframes badgeIn-b58fbd45 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.badge-icon[data-v-b58fbd45] {
  font-size: 1.5rem;
}
.badge-label[data-v-b58fbd45] {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.badge-value[data-v-b58fbd45] {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00b4d8;
}
.num-roll[data-v-b58fbd45] {
  display: inline-block;
}

/* ====== 通用 Section ====== */
.section-container[data-v-b58fbd45] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}
.section-header[data-v-b58fbd45] { text-align: center; margin-bottom: 56px;
}
.section-title[data-v-b58fbd45] {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-subtitle[data-v-b58fbd45] {
  font-size: 17px;
  color: var(--text-gray);
}

/* ====== 模块一：五大核心痛点 ====== */
.pain-points-section[data-v-b58fbd45] { background-color: #fff;
}
.pain-grid--5[data-v-b58fbd45] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card[data-v-b58fbd45] {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}
.pain-card.visible[data-v-b58fbd45] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}
.pain-card[data-v-b58fbd45]:hover {
  border-color: #e74c3c;
  box-shadow: 0 12px 40px rgba(231, 76, 60, 0.1);
  transform: translateY(-6px);
}
.pain-num[data-v-b58fbd45] {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(231, 76, 60, 0.12);
  line-height: 1;
}
.pain-icon[data-v-b58fbd45] { font-size: 32px; margin-bottom: 12px;
}
.pain-title[data-v-b58fbd45] {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.pain-desc[data-v-b58fbd45] {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ====== 模块二：AI+APS 五大场景 ====== */
.solutions-section[data-v-b58fbd45] { background-color: var(--bg-light);
}
.scenario-list[data-v-b58fbd45] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.scenario-card[data-v-b58fbd45] {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(25px);
}
.scenario-card.visible[data-v-b58fbd45] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}
.scenario-card[data-v-b58fbd45]:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 40px rgba(10, 43, 78, 0.1);
  transform: translateY(-4px);
}
.scenario-head[data-v-b58fbd45] {
  padding: 24px 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.scenario-badge[data-v-b58fbd45] {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.scenario-title[data-v-b58fbd45] {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.4;
}
.scenario-subtitle-text[data-v-b58fbd45] {
  font-size: 13px;
  color: var(--secondary-color);
  font-weight: 600;
  margin: 2px 0 0;
}
.scenario-body[data-v-b58fbd45] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 16px 28px;
}
.scenario-block[data-v-b58fbd45] {
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8fafc;
}
.block-label[data-v-b58fbd45] {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.block-dot[data-v-b58fbd45] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.block-dot--red[data-v-b58fbd45] { background: #e74c3c;
}
.block-dot--blue[data-v-b58fbd45] { background: var(--secondary-color);
}
.block-dot--green[data-v-b58fbd45] { background: #10b981;
}
.block-text[data-v-b58fbd45] {
  font-size: 12px;
  color: #444;
  line-height: 1.65;
  margin: 0;
}
.scenario-result[data-v-b58fbd45] {
  margin: 0 28px 20px;
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10, 43, 78, 0.06), rgba(44, 125, 160, 0.06));
  border-left: 3px solid var(--accent-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.result-tag[data-v-b58fbd45] {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  padding: 2px 10px;
  border-radius: 6px;
  background: rgba(245, 166, 35, 0.12);
}
.result-text[data-v-b58fbd45] {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.6;
}

/* ====== 模块三：核心应用价值 ====== */
.value-section[data-v-b58fbd45] { background-color: #fff;
}
.value-subsection[data-v-b58fbd45] {
  margin-bottom: 40px;
}
.value-subsection[data-v-b58fbd45]:last-of-type {
  margin-bottom: 0;
}
.value-subtitle[data-v-b58fbd45] {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px;
  padding-left: 4px;
}
.value-subtitle-badge[data-v-b58fbd45] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(44, 125, 160, 0.1), rgba(0, 180, 216, 0.1));
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
}
.value-grid--eco[data-v-b58fbd45] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card[data-v-b58fbd45] {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(25px);
}
.value-card.visible[data-v-b58fbd45] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}
.value-card[data-v-b58fbd45]:hover {
  box-shadow: 0 10px 32px rgba(10, 43, 78, 0.09);
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
}
.value-icon[data-v-b58fbd45] { font-size: 30px; flex-shrink: 0;
}
.value-info[data-v-b58fbd45] { display: flex; flex-direction: column;
}
.value-name[data-v-b58fbd45] { font-size: 13px; color: var(--text-gray); margin-bottom: 3px;
}
.value-number[data-v-b58fbd45] { font-size: 17px; font-weight: 800;
}
.value-number.up[data-v-b58fbd45] { color: #10b981;
}
.value-number.down[data-v-b58fbd45] { color: #ef4444;
}
.mgmt-benefits[data-v-b58fbd45] {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: 20px;
  border: 1px solid var(--border-color);
}
.mgmt-title[data-v-b58fbd45] {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px;
  text-align: center;
}
.mgmt-grid[data-v-b58fbd45] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.mgmt-item[data-v-b58fbd45] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
}
.mgmt-item.visible[data-v-b58fbd45] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}
.mgmt-check[data-v-b58fbd45] {
  flex-shrink: 0;
  color: #10b981;
}
.value-note[data-v-b58fbd45] {
  text-align: center;
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 28px;
  opacity: 0.75;
}

/* ====== 标杆案例 ====== */
.case-study-section[data-v-b58fbd45] { background: #f8fafc;
}
.case-layout[data-v-b58fbd45] {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 850px;
  margin: 0 auto;
}
.case-header[data-v-b58fbd45] { margin-bottom: 24px;
}
.case-title[data-v-b58fbd45] { font-size: 2rem; font-weight: 800; color: #0a2b4e; margin: 0 0 8px;
}
.case-subtitle[data-v-b58fbd45] { font-size: 1rem; color: #2c7da0; font-weight: 600; margin: 0;
}
.case-desc[data-v-b58fbd45] { font-size: 1rem; line-height: 1.8; color: #444; margin: 0 0 32px;
}
.case-results[data-v-b58fbd45] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}
.case-result-item[data-v-b58fbd45] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  flex: 1 0 0;
  min-width: max-content;
}
.result-label[data-v-b58fbd45] { font-size: 0.95rem; color: #555;
}
.result-value[data-v-b58fbd45] { font-size: 1.15rem; font-weight: 700; color: #2c7da0;
}
.case-detail-btn[data-v-b58fbd45] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0A2B4E, #2C7DA0);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: fit-content;
  margin: 24px auto 0;
}
.case-detail-btn[data-v-b58fbd45]:hover {
  background: linear-gradient(135deg, #2c7da0, #00b4d8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 125, 160, 0.35);
}
.case-detail-btn .arrow-icon[data-v-b58fbd45] { transition: transform 0.3s ease;
}
.case-detail-btn:hover .arrow-icon[data-v-b58fbd45] { transform: translateX(4px);
}
.case-quote[data-v-b58fbd45] {
  text-align: center;
  margin: 24px auto 0;
  max-width: 700px;
  padding: 0 24px;
}
.case-quote-text[data-v-b58fbd45] {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: #444;
  margin: 0 0 8px;
}
.case-quote-author[data-v-b58fbd45] {
  font-size: 0.9rem;
  color: #2c7da0;
  font-style: normal;
}

/* ====== CTA ====== */
.cta-section[data-v-b58fbd45] {
  background: linear-gradient(135deg, #0A2B4E, #153a5c, #1a4a70);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.cta-title[data-v-b58fbd45] { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: 1px;
}
.cta-subtitle[data-v-b58fbd45] { font-size: 16px; opacity: 0.85; margin-bottom: 32px;
}
.cta-button[data-v-b58fbd45] {
  background: var(--highlight-color);
  color: #fff;
  border: none;
  padding: 16px 52px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.cta-button[data-v-b58fbd45]:hover {
  background: #00c8ee;
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.45);
  transform: translateY(-2px);
}

/* ===== 返回顶部 ===== */
.back-to-top[data-v-b58fbd45] {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  background: #0a2b4e;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(10, 43, 78, 0.3);
}
.back-to-top.visible[data-v-b58fbd45] { opacity: 1; visibility: visible;
}
.back-to-top[data-v-b58fbd45]:hover { background: #00b4d8; transform: translateY(-3px);
}
.back-to-top svg[data-v-b58fbd45] { width: 22px; height: 22px;
}

/* ====== 响应式 ====== */
@media (max-width: 1024px) {
.hero-section[data-v-b58fbd45] { background-attachment: scroll !important;
}
.pain-grid--5[data-v-b58fbd45] { grid-template-columns: repeat(2, 1fr);
}
.scenario-body[data-v-b58fbd45] { grid-template-columns: 1fr;
}
.value-grid--eco[data-v-b58fbd45] { grid-template-columns: repeat(2, 1fr);
}
.hero-badges[data-v-b58fbd45] {
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.badge-item[data-v-b58fbd45] {
    width: 100%;
    max-width: 320px;
    justify-content: space-around;
    padding: 10px 18px;
}
}
@media (max-width: 768px) {
.hero-section[data-v-b58fbd45] { min-height: 100vh;
}
.hero-title[data-v-b58fbd45] { font-size: 32px;
}
.hero-subtitle[data-v-b58fbd45] { font-size: 19px;
}
.hero-badges[data-v-b58fbd45] {
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.badge-item[data-v-b58fbd45] {
    width: 100%;
    max-width: 320px;
    justify-content: space-around;
}
.section-title[data-v-b58fbd45] { font-size: 26px;
}
.section-container[data-v-b58fbd45] { padding: 60px 20px;
}
.pain-grid--5[data-v-b58fbd45] { grid-template-columns: 1fr;
}
.value-grid--eco[data-v-b58fbd45] { grid-template-columns: 1fr;
}
.scenario-head[data-v-b58fbd45] { flex-direction: column; gap: 8px;
}
.scenario-body[data-v-b58fbd45] { grid-template-columns: 1fr; padding: 12px 16px;
}
.scenario-result[data-v-b58fbd45] { margin: 0 16px 16px;
}
.cta-title[data-v-b58fbd45] { font-size: 24px;
}
.case-header[data-v-b58fbd45] { text-align: center;
}
.case-title[data-v-b58fbd45] { font-size: 1.5rem;
}
.case-subtitle[data-v-b58fbd45] { font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.hero-title[data-v-b58fbd45] { font-size: 28px;
}
.hero-subtitle[data-v-b58fbd45] { font-size: 17px;
}
}
