/* ============================================================
   欧达家居官网 - 主样式（蓝白主色）
   ============================================================ */

/* ---------- CSS 变量（蓝白官网风） ---------- */
:root {
  --primary:        #1e6bb8;
  --primary-dark:   #155a9e;
  --primary-light:  #e8f4fc;
  --accent:         #0ea5e9;
  --bg:             #ffffff;
  --surface:        #f5fafd;
  --surface-2:      #e8f4fc;
  --surface-3:      #d4ebf7;
  --text:           #1e3a5f;
  --text-muted:     #4a6b8a;
  --border:         rgba(30, 107, 184, 0.12);
  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      18px;
  --shadow:         0 12px 40px rgba(30, 107, 184, 0.12);
  --shadow-sm:      0 4px 16px rgba(30, 107, 184, 0.08);
  --glow:           0 0 20px rgba(30, 107, 184, 0.25);
  --trans:          0.22s ease;
  --max-w:          1200px;
}

/* ---------- 灯光感：聚光灯（光标处亮、四周略暗） ---------- */
.cursor-spotlight {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle 180px at 50% 50%,
    transparent 0%,
    transparent 65%,
    rgba(10, 30, 50, 0.35) 100%
  );
  pointer-events: none;
  z-index: 9999;
  transition: background 0.08s ease-out;
}
.cursor-spotlight.cursor-spotlight--off {
  visibility: hidden;
  pointer-events: none;
}

/* 聚光灯开关（导航栏内，与导航融为一体） */
.spotlight-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  padding: 8px 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: color var(--trans);
}
.spotlight-toggle:hover {
  color: var(--primary);
}
.spotlight-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.spotlight-toggle__switch {
  position: relative;
  width: 40px;
  height: 22px;
  background: var(--surface-3);
  border-radius: 11px;
  transition: var(--trans);
}
.spotlight-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: var(--trans);
}
.spotlight-toggle.on .spotlight-toggle__switch {
  background: var(--primary);
}
.spotlight-toggle.on .spotlight-toggle__switch::after {
  transform: translateX(18px);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, '微软雅黑', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
/* 可点击区域悬停时有灯光光晕感 */
a, button, .btn, .tab-btn, .product-card, .culture-card { position: relative; }

a { color: inherit; text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- 通用容器 ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---------- 通用按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--glow), 0 8px 24px rgba(30, 107, 184, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.btn-nav {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  padding: 10px 22px;
  font-size: 0.9rem;
  margin-left: 8px;
}
.btn-nav:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }

/* ============================================================
   顶部导航（蓝白）
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
  box-shadow: 0 1px 0 rgba(30, 107, 184, 0.06);
}

.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo img {
  height: 38px;
  width: auto;
}
.logo-text {
  display: none;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.logo-text em { color: var(--primary); font-style: normal; }

/* 汉堡菜单 */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}
.menu-toggle:hover span { background: var(--primary); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 主导航 */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--trans);
  white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--surface-2); }

/* 有子菜单的导航项 */
.nav-item { position: relative; }

.has-sub::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-left: 5px;
  margin-top: 2px;
  opacity: 0.6;
  transition: transform var(--trans);
}
.nav-item:hover .has-sub::after { transform: rotate(180deg); }

/* 下拉菜单 */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--trans), visibility var(--trans), transform var(--trans);
  box-shadow: var(--shadow);
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--primary); background: var(--surface-2); }

/* ---------- 移动端导航 ---------- */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .spotlight-toggle { display: none; }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    gap: 0;
  }
  .nav.open { display: flex; }

  .nav-link { padding: 11px 12px; color: var(--text); font-size: 0.95rem; }

  .nav-item .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    transition: max-height 0.3s ease, visibility 0.3s ease;
  }
  .nav-item.open .nav-dropdown {
    visibility: visible;
    max-height: 300px;
  }
  .nav-dropdown a { padding: 8px 12px 8px 24px; font-size: 0.9rem; }

  .btn-nav { margin: 8px 0 0; align-self: flex-start; }
  .has-sub::after { float: right; margin-top: 8px; }
}

/* ==========================================================================
   修正后的 Hero Section 样式
   ========================================================================== */

