/* ============================================================
   环球贸易会展 GlobalTrade 采购平台 · 中文站样式
   主题：深蓝 + 金色 商务风
   断点：768px（移动优先适配）
   ============================================================ */

:root {
  --navy-900: #0a1a33;
  --navy-800: #0e2447;
  --navy-700: #163a68;
  --navy-600: #1f4e8c;
  --blue-500: #2a6ab0;
  --blue-300: #6ea3d6;
  --gold: #d4af37;
  --gold-soft: #f0a020;
  --cream: #f6f3ea;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --text: #22314d;
  --text-soft: #5b6b85;
  --border: #e3e8f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 26, 51, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 26, 51, 0.16);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-soft); }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.35; color: var(--navy-800); }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-cream { background: var(--cream); }
.gold-text { color: var(--gold); }

/* ---------- 顶部信息条 ---------- */
.topbar { background: var(--navy-900); color: #c9d6ea; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 36px; flex-wrap: wrap; }
.topbar a { color: #c9d6ea; }
.topbar a:hover { color: var(--gold); }
.topbar .top-links a { margin-left: 18px; }
.topbar .lang a { padding: 2px 8px; border: 1px solid rgba(212,175,55,.5); border-radius: 4px; margin-left: 8px; color: var(--gold); }

/* ---------- 导航 ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; }
.brand-name { font-weight: 800; font-size: 19px; color: var(--navy-800); line-height: 1.2; }
.brand-name small { display: block; font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 2px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li > a { display: block; padding: 10px 14px; color: var(--text); font-size: 15px; font-weight: 500; border-radius: 8px; }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--gold-soft); background: rgba(212,175,55,.10); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--navy-800); cursor: pointer; padding: 4px 8px; }

/* ---------- 按钮 ---------- */
.btn { display: inline-block; padding: 12px 28px; border-radius: 999px; font-size: 15px; font-weight: 600; border: 2px solid transparent; cursor: pointer; text-align: center; transition: all .25s; }
.btn-primary { background: var(--navy-700); color: #fff; }
.btn-primary:hover { background: var(--navy-800); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #fff; }
.btn-gold:hover { filter: brightness(1.08); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-outline-dark { border-color: var(--navy-700); color: var(--navy-700); background: transparent; }
.btn-outline-dark:hover { background: var(--navy-700); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 38px; font-size: 16px; }

/* ---------- Hero（首页，图片背景） ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url("../images/banners/banner-home.svg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,26,51,.82) 0%, rgba(10,26,51,.45) 55%, rgba(10,26,51,.25) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-tag { display: inline-block; padding: 6px 16px; border: 1px solid var(--gold); color: var(--gold); border-radius: 999px; font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; background: rgba(10,26,51,.35); }
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 54px); font-weight: 800; max-width: 720px; margin-bottom: 18px; }
.hero h1 .gold-text { color: var(--gold); }
.hero p { color: #dbe6f5; font-size: clamp(15px, 2vw, 18px); max-width: 620px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 30px; color: var(--gold); }
.hero-stats .stat span { color: #c9d6ea; font-size: 13px; }

/* ---------- 内页 Banner（图片背景） ---------- */
.page-banner {
  position: relative;
  padding: 96px 0 84px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,51,.78), rgba(10,26,51,.55));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.page-banner .crumb { color: #c9d6ea; font-size: 14px; }
.page-banner .crumb a { color: var(--gold); }

/* ---------- 区块标题 ---------- */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.sec-head .kicker { color: var(--gold-soft); letter-spacing: 3px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin: 8px 0 14px; }
.sec-head p { color: var(--text-soft); font-size: 15px; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.sec-head-row .sec-head { text-align: left; margin: 0; }
.more-link { color: var(--navy-600); font-weight: 600; font-size: 14px; }
.more-link:hover { color: var(--gold-soft); }

/* ---------- 服务项目 ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 26px; transition: all .3s; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--gold), var(--gold-soft)); transform: scaleY(0); transition: transform .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleY(1); }
.service-card .icon { width: 62px; height: 62px; border-radius: 16px; background: rgba(31,78,140,.10); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card .icon svg { width: 34px; height: 34px; stroke: var(--navy-700); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: 14px; }

/* ---------- 卡片网格 ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-700); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .thumb img { transform: scale(1.06); }
.card .body { padding: 20px 22px; }
.card .body h3 { font-size: 17px; margin-bottom: 8px; }
.card .body h3 a { color: var(--navy-800); }
.card .body h3 a:hover { color: var(--gold-soft); }
.card .body p { color: var(--text-soft); font-size: 13.5px; }
.card-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-soft); margin-top: 12px; }
.card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tag { display: inline-block; padding: 3px 12px; border-radius: 999px; background: rgba(212,175,55,.15); color: #a8841c; font-size: 12px; font-weight: 600; }
.tag-blue { background: rgba(31,78,140,.12); color: var(--navy-600); }
.card-foot { border-top: 1px solid var(--border); padding: 14px 22px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.card-foot .price { color: var(--gold-soft); font-weight: 800; font-size: 18px; }
.price small { font-size: 12px; color: var(--text-soft); font-weight: 400; }

/* ---------- 展会公司简介板块（首页重点） ---------- */
.about-section { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #e8eef8; position: relative; overflow: hidden; }
.about-section::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(rgba(212,175,55,.22), transparent 70%); }
.about-section .container { position: relative; z-index: 2; }
.about-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.about-intro .kicker { color: var(--gold); letter-spacing: 3px; font-size: 13px; font-weight: 700; }
.about-intro h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin: 10px 0 18px; }
.about-intro p { color: #c9d6ea; font-size: 15px; margin-bottom: 14px; }
.about-intro ul { margin: 18px 0 26px; display: grid; gap: 10px; }
.about-intro li { color: #dbe6f5; font-size: 14.5px; padding-left: 26px; position: relative; }
.about-intro li::before { content: "✔"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.35); border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: all .3s; }
.about-stat:hover { transform: translateY(-5px); background: rgba(255,255,255,.10); }
.about-stat b { display: block; font-size: clamp(30px, 4vw, 42px); color: var(--gold); font-weight: 800; line-height: 1.1; }
.about-stat span { color: #c9d6ea; font-size: 14px; }

/* ---------- 资讯图文 ---------- */
.news-card { display: flex; gap: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all .3s; }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.news-card .thumb { width: 260px; flex-shrink: 0; border-radius: 10px; overflow: hidden; aspect-ratio: 16/10; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .body { flex: 1; display: flex; flex-direction: column; }
.news-card h3 { font-size: 18px; margin-bottom: 8px; }
.news-card p { color: var(--text-soft); font-size: 14px; flex: 1; }
.news-card .meta { font-size: 12.5px; color: var(--text-soft); margin-top: 12px; }

/* ---------- 订阅栏 ---------- */
.newsletter { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); border-radius: 20px; padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter h2 { color: #fff; font-size: 26px; margin-bottom: 6px; text-shadow: 0 1px 3px rgba(0,0,0,.2); }
.newsletter p { color: rgba(255,255,255,.92); font-size: 14px; }
.newsletter form { display: flex; gap: 10px; flex: 1; min-width: 320px; max-width: 520px; }
.newsletter input { flex: 1; padding: 14px 18px; border-radius: 999px; border: 0; font-size: 14px; outline: none; }
.newsletter .btn { background: var(--navy-800); color: #fff; }
.newsletter .btn:hover { background: var(--navy-900); }
.form-msg { display: none; font-size: 13px; margin-top: 8px; }
.form-msg.show { display: block; }
.form-msg.ok { color: #2e7d32; }
.form-msg.err { color: #c62828; }

/* ---------- 筛选栏 ---------- */
.filter-bar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 36px; }
.filter-bar form { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 14px; }
.filter-bar select, .filter-bar input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff; outline: none; }
.filter-bar select:focus, .filter-bar input:focus { border-color: var(--navy-600); }
.filter-bar .btn { white-space: nowrap; }

/* ---------- 面包屑 ---------- */
.breadcrumb { font-size: 13px; color: var(--text-soft); padding: 18px 0; }
.breadcrumb a { color: var(--navy-600); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--text); }

/* ---------- 列表页顶部工具条 ---------- */
.list-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.list-toolbar .count { color: var(--text-soft); font-size: 14px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination a { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 14px; }
.pagination a:hover, .pagination a.active { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }

/* ---------- 详情页 ---------- */
.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.detail-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; margin-bottom: 28px; }
.detail-card h2 { font-size: 24px; margin-bottom: 16px; }
.detail-card h3 { font-size: 18px; margin: 22px 0 12px; }
.detail-card p { color: var(--text-soft); font-size: 15px; margin-bottom: 12px; }
.detail-hero { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.detail-hero .img { aspect-ratio: 21/9; background: var(--navy-700); }
.detail-hero .img img { width: 100%; height: 100%; object-fit: cover; }
.detail-head { padding: 28px 34px; }
.detail-head h1 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-soft); font-size: 13.5px; margin-bottom: 16px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.side-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; }
.side-card h3 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
.side-list li { padding: 12px 0; border-bottom: 1px dashed var(--border); }
.side-list li:last-child { border-bottom: 0; }
.side-list a { color: var(--text); font-size: 14px; }
.side-list a:hover { color: var(--gold-soft); }
.spec-table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.spec-table td { padding: 12px 14px; border: 1px solid var(--border); font-size: 14px; }
.spec-table td:first-child { background: var(--bg-soft); font-weight: 600; color: var(--navy-800); width: 34%; }
.article-body { color: var(--text); font-size: 15.5px; }
.article-body h3 { color: var(--navy-800); margin: 24px 0 12px; }
.article-body p { margin-bottom: 14px; color: var(--text); }
.article-body img { border-radius: 10px; margin: 18px 0; }
.reserve-box { text-align: center; padding: 26px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); border-radius: var(--radius); color: #fff; margin-bottom: 24px; }
.reserve-box h3 { color: #fff; margin-bottom: 8px; }
.reserve-box p { color: #c9d6ea; font-size: 13.5px; margin-bottom: 16px; }

/* ---------- 时间线（公司简介） ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 3px; background: linear-gradient(var(--gold), var(--navy-600)); border-radius: 3px; }
.timeline-item { position: relative; padding: 0 0 28px 24px; }
.timeline-item::before { content: ""; position: absolute; left: -29px; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold); }
.timeline-item .year { color: var(--gold-soft); font-weight: 800; font-size: 17px; }
.timeline-item h4 { font-size: 17px; margin: 4px 0 6px; }
.timeline-item p { color: var(--text-soft); font-size: 14px; }

/* ---------- 公司简介页 ---------- */
.company-profile .profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.profile-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.profile-card .thumb { border-radius: 10px; overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/9; }
.profile-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.profile-card h3 { font-size: 19px; margin-bottom: 12px; }
.profile-card p { color: var(--text-soft); font-size: 14px; }
.vals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 12px; }
.val-card { text-align: center; padding: 26px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.val-card .ic { font-size: 34px; margin-bottom: 10px; }
.val-card h4 { font-size: 16px; margin-bottom: 8px; }
.val-card p { color: var(--text-soft); font-size: 13px; }
.honor-list li { padding: 14px 18px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; display: flex; align-items: center; gap: 14px; background: #fff; }
.honor-list .badge-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px; background: rgba(212,175,55,.15); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.honor-list h4 { font-size: 15px; margin-bottom: 2px; }
.honor-list p { color: var(--text-soft); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary { padding: 18px 22px; font-weight: 600; color: var(--navy-800); cursor: pointer; list-style: none; position: relative; padding-right: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--gold); }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-soft); font-size: 14.5px; }

/* ---------- 表单 / 认证 ---------- */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); }
.auth-card h1 { font-size: 26px; margin-bottom: 8px; text-align: center; }
.auth-card .sub { text-align: center; color: var(--text-soft); font-size: 14px; margin-bottom: 28px; }
.auth-card .field { margin-bottom: 18px; }
.auth-card label { display: block; font-size: 14px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.auth-card input, .auth-card select, .auth-card textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; outline: none; background: #fff; transition: border .2s; }
.auth-card input:focus, .auth-card select:focus, .auth-card textarea:focus { border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(31,78,140,.10); }
.auth-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth-card .btn { width: 100%; margin-top: 8px; }
.auth-card .hint { text-align: center; font-size: 13.5px; color: var(--text-soft); margin-top: 18px; }
.auth-card .hint a { color: var(--gold-soft); font-weight: 600; }
.segmented { display: flex; background: var(--bg-soft); border-radius: 12px; padding: 5px; margin-bottom: 24px; gap: 5px; }
.segmented button { flex: 1; padding: 11px; border: 0; background: transparent; border-radius: 9px; font-size: 14.5px; font-weight: 600; color: var(--text-soft); cursor: pointer; font-family: inherit; }
.segmented button.active { background: #fff; color: var(--navy-700); box-shadow: 0 2px 8px rgba(10,26,51,.10); }
.divider { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-size: 13px; margin: 22px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.form-msg { font-size: 13px; padding: 10px 14px; border-radius: 8px; margin-bottom: 16px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e8f5e9; color: #2e7d32; }
.form-msg.err { background: #fdecea; color: #c62828; }

/* ---------- 个人中心 ---------- */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.dash-side { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.profile-mini { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; padding: 26px; text-align: center; }
.profile-mini .avatar { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.2); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 12px; }
.profile-mini h3 { color: #fff; font-size: 17px; }
.profile-mini p { color: #c9d6ea; font-size: 13px; }
.dash-tabs { padding: 12px; display: grid; gap: 4px; }
.dash-tab { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; border: 0; background: transparent; font-size: 14.5px; font-weight: 500; color: var(--text); cursor: pointer; font-family: inherit; width: 100%; text-align: left; }
.dash-tab:hover { background: var(--bg-soft); }
.dash-tab.active { background: rgba(212,175,55,.15); color: #a8841c; font-weight: 700; }
.dash-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.dash-panel h2 { font-size: 22px; margin-bottom: 6px; }
.dash-panel .panel-sub { color: var(--text-soft); font-size: 13.5px; margin-bottom: 22px; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.dash-stat { background: var(--bg-soft); border-radius: 12px; padding: 20px; }
.dash-stat b { display: block; font-size: 26px; color: var(--navy-700); }
.dash-stat span { font-size: 13px; color: var(--text-soft); }
.list-group { display: grid; gap: 12px; }
.list-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; flex-wrap: wrap; }
.list-item h4 { font-size: 15px; }
.list-item .li-meta { color: var(--text-soft); font-size: 13px; }
.list-item .badge { padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge.badge-pending { background: #fff3e0; color: #e65100; }
.badge.badge-done { background: #e8f5e9; color: #2e7d32; }
.badge.badge-news { background: #e3f2fd; color: #1565c0; }
.empty-tip { text-align: center; color: var(--text-soft); padding: 40px 0; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--navy-900); color: #aebdd4; padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-grid h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--gold); }
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a { color: #aebdd4; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { font-size: 14px; margin-bottom: 18px; line-height: 1.8; }
.footer-contact li { display: flex; gap: 10px; }
.footer-contact li::before { content: "·"; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; text-align: center; font-size: 13px; color: #7f90a9; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; padding: 80px 22px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,.2); transition: right .35s; overflow-y: auto; z-index: 99;
  }
  .nav-list.open { right: 0; }
  .nav-list > li > a { padding: 14px 10px; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 16px; }
  .nav-actions .btn { display: none; }
  .hero { min-height: 520px; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat b { font-size: 24px; }
  .section { padding: 52px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .news-card { flex-direction: column; }
  .news-card .thumb { width: 100%; }
  .newsletter { padding: 34px 24px; }
  .newsletter form { min-width: 100%; }
  .filter-bar form { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .company-profile .profile-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; gap: 6px; padding: 6px 0; }
  .topbar .top-links { display: none; }
  .page-banner { padding: 72px 0 64px; }
}
@media (max-width: 560px) {
  .filter-bar form { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 22px; }
  .auth-card .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ---- H1 唯一性：详情/表单页内部大标题用 h2 呈现 h1 视觉 ---- */
.detail-head h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; color: var(--navy-800); font-weight: 800; }
.article-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 8px 0 14px; color: var(--navy-800); font-weight: 800; }
.p-info h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 10px; color: var(--navy-800); font-weight: 800; }
.auth-card h2 { font-size: 26px; margin-bottom: 8px; text-align: center; color: var(--navy-800); font-weight: 800; }
