:root{
  /* 基础色保持不变 */
  --bg:#0f172a;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --card:#ffffff;
  --alt:#f6f8fb;

  /* ✅ 改成你截图那套科技蓝 */
  --brand:#0A4FA3;
  --brand2:#083A7A;
  --shadow: 0 18px 45px rgba(15,23,42,.08);
  --radius: 18px;
  --radius2: 24px;
}


*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,Arial,sans-serif;
  color: var(--text);
  background:#fff;
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
.container{max-width:1160px;margin:0 auto;padding:0 16px}
.sep{opacity:.6;margin:0 10px}

/* topbar */
.topbar{
  background:#0b1220;
  color:#e5e7eb;
  font-size:12px;
}
.topbar-inner{
  display:flex;justify-content:space-between;align-items:center;
  padding:8px 0;
}
.topbar a{color:#e5e7eb;opacity:.95}
.topbar a:hover{opacity:1;text-decoration:underline}
.lang{padding:2px 6px;border-radius:999px}
.lang.active{background:rgba(255,255,255,.12)}

/* header */
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:12px 0;
}
.brand{display:flex;align-items:center;gap:10px;min-width:260px}
.brand-mark{
  width:34px;height:34px;border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow:0 10px 25px rgba(14,165,233,.18);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  height:42px;   /* 想更大：48/52 */
  width:auto;
  display:block;
}
.brand-text .brand-name{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.brand-text .brand-sub{
  font-size: 12px;
  color: #6b7280;
}
.brand-name{font-weight:800;font-size:18px}
.brand-sub{font-size:11px;color:var(--muted);margin-top:2px}

.nav{display:flex;align-items:center;gap:18px}
.nav-link{
  font-size:14px;color:#334155;padding:10px 8px;border-radius:10px;
}
.nav-link:hover{background:#f1f5f9}
.nav-link.active{color:var(--brand);font-weight:700}

.nav-dd{
  position: relative;
  padding-bottom: 0;   /* ✅ 关键：给鼠标下移留“缓冲区”，hover 不会断 */
}
.nav-dd::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:14px;     /* ✅ 这段就是鼠标下移缓冲区 */
}
.dd-panel{
  position:absolute;
  left:0;
  top:100%;        /* ✅ 紧贴导航底部 */
  margin-top:10px; /* 可选：往上贴一点，让缝更小 */
  z-index: 1000;          /* ✅ 防止被其它元素遮挡 */
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}

.dd-panel.dd-grid{min-width:520px;display:none;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
.dd-item{
  display:block;padding:10px 10px;border-radius:10px;
  font-size:13px;color:#0f172a;
}
.dd-item:hover{background:#f1f5f9}
.nav-dd:hover .dd-panel{display:block}
.nav-dd:hover .dd-panel.dd-grid{display:grid}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;border-radius:12px;
  padding:8px 10px;cursor:pointer;font-size:16px;
}

/* mobile nav */
.mnav{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
  padding:10px 16px 14px;
}
.mnav-link{
  display:block;padding:10px 10px;border-radius:12px;
  color:#334155;font-size:14px;
}
.mnav-link:hover{background:#f1f5f9}
.mnav-link.active{color:var(--brand);font-weight:700}
.mnav-lang{display:flex;gap:10px;padding:10px}

/* hero slider */
.hero{position:relative}
.hero-slider{position:relative;overflow:hidden}
.slide{
  position:relative;min-height:520px;
  display:none;
}
.slide.is-active{display:block}
.slide-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:saturate(1.05);
}
.slide-bg::after{
  content:"";
  position:absolute;inset:0;
  background: linear-gradient(90deg, rgba(3,7,18,.70) 0%, rgba(3,7,18,.40) 55%, rgba(3,7,18,.30) 100%);
}
.slide-content{
  position:relative;
  padding:86px 0 76px;
  color:#f8fafc;
  max-width:920px;
}
.kicker{
  display:inline-flex;
  font-size:12px;letter-spacing:.6px;
  padding:6px 10px;border-radius:999px;
  background: rgba(11,94,215,.20);
  border:1px solid rgba(11,94,215,.35);
  margin-bottom:14px;
}
.title{font-size:38px;line-height:1.15;font-weight:900;margin-bottom:14px}
.desc{font-size:14px;color:rgba(248,250,252,.88);max-width:780px;margin-bottom:22px}
.actions{display:flex;flex-wrap:wrap;gap:12px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 18px;border-radius:999px;
  font-size:14px;font-weight:700;cursor:pointer;
  border:1px solid transparent;
}
.btn.primary{background:var(--brand);color:#ecfeff}
.btn.primary:hover{background:var(--brand2)}
.btn.ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  color:#fff;
}
.btn.ghost:hover{background: rgba(255,255,255,.16)}

.slider-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:42px;height:42px;border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
  color:#fff;font-size:28px;line-height:0;
  cursor:pointer;
}
.slider-btn:hover{background: rgba(0,0,0,.28)}
.slider-btn.prev{left:18px}
.slider-btn.next{right:18px}

.dots{
  position:absolute;left:50%;bottom:16px;transform:translateX(-50%);
  display:flex;gap:8px;align-items:center;
}
.dot{
  width:9px;height:9px;border-radius:999px;
  background: rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.25);
  cursor:pointer;
}
.dot.active{background:#fff}

/* sections */
.section{padding:64px 0}
.section-alt{background:var(--alt)}
.section-head{max-width:860px;margin:0 auto 26px;text-align:center}
.section-head.row{display:flex;justify-content:space-between;align-items:flex-end;gap:12px;text-align:left;margin:0 0 18px}
.h2{font-size:24px;font-weight:900;color:#0f172a}
.p{font-size:14px;color:var(--muted);margin-top:6px}

.stats{
  display:grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.stat{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:#fff;
  box-shadow: 0 10px 26px rgba(15,23,42,.04);
}
.stat-num{font-size:26px;font-weight:900;color:var(--brand)}
.stat-label{font-size:12px;color:#475569;margin-top:4px}

/* cards */
.grid{display:grid;gap:14px}
.cards-3{grid-template-columns: repeat(3,minmax(0,1fr))}
.card{
  background:#fff;border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{transform: translateY(-2px);box-shadow: var(--shadow)}
.card-img{
  height:156px;background:#d1d5db;background-size:cover;background-position:center;
}
.card-body{padding:14px}
.tag{
  display:inline-flex;
  font-size:11px;font-weight:800;
  padding:3px 8px;border-radius:999px;
  background: rgba(32,138,204,.10);
  color: #1374B9;
  border: 1px solid rgba(32,138,204,.22);
}
.card-title{font-weight:900;margin-top:8px}
.card-desc{font-size:12px;color:var(--muted);margin-top:6px}

.center{display:flex;justify-content:center;margin-top:18px}

/* split */
.split{
  display:grid;
  grid-template-columns: minmax(0,3fr) minmax(0,2fr);
  gap:22px;
  align-items:start;
}
.list{margin-top:10px;color:#334155;font-size:13px;padding-left:18px}
.list li{margin:8px 0}
.split-media .note{font-size:12px;color:var(--muted);margin-top:10px}
.media-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.media{
  height:220px;border-radius: var(--radius2);
  border:1px solid var(--line);
  background:#d1d5db;background-size:cover;background-position:center;
  position:relative;overflow:hidden;
}
.media-cap{
  position:absolute;left:12px;bottom:12px;
  font-size:12px;font-weight:900;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(229,231,235,.9);
  padding:6px 10px;border-radius:999px;
}

/* news */
.news.card{padding:14px}
.news-date{font-size:12px;color:var(--muted)}
.news.card .card-title{margin-top:8px}
.news.card .card-desc{margin-top:6px}

/* cta */
.cta{
  padding:34px 0;
  background: linear-gradient(90deg, #0b1220 0%, #0f172a 60%, #0b1220 100%);
  color:#f8fafc;
}
.cta-inner{
  display:flex;justify-content:space-between;align-items:center;
  gap:14px;flex-wrap:wrap;
}
.cta-title{font-size:20px;font-weight:900}
.cta-desc{font-size:13px;color:rgba(248,250,252,.80);margin-top:6px}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap}

/* footer */
.footer{
  background:#0b1220;color:#e5e7eb;
  padding:34px 0 16px;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:16px;
}
.footer-brand{font-weight:900;font-size:16px}
.footer-sub{font-size:12px;color:rgba(229,231,235,.78);margin-top:6px}
.footer-title{font-weight:900;margin-bottom:10px}
.footer-link{
  display:block;font-size:12px;color:rgba(229,231,235,.82);
  margin:8px 0;
}
.footer-link:hover{color:#fff;text-decoration:underline}
.footer-text{font-size:12px;color:rgba(229,231,235,.82);margin:8px 0}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:18px;padding-top:12px;
  display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
  font-size:12px;color:rgba(229,231,235,.72);
}

/* placeholder helper */
.ph{
  background-color:#d1d5db;
  background-image: linear-gradient(90deg, rgba(255,255,255,.12) 0, rgba(255,255,255,.0) 35%, rgba(255,255,255,.12) 70%);
}

/* responsive */
@media (max-width: 980px){
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .mnav{display:none}
  .title{font-size:30px}
  .stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cards-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .split{grid-template-columns: minmax(0,1fr)}
  .footer-inner{grid-template-columns:1fr}
  .section-head.row{flex-direction:column;align-items:flex-start}
}

@media (max-width: 560px){
  .topbar-inner{flex-direction:column;gap:6px;align-items:flex-start}
  .title{font-size:24px}
  .slide{min-height:520px}
  .cards-3{grid-template-columns:1fr}
}
/* ===== Honor page ===== */
.honor-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.chip{
  border:1px solid var(--line);
  background:#fff;
  color:#334155;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.chip:hover{ background:#f1f5f9; }
.chip.is-active{
  border-color: rgba(32,138,204,.35);
  background: rgba(32,138,204,.10);
  color: var(--brand2);
}

.honor-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.honor-cover{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}
.honor-cover img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  border-bottom:1px solid var(--line);
}
.honor-item .card-body{ padding:14px; }

/* modal */
.honor-modal{
  position:fixed; inset:0;
  display:none;
  z-index:2000;
}
.honor-modal[aria-hidden="false"]{ display:block; }
.honor-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(2,6,23,.62);
}
.honor-modal-panel{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  width:min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  background:#fff;
  border-radius: 18px;
  border:1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.honor-modal-img{
  width:100%;
  height:auto;
  max-height: calc(100vh - 120px);
  object-fit:contain;
  background:#0b1220;
  display:block;
}
.honor-modal-close{
  position:absolute;
  right:10px; top:8px;
  width:36px; height:36px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.22);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

@media (max-width: 980px){
  .honor-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .honor-filters{ justify-content:flex-start; }
}
@media (max-width: 560px){
  .honor-grid{ grid-template-columns: 1fr; }
  .honor-cover img{ height:220px; }
}
/* ===== Honor header centered (PC) ===== */
.honor-head{
  display: flex;
  flex-direction: column;     /* 纵向结构 */
  align-items: center;        /* 整体水平居中 */
  text-align: center;         /* 文本居中 */
  gap: 14px;
}

/* 左侧标题区也居中 */
.honor-head-left{
  max-width: 760px;           /* 控制行宽，看起来高级 */
}

.honor-head-left h1{
  margin-bottom: 6px;
}

.honor-head-left p{
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

/* 筛选按钮居中 */
.honor-filters{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== PC 专属微调（更紧凑） ===== */
@media (min-width: 1024px){
  .honor-head{
    gap: 18px;
  }
}
.btn.muted{
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.btn.muted:hover{
  background: #e2e8f0;
}
.btn.outline{
  background: transparent;
  color: var(--brand2);
  border: 1px solid var(--brand2);
}

.btn.outline:hover{
  background: rgba(32,138,204,.08);
}
.btn.ghost{
  opacity: 1 !important;
  color: var(--brand2) !important;
  background: #fff !important;
  border: 1px solid rgba(32,138,204,.35) !important;
}
.btn.ghost:hover{
  background: rgba(32,138,204,.10) !important;
}
.btn.disabled, .btn:disabled{
  opacity: .45;              /* 只有真的禁用才灰 */
  cursor: not-allowed;
}

  /* 产品中心页头（对齐产品详情页风格） */
  .page-hero{
    padding:56px 0 26px;
    background:
      radial-gradient(1200px 420px at 20% 15%, rgba(32,138,204,.24), transparent 55%),
      linear-gradient(180deg,#0b1220 0%,#0f172a 70%,#0b1220 100%);
    color:#f8fafc;
  }
  .breadcrumbs{font-size:12px;color:rgba(248,250,252,.75);margin-bottom:10px}
  .breadcrumbs a{color:rgba(248,250,252,.92);text-decoration:underline;text-decoration-color:rgba(248,250,252,.25)}
  .hero-title{font-size:34px;line-height:1.15;font-weight:900;margin:0 0 10px}
  .hero-lead{color:rgba(248,250,252,.86);max-width:980px;margin:0}
  .chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
  .chip{
    display:inline-flex;align-items:center;gap:6px;
    padding:9px 12px;border-radius:999px;
    border:1px solid rgba(148,163,184,.35);
    background:rgba(255,255,255,.06);
    color:rgba(248,250,252,.92);
    font-size:13px;font-weight:700;
  }
  .chip.primary{
    background:rgba(32,138,204,.18);
    border-color:rgba(32,138,204,.40);
    color:#dff6ff;
  }

  /* 产品中心分组标题 */
  .group-title{margin:22px 0 10px;font-size:18px;font-weight:900;color:#0f172a}

/* =========================================================
   Consolidated styles (moved from per-page <style> blocks)
   Goal: allow deleting inline <style> in all HTML pages.
   ========================================================= */

/* ----- Unified inner-page hero (About / Products / Cases / News) ----- */
/* ===== 统一的深色 Hero（全站通用） ===== */
.page-hero{
  padding:56px 0 28px;
  background:
    radial-gradient(1100px 420px at 18% 18%, rgba(32,138,204,.22), transparent 55%),
    linear-gradient(180deg,#0b1220 0%,#0f172a 70%,#0b1220 100%);
  color:#f8fafc;
}

.page-hero .breadcrumbs{font-size:12px;color:rgba(248,250,252,.75);margin-bottom:10px}
.page-hero .breadcrumbs a{color:rgba(248,250,252,.92);text-decoration:underline;text-decoration-color:rgba(248,250,252,.25)}
.page-hero .hero-title{font-size:34px;line-height:1.15;font-weight:900;margin:0 0 10px}
.page-hero .hero-lead{color:rgba(248,250,252,.86);max-width:980px;margin:0}

/* Chips (filters) */
.chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background:rgba(255,255,255,.06);
  color:rgba(248,250,252,.92);
  font-size:13px;font-weight:800;
  text-decoration:none;
  transition:.15s ease;
  cursor:pointer;
}
.chip:hover{background:rgba(255,255,255,.10)}
.chip.primary{
  background:rgba(32,138,204,.18);
  border-color:rgba(32,138,204,.40);
  color:#dff6ff;
}

/* ----- Product detail hero tags + lead ----- */
.hero-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.hero-tags .tag{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background:rgba(255,255,255,.06);
  color:rgba(248,250,252,.9);
  font-size:12px;font-weight:800;
}
.lead{font-size:15px;line-height:1.9;color:rgba(248,250,252,.86);max-width:980px}
.muted{color:#64748b}

/* ----- KPI cards ----- */
.kpi{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:18px}
.stat{
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:14px 14px;
  box-shadow:0 10px 26px rgba(2,6,23,.06);
}
.stat-num{font-size:18px;font-weight:900;color:#0f172a}
.stat-label{margin-top:6px;color:#64748b;font-size:13px;font-weight:700}
@media (max-width:980px){
  .kpi{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .kpi{grid-template-columns:1fr}
}

/* ----- Two-column card grid used in product pages ----- */
.cards-2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:16px}
.card-pad{padding:16px}
@media (max-width:980px){
  .cards-2{grid-template-columns:1fr}
}

/* ----- Steps ----- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
.step{
  border:1px solid var(--line);
  background:#fff;border-radius:16px;
  padding:14px;
}
.step-num{
  width:34px;height:34px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(32,138,204,.12);
  border:1px solid rgba(32,138,204,.25);
  font-weight:900;color:#0f172a;
}
.step h3{margin:10px 0 6px;font-size:16px;font-weight:900;color:#0f172a}
.step p{margin:0;color:#475569}
@media (max-width:980px){
  .steps{grid-template-columns:1fr}
}

/* ----- Tables (spec / parameter) ----- */
.table-wrap{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.table{width:100%;border-collapse:collapse;font-size:14px}
.table th,.table td{padding:12px 14px;border-bottom:1px solid #e2e8f0;vertical-align:top}
.table th{background:#f8fafc;font-weight:900;color:#0f172a;text-align:left}
.table tr:last-child td{border-bottom:none}
.simple-table{width:100%;border-collapse:collapse}
.simple-table td{padding:10px 0;border-bottom:1px dashed #e2e8f0}
.simple-table tr:last-child td{border-bottom:none}

/* ----- Callout / points list ----- */
.callout{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:16px;
}
.points{padding-left:18px;color:#334155}
.points li{margin:6px 0}

/* ----- CTA row ----- */
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

/* =========================================================
   News list (news.html) cards
   ========================================================= */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px}
.news-card{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 28px rgba(2,6,23,.06);
  display:flex;flex-direction:column;
}
.news-cover{aspect-ratio:16/9;background:#0f172a}
.news-cover img{width:100%;height:100%;object-fit:cover;display:block}
.news-body{padding:14px 14px 16px}
.news-title{margin:0 0 8px;font-size:16px;font-weight:900;color:#0f172a}
.news-meta{display:flex;flex-wrap:wrap;gap:10px;color:#64748b;font-size:12px;font-weight:700}
.news-desc{margin:10px 0 0;color:#475569}
.news-actions{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}
@media (max-width:980px){.news-grid{grid-template-columns:1fr}}

/* =========================================================
   News article (news-detail-*.html)
   ========================================================= */
.article-hero{
  padding:56px 0 22px;
  background:linear-gradient(180deg,#0b1220 0%,#0f172a 75%,#0b1220 100%);
  color:#f8fafc;
}
.h1{font-size:30px;line-height:1.2;font-weight:900;margin:0 0 10px}
.meta{display:flex;flex-wrap:wrap;gap:10px;color:rgba(248,250,252,.80);font-size:13px}
.meta .tag{
  background:rgba(32,138,204,.18);
  border:1px solid rgba(32,138,204,.35);
  color:#dff6ff;
  border-radius:999px;
  padding:4px 10px;
}
.article-cover{margin-top:16px;border-radius:18px;overflow:hidden;border:1px solid rgba(148,163,184,.25)}
.article-cover img{width:100%;display:block}
.article{padding:24px 0 42px}
.article-section{margin-top:18px}
.article-section h2{font-size:18px;margin:0 0 10px;font-weight:900;color:#0f172a}
.article-section p{color:#334155}
.pager{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:18px}
.pager a{
  display:inline-flex;align-items:center;gap:8px;
  color:#0f172a;text-decoration:none;
  padding:10px 12px;border:1px solid var(--line);
  border-radius:12px;background:#fff;
}
.pager a:hover{background:#f8fafc}
@media (max-width:980px){.h1{font-size:26px}}

/* =========================================================
   Cases page (cases.html) simple list cards
   ========================================================= */
.case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px}
.case-card{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 28px rgba(2,6,23,.06);
  display:flex;flex-direction:column;
}
.case-cover {
  width: 100%;
  height: 180px;              /* 👈 关键：统一高度 */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;     /* 👈 关键：铺满裁切 */
  border-radius: 12px 12px 0 0;
}

.case-cover img{width:100%;height:100%;object-fit:cover;display:block}
.case-body{padding:14px 14px 16px}
.case-title{margin:0 0 8px;font-size:16px;font-weight:900;color:#0f172a}
.case-desc{margin:0;color:#475569}
.case-meta{margin-top:10px;display:flex;flex-wrap:wrap;gap:10px;color:#64748b;font-size:12px;font-weight:700}
@media (max-width:980px){.case-grid{grid-template-columns:1fr}}

/* =========================================================
   Contact page (contact.html)
   ========================================================= */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;margin-top:18px}
.contact-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:16px;
  box-shadow:0 12px 28px rgba(2,6,23,.06);
}
.info-list{margin:0;padding:0;list-style:none}
.info-list li{display:flex;gap:10px;margin:10px 0;color:#0f172a}
.info-list .k{min-width:68px;color:#64748b;font-weight:800}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.form-grid .full{grid-column:1/-1}
.input{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  outline:none;
  background:#fff;
}
.input:focus{border-color:rgba(32,138,204,.45);box-shadow:0 0 0 4px rgba(32,138,204,.12)}
@media (max-width:980px){
  .contact-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
}

/* =========================================================
   Honors page (honor.html) - gallery + filters
   ========================================================= */
.honor-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap}
.honor-filters{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
.honor-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:14px}
.honor-item{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(2,6,23,.06);
}
.honor-item img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover}
.honor-item .t{padding:10px 12px;font-weight:900;color:#0f172a}
@media (max-width:980px){.honor-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.honor-grid{grid-template-columns:1fr}}

/* =========================================================
   Hub cards (products.html / about.html sections if used)
   ========================================================= */
.hub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}
.hub-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:16px;
  box-shadow:0 12px 28px rgba(2,6,23,.06);
}
.hub-title{margin:0 0 6px;font-size:16px;font-weight:900;color:#0f172a}
.hub-desc{margin:0;color:#475569}
.hub-actions{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}
.hub-tag{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  background:#f1f5f9;border:1px solid #e2e8f0;
  color:#0f172a;font-size:12px;font-weight:800;
}
@media (max-width:980px){.hub-grid{grid-template-columns:1fr}}
.about-seg{
  margin-top:18px;
  display:flex;
  gap:6px;
  padding:6px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(148,163,184,.22);
  backdrop-filter: blur(10px);
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  width:fit-content;
  max-width:100%;
}
.seg-item{
  padding:10px 14px;
  border-radius:999px;
  white-space:nowrap;
  color:rgba(248,250,252,.82);
  font-size:13px;
  font-weight:900;
  transition:.15s ease;
}
.seg-item:hover{ background:rgba(255,255,255,.08); color:#fff; }
.seg-item.is-active{
  background: rgba(32,138,204,.26);
  border:1px solid rgba(32,138,204,.55);
  color:#e8f6ff;
  box-shadow: 0 14px 30px rgba(32,138,204,.18);
}