/* 1. Hero 整体容器：与图片区域同色，避免上下色差 */
.hero {
  position: relative;
  background-color: #f0f4f8;
  overflow: hidden;
  padding: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* 2. 内部主布局：左右横向分层 */
.hero-inner-layout {
  display: flex;
  width: 100%;
  align-items: stretch;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

/* 3. 左侧文字区域 */
.hero-content-left {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4%;
  position: relative;
  z-index: 2;
}

/* 4. 右侧图片区域：与 hero 同色无色差，框更大 */
.hero-image-right {
  flex: 1;
  background-image: url('../assets/hero-bg.jpg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f0f4f8;
  border-radius: 12px;
  min-height: 380px;
  max-height: min(85vh, 720px);
  position: relative;
  z-index: 1;
  align-self: center;
}

/* 5. 虚线装饰层：仅第二条虚线，在描述段落下方，贯穿左右 */
.hero-dotted-line-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* 第二条虚线：在「欧达家居…」描述与下方统计之间，横贯整屏 */
.dotted-line-2 {
  position: absolute;
  top: 72%;
  left: -50vw;
  width: 200vw;
  height: 0;
  border-top: 1px dotted rgba(0,0,0,0.12);
  opacity: 0.8;
}

/* 6. 左侧内部：三层布局样式 */
.hero-layer {
  margin-bottom: 40px;
}

.hero-layer:last-child {
  margin-bottom: 0;
}

/* Top Layer */
.hero-eyebrow {
  font-size: 16px;
  color: #888;
  letter-spacing: 1px;
  margin: 0;
}

/* Middle Layer: 中国好灯照亮世界 上下分层 */
.hero-motto {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
}

.motto-part {
  display: block;
}

.motto-b {
  color: var(--primary);
}

.hero-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Bottom Layer: Stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  padding-top: 30px;
  margin-top: 10px;
}

.hstat {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
}

.hstat strong {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.hstat span {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

/* 全渠道一体化，防止堆叠 */
.hstat-long {
  flex: 0 0 auto;
  min-width: 150px;
}

.hstat-long strong {
  white-space: nowrap;
}

.hstat-long .sub-text {
  font-size: 12px;
  color: #999;
  white-space: normal;
  line-height: 1.3;
}

/* Hero 响应式适配 */
@media (max-width: 992px) {
  .hero-inner-layout {
    flex-direction: column;
    padding: 40px 0;
  }

  .hero-content-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-motto {
    font-size: 36px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-image-right {
    min-height: 300px;
    background-position: center;
  }

  .dotted-line-2 {
    display: none;
  }
}

.br-pc { display: none; }
@media (min-width: 768px) { .br-pc { display: block; } }

/* ============================================================
   通用 section
   ============================================================ */
.page-section {
  padding: 96px 0;
  position: relative;
}

/* 交替背景 */
.sec-alt {
  background: var(--surface);
}

/* 各 section 背景（蓝白）；若用图片则 cover 固定比例、不拉伸 */
.page-section {
  overflow: hidden;
}
.page-section:not(.sec-alt)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 107, 184, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* 可选：公司概况区块背景图，cover + 抬头居中，不变形 */
.page-section#about.has-bg-img::before {
  background-image: url('../assets/bg-about.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  -webkit-background-size: cover;
  background-color: transparent;
  opacity: 0.15;
}
.sec-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}
.sec-alt.has-bg-img::before {
  background-image: url('../assets/bg-services.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  opacity: 0.12;
}
.sec-alt { position: relative; }
.sec-alt .container { position: relative; z-index: 1; }
.page-section .container { position: relative; z-index: 1; }

/* Section 头部 */
.sec-head {
  text-align: center;
  margin-bottom: 48px;
}
.sec-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.sec-head p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================
   Tab 组件
   ============================================================ */
.tab-block { width: 100%; }

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panels { min-height: 200px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   面板内容布局
   ============================================================ */

/* 双栏：左内容 + 右侧边/表单 */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 420px; gap: 64px; }
}

/* 单栏 */
.single-col { max-width: 900px; margin-left: auto; margin-right: auto; }
/* 居中单栏（新闻、文化等宽内容用） */
.centered-col { max-width: 1080px; margin: 0 auto; }

/* 面板通用文字：标题与首段可居中，避免整页都靠左 */
.tab-panel h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
}
.tab-panel > .single-col > p:first-of-type,
.tab-panel > .sup-require-wrap > p:first-of-type,
.panel-intro {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.tab-panel p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tab-panel p:last-child { margin-bottom: 0; }
.panel-intro { color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   公司简介 - 统计卡片
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--trans);
}
.stat-card:hover {
  border-color: rgba(30, 107, 184, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   业务范畴 - 产品网格（固定 3 列，居中）
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--trans);
}
.product-card:hover {
  border-color: rgba(30, 107, 184, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm), 0 0 24px rgba(30, 107, 184, 0.1);
}
.pc-icon-svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--primary);
  transition: var(--trans);
}
.product-card:hover .pc-icon-svg { color: var(--primary-dark); transform: scale(1.05); }
.pc-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.product-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.market-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.market-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.market-tags span {
  padding: 4px 12px;
  font-size: 0.82rem;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(30, 107, 184, 0.2);
  border-radius: 20px;
}
/* 业务范畴 - 2D 地图 */
.scope-map-block {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.scope-map-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-align: center;
}
.scope-map-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.world-map-2d {
  max-width: 100%;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8f4fc;
}
.world-map-2d .map-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  border-radius: var(--radius);
}
.scope-channels {
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.scope-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(30, 107, 184, 0.3);
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.platform-badge:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.platform-more {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
/* ============================================================
   文化和价值观（固定 4 列，居中）
   ============================================================ */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .culture-grid { grid-template-columns: 1fr; }
}
.culture-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
}
.culture-card:hover {
  border-color: rgba(30, 107, 184, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm), 0 0 20px rgba(30, 107, 184, 0.08);
}
.culture-icon-svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--primary);
  transition: var(--trans);
}
.culture-card:hover .culture-icon-svg { color: var(--primary-dark); transform: scale(1.08); }
.culture-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.culture-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.culture-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.culture-values-line {
  white-space: nowrap;
}

/* ============================================================
   公司新闻 - 横向时间轴（一条横线，左右滚动，无分页）
   ============================================================ */
.news-timeline {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-3) transparent;
}
.news-timeline::-webkit-scrollbar { height: 6px; }
.news-timeline::-webkit-scrollbar-track { background: transparent; }
.news-timeline::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }

.tl-track {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 0 24px 56px;
  min-width: max-content;
}

/* 贯穿所有圆点的横线 */
.tl-track::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  flex-shrink: 0;
  padding: 0 12px;
}

.tl-card {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--trans);
  margin-bottom: 0;
}
.tl-card:hover {
  border-color: rgba(30, 107, 184, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.tl-date {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.tl-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.tl-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* 卡片到横线的竖线 */
.tl-stem {
  width: 2px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.news-pagination,
.news-pager { display: none !important; }

/* ============================================================
   人才招聘 - 岗位列表
   ============================================================ */
.job-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--trans);
}
.job-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.job-list li:hover {
  border-color: rgba(30, 107, 184, 0.3);
  background: var(--surface-3);
}

.tip-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 14px 18px;
  background: var(--surface-2);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 20px;
}
.tip-text strong { color: var(--text); }

/* ============================================================
   WPS 表单
   ============================================================ */
.form-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.form-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.wps-form {
  width: 100%;
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  display: block;
}

/* 空表单占位 */
.wps-placeholder {
  width: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.wps-placeholder p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}
.wps-placeholder strong { color: var(--text); }

.form-tip {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 页面内嵌表单（已接入） */
.page-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: -6px;
}
.form-label .req {
  color: var(--primary);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-textarea {
  resize: vertical;
  min-height: 80px;
}
.btn-block {
  width: 100%;
  margin-top: 6px;
}

/* ============================================================
   福利待遇
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 280px));
  gap: 20px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}
.benefit-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--trans);
}
.benefit-card:hover {
  border-color: rgba(30, 107, 184, 0.35);
  transform: translateY(-3px);
}
.bc-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================
   供应商 - 高亮卡片
   ============================================================ */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.hl-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--trans);
}
.hl-card:hover { border-color: rgba(30, 107, 184, 0.35); transform: translateY(-2px); }
.hl-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.hl-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

.panel-cta { margin-top: 36px; }

/* ============================================================
   供应商申请 - 要求列表
   ============================================================ */
.req-list {
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.req-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* 供应商要求 - 三栏卡片 + 基本要求列表 */
.sup-require-wrap {
  max-width: 900px;
}
.sup-require-intro {
  margin-bottom: 32px;
  color: var(--text-muted);
  line-height: 1.8;
}
.sup-require-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sup-require-cards {
    grid-template-columns: 1fr;
  }
}
.sup-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--trans);
}
.sup-card:hover {
  border-color: rgba(30, 107, 184, 0.3);
  box-shadow: var(--shadow-sm);
}
.sup-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sup-fusion {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.sup-fusion .sup-principles,
.sup-fusion .sup-need,
.sup-fusion .sup-ban { margin-top: 0; }
.sup-principles-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.sup-principles,
.sup-need,
.sup-ban { margin-top: 28px; }
.principle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.principle-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(30, 107, 184, 0.25);
  border-radius: 20px;
}
.principle-tag--ban {
  color: var(--text);
  background: var(--surface-3);
  border-color: var(--border);
}
.sup-fusion .sup-principles .principle-tags,
.sup-fusion .sup-need .principle-tags,
.sup-fusion .sup-ban .principle-tags {
  margin-bottom: 0;
}

.sup-require-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.sub-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}

/* ============================================================
   供应商要求 - 编号列表
   ============================================================ */
.require-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.req-item:hover { border-color: rgba(30, 107, 184, 0.25); }

.req-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-top: 2px;
}
.req-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.req-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.7; }

/* ============================================================
   联系我们
   ============================================================ */
.contact-info-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.contact-info-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-list p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0;
}
.contact-info-list a { color: var(--primary); }

/* 多办公点：网格展示 */
.contact-offices {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-offices {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-office-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.contact-office p {
  margin-bottom: 6px;
}
.contact-office p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   廉政举报 - 三个大主体 + 在线举报
   ============================================================ */
.report-page { max-width: 100%; }
.report-intro {
  margin-bottom: 32px;
}
.report-intro h3 { margin-bottom: 16px; }
.report-intro p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.report-intro p:last-child { margin-bottom: 0; }

/* 第一行：举报渠道（四个板块一排） */
.report-block-channel {
  margin-bottom: 24px;
}
/* 第二行：举报有奖 + 保密承诺（两列） */
.report-two-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .report-two-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.report-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.report-block-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

/* 主体一：举报渠道 - 四种联系方式 */
.report-block-channel .channel-grid {
  display: grid;
  gap: 16px;
}
.channel-grid-four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .channel-grid-four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .channel-grid-four { grid-template-columns: 1fr; }
}
.channel-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--trans);
  min-height: 120px;
}
.channel-card:hover { border-color: var(--primary); }
.channel-card .ch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.channel-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.channel-card .ch-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  word-break: break-all;
}
.channel-card .ch-val a {
  color: var(--primary);
  text-decoration: none;
}
.channel-card .ch-val a:hover { text-decoration: underline; }
.channel-card .ch-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 8px 0 0 0;
  line-height: 1.4;
}
/* 微信举报：二维码图 */
.channel-card-wx .ch-qr {
  margin: 4px 0 10px 0;
}
.channel-card-wx .ch-qr img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.channel-card-wx .ch-val {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* 主体二：举报有奖 */
.report-block-reward .reward-slogan {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 16px 0;
}
.reward-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.reward-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  padding-left: 0;
}
.reward-list li:last-child { margin-bottom: 0; }
.reward-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-right: 8px;
  margin-bottom: 4px;
}
.reward-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* 主体三：保密承诺 */
.privacy-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.privacy-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* 在线举报 - 独立一块全宽 */
.report-block-form {
  margin-bottom: 0;
}
.report-block-form .form-card { margin-top: 0; }

.report-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.rp-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.rp-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.rp-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: 240px 1fr; gap: 64px; }
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
@media (min-width: 600px) {
  .footer-nav { grid-template-columns: repeat(4, 1fr); }
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--trans);
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================================
   响应式补丁
   ============================================================ */
@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .hstat { border-right: none; padding-right: 0; }

  .page-section { padding: 64px 0; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .news-item { flex-direction: column; gap: 12px; }
  .news-date { flex-direction: row; width: auto; gap: 6px; align-items: baseline; }
  .nd-month { font-size: 1rem; }

  .req-item { flex-direction: column; gap: 12px; }

  .footer-nav { grid-template-columns: 1fr 1fr; }
}
