/* ============================================
   杭州聚瑞堡网络科技有限公司 - 全站样式
   简洁现代, 易于阅读与维护
   ============================================ */

:root {
  --color-primary: #1A2B3C;
  --color-primary-dark: #14212E;
  --color-primary-light: #2D9CDB;
  --color-accent: #2D9CDB;
  --color-accent-dark: #1F4F8A;
  --color-text: #1F2937;
  --color-text-light: #6B7280;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F9FAFB;
  --color-bg-section: #F3F4F6;
  --color-border: #E5E7EB;
  --color-success: #10B981;
  --color-danger: #EF4444;
  --color-warning: #F59E0B;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: var(--color-primary); }
textarea { resize: vertical; min-height: 100px; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; color: var(--color-text); }
h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }

/* ============= 容器 ============= */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; width: 100%; }
main { flex: 1; padding-bottom: 40px; }

/* ============= 顶部导航（墨金极简风 · 单层深色固定栏） ============= */
.topbar {
  background: #07101F;
  color: #8A93A6;
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,169,97,0.18);
  letter-spacing: 0.2px;
}
.topbar a { color: #8A93A6; transition: color .2s; }
.topbar a:hover { color: #C9A961; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-info { display: flex; gap: 22px; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info .tb-ico { width: 13px; height: 13px; opacity: .7; }
.topbar-links { display: flex; gap: 20px; }

.navbar {
  background: rgba(11,20,38,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(201,169,97,0.22);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand-text { font-size: 16px; font-weight: 700; color: #F5F1E8; white-space: nowrap; letter-spacing: 0.5px; }
.brand-text small { display: block; font-size: 10.5px; color: #C9A961; font-weight: 500; margin-top: 2px; letter-spacing: 1.2px; text-transform: uppercase; }

.nav-list { display: flex; gap: 4px; list-style: none; flex: 1; justify-content: center; flex-wrap: nowrap; overflow: hidden; }
.nav-list a {
  display: block;
  position: relative;
  padding: 10px 16px;
  color: #C3CAD7;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, #E8D4A0);
  transition: width .25s ease, left .25s ease;
  border-radius: 2px;
}
.nav-list a:hover { color: #F5F1E8; }
.nav-list a:hover::after { width: 60%; left: 20%; }
.nav-list a.active { color: #C9A961; }
.nav-list a.active::after { width: 60%; left: 20%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions a, .nav-actions button {
  color: #C3CAD7;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid rgba(201,169,97,0.55);
  border-radius: 999px;
  color: #E8D4A0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.22s;
  background: transparent;
}
.nav-cta:hover { background: #C9A961; color: #07101F; border-color: #C9A961; }
.nav-user { color: #C9A961; font-weight: 600; font-size: 13px; }
.cart-icon {
  position: relative;
  display: inline-block;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-danger);
  color: white;
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  display: none;
}
.cart-count.active { display: block; }

.mobile-menu-btn { display: none; background: none; font-size: 24px; color: var(--color-text); padding: 4px 8px; }

/* ============= 页脚（墨金极简品牌风） ============= */
.footer {
  background: #07101F;
  color: #8A93A6;
  padding: 0;
  margin-top: 64px;
  font-size: 13px;
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #C9A961 18%, #E8D4A0 50%, #C9A961 82%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 52px 0 36px;
}
.footer h4 {
  color: #C9A961;
  font-size: 12px;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 11px; }
.footer-list a { color: #8A93A6; font-size: 13px; transition: color .2s, padding-left .2s; }
.footer-list a:hover { color: #E8D4A0; padding-left: 5px; }
.footer-info h4 { color: #F5F1E8; font-size: 17px; letter-spacing: 0.5px; text-transform: none; margin-bottom: 10px; font-weight: 700; }
.footer-info p { margin-bottom: 5px; color: #6B7383; font-size: 12.5px; line-height: 1.8; }
.footer-info p strong { color: #C3CAD7; font-weight: 500; }
.footer-brand-line { width: 32px; height: 2px; background: #C9A961; margin: 14px 0; }
.footer-bottom {
  border-top: 1px solid rgba(201,169,97,0.14);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #5C6373;
  font-size: 12px;
  line-height: 1.7;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #8A93A6; }
.footer-bottom a:hover { color: #C9A961; }
.beian { display: inline-flex; align-items: center; gap: 4px; }
.footer-admin-entry { color: #5C6373 !important; font-size: 11px; opacity: 0.6; transition: opacity .2s; }
.footer-admin-entry:hover { opacity: 1; color: #8A93A6 !important; }

/* ============= 按钮 ============= */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--color-primary); color: white; }
.btn-primary:hover { background: var(--color-primary-dark); color: white; }
.btn-accent { background: var(--color-accent); color: white; }
.btn-accent:hover { background: var(--color-accent-dark); color: white; }
.btn-outline { background: white; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: white; }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-bg-soft); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { display: block; width: 100%; }
.btn-danger { background: var(--color-danger); color: white; }
.btn-danger:hover { background: #DC2626; }

/* ============= 卡片 ============= */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-body { padding: 20px; }
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--color-bg-section);
}

/* ============= 栅格 ============= */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ============= 通用区块 ============= */
.section { padding: 48px 0; }
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}
.section-title h2 { font-size: 22px; }
.section-title h2 small { color: var(--color-text-light); font-size: 14px; font-weight: 400; margin-left: 8px; }
.section-title a { color: var(--color-text-light); font-size: 14px; }

/* ============= Hero ============= */
.hero {
  background: linear-gradient(135deg, #1A2B3C 0%, #2D9CDB 100%);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { font-size: 40px; margin-bottom: 16px; line-height: 1.2; color: white; }
.hero p { font-size: 17px; margin-bottom: 28px; opacity: 0.95; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-primary { background: white; color: var(--color-primary); }
.hero .btn-primary:hover { background: var(--color-bg-soft); }
.hero .btn-outline { background: transparent; color: white; border-color: white; }
.hero .btn-outline:hover { background: white; color: var(--color-primary); }

/* ============= 行业入口 ============= */
.industry-entries { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.entry-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
  display: block;
  color: var(--color-text);
}
.entry-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--color-text);
}
.entry-icon { font-size: 40px; margin-bottom: 8px; }
.entry-card h3 { font-size: 16px; margin-bottom: 4px; }
.entry-card p { font-size: 13px; color: var(--color-text-light); }

/* ============= 信息卡(列表用) ============= */
.info-card {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card img { width: 160px; height: 110px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.info-card-body { flex: 1; min-width: 0; }
.info-card h3 { font-size: 16px; margin-bottom: 6px; }
.info-card h3 a { color: var(--color-text); }
.info-card h3 a:hover { color: var(--color-primary); }
.info-card-meta {
  display: flex;
  gap: 12px;
  color: var(--color-text-light);
  font-size: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.info-card-meta .tag {
  background: #ECFDF5;
  color: var(--color-primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.info-card p { color: var(--color-text-light); font-size: 13px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============= 商品卡 ============= */
.product-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card .img {
  width: 100%;
  height: 200px;
  background: var(--color-bg-section);
  object-fit: cover;
}
.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 14px; line-height: 1.4; margin-bottom: 8px; height: 40px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-card .price { color: var(--color-danger); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.product-card .price small { font-size: 12px; color: var(--color-text-light); text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.product-card .meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--color-text-light); margin-top: auto; }
.product-card .actions { display: flex; gap: 8px; margin-top: 12px; }
.product-card .actions .btn { flex: 1; }

/* ============= 面包屑 ============= */
.breadcrumb {
  background: var(--color-bg-soft);
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-light);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 8px; color: #D1D5DB; }
.breadcrumb .current { color: var(--color-text); }

/* ============= 标签 / 徽章 ============= */
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  background: var(--color-bg-section);
  color: var(--color-text-light);
  margin-right: 4px;
}
.tag-primary { background: #ECFDF5; color: var(--color-primary); }
.tag-accent { background: #FEF3C7; color: var(--color-accent-dark); }
.tag-danger { background: #FEE2E2; color: var(--color-danger); }
.tag-success { background: #D1FAE5; color: #047857; }
.tag-info { background: #DBEAFE; color: #1D4ED8; }
.tag-warn { background: #FEF3C7; color: #92400E; }

/* ============= 列表 / Tab ============= */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--color-border); margin-bottom: 24px; flex-wrap: wrap; }
.tab {
  padding: 12px 20px;
  font-size: 15px;
  color: var(--color-text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-weight: 500;
}
.tab:hover { color: var(--color-primary); }
.tab.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

/* ============= 表单 ============= */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--color-text); }
.form-group label .req { color: var(--color-danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.form-help { font-size: 12px; color: var(--color-text-light); margin-top: 4px; }
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-item, .checkbox-item { display: flex; align-items: center; gap: 6px; cursor: pointer; padding: 6px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); transition: all 0.2s; }
.radio-item:hover, .checkbox-item:hover { border-color: var(--color-primary); }
.radio-item input, .checkbox-item input { width: auto; margin: 0; }
.radio-item.checked, .checkbox-item.checked { background: #ECFDF5; border-color: var(--color-primary); color: var(--color-primary); }

/* ============= 模态框 ============= */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-mask.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 380px;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border-radius: 50%;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--color-border); }
.modal-title { text-align: center; font-size: 18px; margin-bottom: 20px; }
.modal-body { text-align: center; }
.modal-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px;
  background: white;
}
.modal-qr img { width: 100%; height: 100%; object-fit: contain; }
.modal-amount { font-size: 16px; margin: 12px 0; color: var(--color-text); }
.modal-amount .price { color: var(--color-danger); font-size: 24px; font-weight: 600; margin-left: 4px; }
.modal-tip { font-size: 13px; color: var(--color-text-light); margin: 12px 0 20px; line-height: 1.5; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; }

/* ============= Toast 提示 ============= */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(31, 41, 55, 0.95);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: 14px;
  transition: transform 0.3s;
  box-shadow: var(--shadow-lg);
  max-width: 90%;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--color-success); }
.toast.error { background: var(--color-danger); }
.toast.warn { background: var(--color-warning); }

/* ============= 通用辅助 ============= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-danger { color: var(--color-danger); }
.text-light { color: var(--color-text-light); }
.text-sm { font-size: 13px; }
.text-lg { font-size: 18px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 8px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--color-border); margin: 16px 0; }
.placeholder-img {
  width: 100%;
  height: 100%;
  background: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 13px;
}

/* ============= 分页 ============= */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  background: white;
}
.pagination a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pagination .active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.pagination .disabled { color: var(--color-text-light); pointer-events: none; }

/* ============= 响应式 ============= */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr !important; }
  .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* 资讯/评测/服务的 3 列布局在中等屏降为 2 列 */
  .news-layout, .review-layout, .service-layout { grid-template-columns: 200px 1fr !important; }
  .news-layout > aside:last-child, .review-layout > aside:last-child, .service-layout > aside:last-child { display: none; }
  /* 商城列表 2 列保留 */
  .list-layout { grid-template-columns: 160px 1fr !important; }
}
@media (max-width: 768px) {
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .hero { padding: 48px 0 40px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 14.5px; }
  .industry-entries { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .nav-list { display: none; }
  .mobile-menu-btn { display: block; color: #F5F1E8; }
  .nav-list.mobile-open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0B1426;
    flex-direction: column;
    padding: 14px;
    border-bottom: 1px solid rgba(201,169,97,0.22);
    z-index: 99;
  }
  .nav-list.mobile-open a { padding: 14px 12px; color: #C3CAD7; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-list.mobile-open a:last-child { border-bottom: none; }
  .nav-list.mobile-open a.active { color: #C9A961; }
  .nav-list.mobile-open a::after { display: none; }
  .brand-text small { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding: 36px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .info-card { flex-direction: column; }
  .info-card img { width: 100%; height: 180px; }
  .section { padding: 32px 0; }
  .navbar-inner { height: 60px; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(201,169,97,0.1); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat .num { font-size: 26px; }
  .hero-search { max-width: 100%; }
  /* 平板窄屏: 3 列布局 → 1 列堆叠 */
  .news-layout, .review-layout, .service-layout { grid-template-columns: 1fr !important; }
  .news-layout > aside, .review-layout > aside, .service-layout > aside { display: block; }
  .list-layout { grid-template-columns: 1fr !important; }
  .list-layout > aside { margin-bottom: 16px; }
  .list-layout > aside .card { padding: 12px; }
  .admin-tabs { font-size: 12px; }
  .admin-tab { padding: 10px 12px; }
  .module-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .industry-entries { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ============= Hero（墨金极简风 · 纯色大字+数据条） ============= */
.hero {
  background: #07101F;
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, #000 0%, transparent 75%);
}
.hero::after {
  content: '';
  position: absolute;
  right: -180px;
  top: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #C9A961;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #C9A961;
}
.hero-title {
  color: #F5F1E8;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}
.hero-title .hl {
  color: #C9A961;
  position: relative;
}
.hero-subtitle {
  color: #8A93A6;
  font-size: 16.5px;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 620px;
  font-weight: 400;
}
.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,97,0.28);
  border-radius: 4px;
  padding: 0;
  max-width: 560px;
  margin-bottom: 28px;
  transition: border-color 0.2s;
}
.hero-search:focus-within { border-color: rgba(201,169,97,0.6); }
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14.5px;
  padding: 14px 18px;
  color: #F5F1E8;
}
.hero-search input::placeholder { color: #5C6373; }
.hero-search button {
  border: none;
  background: #C9A961;
  color: #07101F;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.5px;
}
.hero-search button:hover { background: #E8D4A0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary {
  background: #C9A961;
  color: #07101F;
  border: none;
  font-weight: 700;
}
.hero-actions .btn-primary:hover { background: #E8D4A0; }
.hero-actions .btn-outline {
  background: transparent;
  color: #C9A961;
  border: 1px solid rgba(201,169,97,0.5);
}
.hero-actions .btn-outline:hover { background: rgba(201,169,97,0.1); border-color: #C9A961; }

/* HERO 数据统计条（替代原右侧卡片网格） */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(201,169,97,0.18);
}
.hero-stat {
  padding: 26px 24px 30px;
  border-right: 1px solid rgba(201,169,97,0.1);
  position: relative;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-size: 34px;
  font-weight: 800;
  color: #C9A961;
  line-height: 1;
  letter-spacing: -1px;
  font-family: Georgia, 'Times New Roman', serif;
}
.hero-stat .num small { font-size: 16px; font-weight: 600; color: #8A93A6; margin-left: 3px; }
.hero-stat .lbl {
  font-size: 12.5px;
  color: #6B7383;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ============= 全新信息卡片 .ic-card（深蓝玻璃渐变 · 全站统一） ============= */
.ic-card {
  position: relative;
  border-radius: 18px;
  padding: 24px 20px 18px;
  overflow: hidden;
  background: linear-gradient(155deg, #1A2B3C 0%, #1E3A5F 55%, #12263C 100%);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(45,156,219,0.25);
  box-shadow: 0 8px 24px rgba(10,20,35,0.18);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  height: auto;
}
.ic-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(10,20,35,0.38); border-color: transparent; }
.ic-card::before {
  content: ''; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,156,219,0.35), transparent 70%); transition: transform .5s; pointer-events: none;
}
.ic-card:hover::before { transform: scale(1.5); }
.ic-card .ic-num, .ic-card .icard-num {
  position: absolute; right: 12px; top: 4px; font-size: 46px; font-weight: 800;
  color: rgba(255,255,255,0.08); letter-spacing: -2px; font-family: Georgia, serif; pointer-events: none;
}
.ic-card .ic-top, .ic-card .icard-top { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.ic-card .ic-badge, .ic-card .icard-badge {
  width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 27px;
  background: linear-gradient(135deg, var(--band-color, #2D9CDB), rgba(45,156,219,0.25));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  transition: transform .35s;
}
.ic-card:hover .ic-badge, .ic-card:hover .icard-badge { transform: rotate(-8deg) scale(1.1); }
.ic-card .ic-tags, .ic-card .icard-tags { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ic-card .ic-tags em, .ic-card .icard-tags em { font-style: normal; font-size: 12px; color: #9FC8E8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ic-card .ic-tags i, .ic-card .icard-tags i { font-style: normal; font-size: 10.5px; color: rgba(255,255,255,0.55); }
.ic-card .ic-title, .ic-card .icard-title, .ic-card .ic-card-title { font-size: 16px; font-weight: 700; line-height: 1.45; margin: 2px 0 0; position: relative; z-index: 1; color: #fff; min-height: 0; }
.ic-card .ic-desc, .ic-card .icard-desc {
  font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,0.62); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  position: relative; z-index: 1; min-height: 42px;
}
.ic-card .ic-metrics, .ic-card .icard-metrics { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.ic-card .ic-stars, .ic-card .icard-stars { color: #F5C25E; font-size: 12px; letter-spacing: 1px; }
.ic-card .ic-price, .ic-card .icard-price { color: #7FD4F9; font-weight: 700; font-size: 13px; }
.ic-card .ic-region, .ic-card .icard-region { color: #7FD4F9; font-size: 12px; }
.ic-card .ic-bottom, .ic-card .icard-bottom {
  display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12); position: relative; z-index: 1;
}
.ic-card .ic-who, .ic-card .icard-who { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.7); min-width: 0; }
.ic-card .ic-who b, .ic-card .icard-who b {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #2D9CDB, #1F4F8A); display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
}
.ic-card .ic-who span, .ic-card .icard-who span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ic-card .ic-views, .ic-card .icard-views { margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.45); white-space: nowrap; }
.ic-card .ic-go, .ic-card .icard-go {
  font-size: 11.5px; font-weight: 600; color: #fff; white-space: nowrap;
  background: linear-gradient(135deg, #2D9CDB, #1F4F8A); padding: 5px 13px; border-radius: 20px;
  transition: background .2s;
}
.ic-card:hover .ic-go, .ic-card:hover .icard-go { background: linear-gradient(135deg, #3FB3EC, #2D9CDB); }
/* 旧类名兼容映射 */
.ic-card-band { display: none; }
.ic-card-head { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; padding: 0; }
.ic-card-icon {
  width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 27px;
  background: linear-gradient(135deg, var(--band-color, #2D9CDB), rgba(45,156,219,0.25));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.ic-card-tags { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ic-card-tag { font-style: normal; font-size: 12px; color: #9FC8E8; background: transparent; padding: 0; }
.ic-card-tag.muted { color: rgba(255,255,255,0.55); background: transparent; }
.ic-card-body { padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ic-card-summary { color: rgba(255,255,255,0.62); font-size: 12.5px; line-height: 1.7; margin: 0; min-height: 42px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ic-card-metric {
  display: flex; align-items: center; justify-content: space-between; padding: 8px 0 0;
  background: transparent; border-radius: 0; margin: 0; font-size: 12.5px; color: rgba(255,255,255,0.7);
}
.ic-card-metric .lbl { color: rgba(255,255,255,0.5); }
.ic-card-metric .val { color: #fff; font-weight: 600; }
.ic-card-metric .val.score, .ic-card-stars { color: #F5C25E; }
.ic-card-metric .val.price { color: #7FD4F9; font-size: 15px; }
.ic-card-metric .val.region { color: #7FD4F9; }
.ic-card-meta { color: rgba(255,255,255,0.45); font-size: 11px; margin: 0; }
.ic-card-meta .dot::before { content: "·"; margin-right: 6px; color: rgba(255,255,255,0.3); }
.ic-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding: 12px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12); background: transparent;
}
.ic-card-author { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.7); min-width: 0; }
.ic-card-avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #2D9CDB, #1F4F8A); font-size: 11px; flex-shrink: 0; }
.ic-card-author-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ic-card-cta {
  font-size: 11.5px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, #2D9CDB, #1F4F8A); padding: 5px 13px; border-radius: 20px; white-space: nowrap;
}
.ic-card-cta::after { content: "→"; margin-left: 3px; }
.ic-card:hover .ic-card-cta { background: linear-gradient(135deg, #3FB3EC, #2D9CDB); }

/* ============= 详情页丰富化样式 ============= */
.detail-hero { padding: 56px 0 44px; color: #fff; position: relative; overflow: hidden; }
.detail-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.15), transparent 50%);
  pointer-events: none;
}
.detail-hero .crumb { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.detail-hero .crumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.detail-hero .crumb a:hover { color: #fff; text-decoration: underline; }
.detail-hero .crumb .sep { opacity: .5; margin: 0 8px; }
.detail-hero h1 { color: #fff; font-size: 30px; line-height: 1.4; margin-bottom: 18px; max-width: 860px; }
.detail-hero .meta-row { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.92); }
.detail-hero .pill { display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 999px; font-size: 13px; background: rgba(255,255,255,.18); color: #fff; font-weight: 500; }
.detail-hero .pill.soft { background: rgba(255,255,255,.12); font-weight: 400; }

/* 详情页正文容器 */
.detail-body { display: grid; grid-template-columns: 1fr 320px; gap: 36px; }
.detail-main { min-width: 0; }
.detail-aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 16px; align-self: start; }
@media (max-width: 1024px) { .detail-body { grid-template-columns: 1fr; } .detail-aside { position: static; } }

/* 详情页内容板块 */
.dblock {
  background: #fff;
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 18px;
  border: 1px solid #EEF2F7;
  box-shadow: 0 1px 2px rgba(0,0,0,.02);
}
.dblock-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F3F4F6;
}
.dblock-title .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--band-soft, rgba(15,118,110,.10));
  color: var(--band-color, var(--color-primary));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.dblock p { color: #374151; line-height: 1.95; font-size: 15px; margin-bottom: 12px; }
.dblock h4 { font-size: 16px; color: #111827; margin: 18px 0 10px; font-weight: 600; }
.dblock ul { padding-left: 22px; color: #374151; line-height: 1.95; font-size: 15px; }
.dblock ul li { margin-bottom: 6px; }

/* 评分大圆盘 */
.score-board {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) { .score-board { grid-template-columns: 1fr; } }
.score-board .big {
  text-align: center;
  padding: 28px 16px;
  background: var(--band-soft, rgba(15,118,110,.06));
  border-radius: 14px;
}
.score-board .big .num { font-size: 56px; font-weight: 800; color: var(--band-color, var(--color-primary)); line-height: 1; }
.score-board .big .lbl { color: #6B7280; font-size: 13px; margin-top: 4px; }
.score-board .big .stars { color: #F59E0B; font-size: 16px; margin-top: 6px; letter-spacing: 2px; }
.score-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.score-row .name { width: 84px; font-size: 13px; color: #4B5563; }
.score-row .bar { flex: 1; height: 8px; background: #E5E7EB; border-radius: 4px; overflow: hidden; }
.score-row .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--band-color, #1A2B3C), rgba(15,118,110,.7)); border-radius: 4px; }
.score-row .v { width: 32px; text-align: right; font-size: 13px; color: var(--band-color, var(--color-primary)); font-weight: 600; }

/* 优缺点对比 */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons .col { padding: 18px; border-radius: 12px; }
.pros-cons .col.pros { background: #ECFDF5; }
.pros-cons .col.cons { background: #FEF2F2; }
.pros-cons .col h5 { font-size: 14px; font-weight: 600; margin: 0 0 10px; display: flex; align-items: center; gap: 6px; }
.pros-cons .col.pros h5 { color: #047857; }
.pros-cons .col.cons h5 { color: #B91C1C; }
.pros-cons .col ul { padding-left: 18px; color: #374151; font-size: 14px; line-height: 1.85; }

/* 参数表 */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { padding: 11px 14px; border-bottom: 1px solid #F3F4F6; text-align: left; }
.spec-table th { width: 28%; color: #6B7280; font-weight: 500; background: #F9FAFB; }
.spec-table td { color: #111827; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* 适合人群标签 */
.fit-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.fit-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--band-soft, rgba(15,118,110,.08));
  color: var(--band-color, var(--color-primary));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* 发布信息卡 */
.publish-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .publish-info { grid-template-columns: 1fr; } }
.publish-info .item { padding: 14px; background: #F8FAFC; border-radius: 10px; }
.publish-info .item .k { font-size: 12px; color: #6B7280; margin-bottom: 4px; }
.publish-info .item .v { font-size: 14px; font-weight: 600; color: #111827; }

/* 详情页侧边卡 */
.aside-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #EEF2F7;
  box-shadow: 0 1px 2px rgba(0,0,0,.02);
}
.aside-card h4 { font-size: 15px; margin: 0 0 14px; display: flex; align-items: center; gap: 6px; color: #111827; }
.aside-author { text-align: center; }
.aside-author .avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--band-color, var(--color-primary));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 600; margin-bottom: 10px;
}
.aside-author .name { font-size: 16px; font-weight: 600; color: #111827; }
.aside-author .role { font-size: 12.5px; color: #6B7280; margin: 4px 0 10px; }
.aside-rel { display: block; padding: 10px 0; border-bottom: 1px solid #F3F4F6; color: #374151; text-decoration: none; }
.aside-rel:last-child { border-bottom: none; }
.aside-rel:hover { color: var(--band-color, var(--color-primary)); }
.aside-rel .t { font-size: 13px; line-height: 1.5; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.aside-rel .m { font-size: 12px; color: #9CA3AF; }
.aside-cta {
  background: linear-gradient(135deg, var(--band-color, #1A2B3C), #2D9CDB);
  color: #fff; padding: 20px; border-radius: 14px; border: none;
}
.aside-cta h4 { color: #fff; }
.aside-cta p { color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
.aside-cta .btn { background: #fff; color: var(--band-color, var(--color-primary)); width: 100%; font-weight: 600; border: none; }

/* ============================================
   创新按钮式网站入口 (entry-btn-grid)
   5 列大按钮，渐变背景，hover 流光上浮
   ============================================ */
.entry-btn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 12px;
}
@media (max-width: 900px) { .entry-btn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .entry-btn-grid { grid-template-columns: 1fr; } }

.entry-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  min-height: 88px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--bc, #6366F1) 0%, var(--bc2, #8B5CF6) 100%);
  overflow: hidden;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,.18), 0 1px 2px rgba(0,0,0,.06);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, filter .25s ease;
  isolation: isolate;
}
.entry-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
  z-index: 1;
}
.entry-btn::after {
  content: '';
  position: absolute;
  left: -30%;
  top: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .6s ease;
  z-index: 2;
  pointer-events: none;
}
.entry-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.25), 0 4px 8px rgba(0,0,0,.08);
  filter: saturate(1.1) brightness(1.05);
}
.entry-btn:hover::after { left: 130%; }
.entry-btn:active { transform: translateY(-2px); }

.entry-btn-glow {
  position: absolute;
  width: 90px; height: 90px;
  right: -25px; top: -25px;
  background: radial-gradient(circle, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.entry-btn-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  z-index: 3;
  transition: transform .25s ease;
}
.entry-btn:hover .entry-btn-icon { transform: scale(1.08) rotate(-3deg); }

.entry-btn-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
}
.entry-btn-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  line-height: 1.3;
}
.entry-btn-desc {
  font-size: 12px;
  color: rgba(255,255,255,.82);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.entry-btn-arrow {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transform: translateX(-4px);
  opacity: .6;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 3;
}
.entry-btn:hover .entry-btn-arrow {
  transform: translateX(2px);
  opacity: 1;
}

/* 详情页目录 */
.detail-toc {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 13px;
}
.detail-toc strong { color: #111827; display: block; margin-bottom: 8px; font-size: 13px; }
.detail-toc a { color: var(--band-color, var(--color-primary)); text-decoration: none; margin-right: 14px; }
.detail-toc a:hover { text-decoration: underline; }

/* 操作栏 */
.action-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 20px; margin-top: 20px;
  border-top: 1px solid #F3F4F6;
}
.hero-stats .item .num small { font-size: 14px; font-weight: 500; opacity: 0.85; margin-left: 2px; }
.hero-stats .item .lbl { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 2px; }
@media (max-width: 900px) {
  .hero-title { font-size: 40px; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-stat .num { font-size: 24px; }
  .login-split { flex-direction: column !important; }
  .login-split-brand { display: none; }
  .login-split-form { padding: 36px 24px !important; }
}

/* ============= 信息详情页 · 全新布局（.dt-*） ============= */
.dt-hero {
  position: relative;
  background: linear-gradient(135deg, #1A2B3C 0%, #1E3A5F 60%, #16324A 100%);
  color: #fff;
  padding: 52px 0 46px;
  overflow: hidden;
}
.dt-hero::after {
  content: ''; position: absolute; left: -80px; bottom: -120px; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,156,219,0.30), transparent 70%); pointer-events: none;
}
.dt-hero::before {
  content: ''; position: absolute; right: 8%; top: -90px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,194,94,0.16), transparent 70%); pointer-events: none;
}
.dt-hero-inner { position: relative; z-index: 1; }
.dt-hero .crumb { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 18px; }
.dt-hero .crumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.dt-hero .crumb a:hover { color: #fff; }
.dt-hero .crumb .sep { margin: 0 8px; color: rgba(255,255,255,0.35); }
.dt-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.dt-pill {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85); font-size: 12px;
}
.dt-pill.strong { background: linear-gradient(135deg, #2D9CDB, #1F4F8A); border-color: transparent; color: #fff; font-weight: 600; }
.dt-title { font-size: 30px; font-weight: 800; line-height: 1.4; margin: 0 0 22px; letter-spacing: .01em; max-width: 860px; }
.dt-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.dt-meta-item {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px; color: rgba(255,255,255,0.9);
}
.dt-meta-item .ph { color: #7FD4F9; font-weight: 700; letter-spacing: .5px; }
.dt-layout { display: grid; grid-template-columns: 1fr 330px; gap: 26px; align-items: start; margin-top: -14px; }
.dt-main { min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.dt-card {
  background: #fff; border-radius: 16px; padding: 26px 28px;
  box-shadow: 0 4px 16px rgba(10,20,35,0.06);
  border: 1px solid #EEF2F7; position: relative; overflow: hidden;
}
.dt-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--band, #2D9CDB); }
.dt-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.dt-card-head .ico {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 19px;
  background: linear-gradient(135deg, var(--band, #2D9CDB), rgba(45,156,219,0.15));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.dt-card-head h3 { font-size: 17px; font-weight: 700; margin: 0; color: #1A2B3C; }
.dt-content { font-size: 15px; line-height: 2; color: #374151; }
.dt-content p { margin: 0 0 18px; }
.dt-content strong { color: #1A2B3C; }
.dt-summary {
  font-size: 15px; line-height: 1.95; color: #4B5563; padding: 14px 18px;
  background: #F8FAFC; border-radius: 12px; border-left: 3px solid var(--band, #2D9CDB);
}
.dt-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dt-list li {
  display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.7; color: #4B5563;
  padding: 12px 14px; background: #F8FAFC; border-radius: 10px;
}
.dt-list li::before { content: '✦'; color: var(--band, #2D9CDB); flex-shrink: 0; }
.dt-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.dt-stat {
  padding: 18px 12px; text-align: center; border-radius: 12px; background: linear-gradient(155deg, #1A2B3C, #1E3A5F);
  color: #fff;
}
.dt-stat .n { font-size: 26px; font-weight: 800; color: #7FD4F9; line-height: 1.1; }
.dt-stat .l { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.dt-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dt-tag {
  padding: 6px 14px; border-radius: 999px; font-size: 12.5px; color: #1A2B3C;
  background: linear-gradient(135deg, rgba(45,156,219,0.12), rgba(31,79,138,0.08));
  border: 1px solid rgba(45,156,219,0.25);
}
.dt-aside { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 16px; }
.dt-contact {
  position: relative; overflow: hidden; border-radius: 16px; padding: 26px 24px;
  background: linear-gradient(155deg, #1A2B3C, #1E3A5F); color: #fff;
  border: 1px solid rgba(45,156,219,0.3); box-shadow: 0 10px 30px rgba(10,20,35,0.25);
}
.dt-contact::before { content: ''; position: absolute; right: -50px; top: -50px; width: 170px; height: 170px; border-radius: 50%; background: radial-gradient(circle, rgba(45,156,219,0.35), transparent 70%); }
.dt-contact .kc { font-size: 11px; letter-spacing: .2em; color: #7FD4F9; margin-bottom: 14px; position: relative; }
.dt-contact .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; font-size: 13.5px; }
.dt-contact .row .k { color: rgba(255,255,255,0.6); }
.dt-contact .row .v { color: #fff; font-weight: 500; }
.dt-contact .row .v.tel { color: #7FD4F9; font-weight: 700; letter-spacing: .5px; }
.dt-contact .btn-tel {
  display: block; margin-top: 16px; padding: 12px 0; text-align: center; border-radius: 10px; position: relative;
  background: linear-gradient(135deg, #2D9CDB, #1F4F8A); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all .2s;
}
.dt-contact .btn-tel:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,156,219,0.4); }
.dt-side-card { background: #fff; border-radius: 16px; padding: 20px 22px; border: 1px solid #EEF2F7; box-shadow: 0 4px 16px rgba(10,20,35,0.05); }
.dt-side-card h4 { font-size: 15px; font-weight: 700; color: #1A2B3C; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid #EEF2F7; }
.dt-rel { display: flex; flex-direction: column; gap: 10px; }
.dt-rel-item {
  display: block; padding: 12px 14px; border-radius: 12px; text-decoration: none;
  background: linear-gradient(155deg, #1A2B3C, #1E3A5F); color: #fff;
  border: 1px solid rgba(45,156,219,0.2); transition: transform .25s;
}
.dt-rel-item:hover { transform: translateX(4px); }
.dt-rel-item .t { font-size: 13px; font-weight: 600; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dt-rel-item .m { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 5px; }
.dt-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(135deg, #1A2B3C, #1E3A5F); border-radius: 16px; padding: 22px 26px; color: #fff;
  border: 1px solid rgba(45,156,219,0.3);
}
.dt-cta h4 { margin: 0 0 4px; font-size: 16px; }
.dt-cta p { margin: 0; font-size: 12.5px; color: rgba(255,255,255,0.6); }
.dt-cta .btn { background: linear-gradient(135deg, #2D9CDB, #1F4F8A); color: #fff; border: none; }
.dt-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.dt-actions .btn { border-radius: 8px; }
@media (max-width: 1024px) {
  .dt-layout { grid-template-columns: 1fr; }
  .dt-aside { position: static; }
  .dt-title { font-size: 24px; }
}
@media (max-width: 640px) {
  .dt-card { padding: 20px 18px; }
  .dt-meta-item { padding: 7px 12px; font-size: 12px; }
}

/* ============= 搜索/通用信息卡 .info-card（统一深蓝渐变） ============= */
.info-card {
  position: relative;
  border-radius: 16px;
  padding: 18px 22px;
  overflow: hidden;
  background: linear-gradient(155deg, #1A2B3C 0%, #1E3A5F 60%, #12263C 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(45,156,219,0.25);
  box-shadow: 0 6px 20px rgba(10,20,35,0.16);
  transition: transform .3s, box-shadow .3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10,20,35,0.3); }
.info-card .info-card-body { position: relative; z-index: 1; }
.info-card .info-card-meta { margin-bottom: 8px; color: #9FC8E8; }
.info-card h3 { color: #fff !important; font-size: 15.5px; line-height: 1.5; margin: 0 0 6px; }
.info-card p { color: rgba(255,255,255,0.62) !important; font-size: 12.5px; line-height: 1.7; margin: 0; }
.info-card .tag { color: #9FC8E8; }
.info-card .text-light { color: rgba(255,255,255,0.6) !important; }

/* ============= 登录/注册（墨金分屏风） ============= */
.login-split {
  display: flex;
  min-height: calc(100vh - 70px);
  background: #F4F7FA;
}
.login-split-brand {
  flex: 1;
  background: #07101F;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  color: #F5F1E8;
}
.login-split-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 40% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 40% 50%, #000 0%, transparent 75%);
  pointer-events: none;
}
.login-split-brand::after {
  content: '';
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.lsb-inner { position: relative; z-index: 1; max-width: 420px; }
.lsb-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: #C9A961; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 26px;
}
.lsb-eyebrow::before { content: ''; width: 28px; height: 1px; background: #C9A961; }
.lsb-title {
  font-size: 38px; font-weight: 800; color: #F5F1E8;
  line-height: 1.2; margin-bottom: 22px; letter-spacing: -0.5px;
}
.lsb-title .hl { color: #C9A961; }
.lsb-desc { font-size: 15px; color: #8A93A6; line-height: 1.85; margin-bottom: 36px; }
.lsb-features { list-style: none; }
.lsb-features li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(201,169,97,0.12);
}
.lsb-features li:last-child { border-bottom: none; }
.lsb-feat-num {
  font-family: Georgia, serif; font-size: 18px; font-weight: 700;
  color: #C9A961; min-width: 26px; line-height: 1.4;
}
.lsb-feat-text strong { display: block; color: #F5F1E8; font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.lsb-feat-text span { color: #6B7383; font-size: 12.5px; line-height: 1.6; }

.login-split-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 48px;
}
.lsf-box { width: 100%; max-width: 400px; }
.lsf-head { margin-bottom: 30px; }
.lsf-head h2 { font-size: 26px; font-weight: 700; color: #07101F; margin-bottom: 6px; letter-spacing: -0.3px; }
.lsf-head p { font-size: 13.5px; color: #6B7280; }
.lsf-tabs {
  display: flex; gap: 0; border-bottom: 2px solid #E5E7EB; margin-bottom: 26px;
}
.lsf-tabs button {
  flex: 1; padding: 12px 0; border: none; background: none; cursor: pointer;
  font-size: 15px; color: #6B7280; font-weight: 500; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.2s; letter-spacing: 0.3px;
}
.lsf-tabs button.active { color: #07101F; border-bottom-color: #C9A961; }
.lsf-tabs button:hover:not(.active) { color: #07101F; }

.lsf-field { margin-bottom: 18px; }
.lsf-field label { display: block; font-size: 12.5px; color: #374151; font-weight: 500; margin-bottom: 7px; letter-spacing: 0.2px; }
.lsf-field input {
  width: 100%; padding: 12px 14px; border: 1px solid #E5E7EB; border-radius: 6px;
  font-size: 14px; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  color: #07101F;
}
.lsf-field input:focus { border-color: #C9A961; box-shadow: 0 0 0 3px rgba(201,169,97,0.12); }
.lsf-field input::placeholder { color: #9CA3AF; }
.lsf-captcha-row { display: flex; gap: 10px; align-items: center; }
.lsf-captcha-row input { flex: 1; }
.lsf-submit {
  width: 100%; padding: 13px; border: none; border-radius: 6px;
  background: #07101F; color: #F5F1E8; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s; letter-spacing: 0.5px; margin-top: 6px;
}
.lsf-submit:hover { background: #C9A961; color: #07101F; }
.lsf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.lsf-foot { text-align: center; font-size: 12.5px; color: #6B7280; margin-top: 22px; padding-top: 20px; border-top: 1px solid #F3F4F6; }
.lsf-foot a { color: #07101F; }
.lsf-foot a:hover { color: #C9A961; }
.lsf-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; margin-bottom: 20px; }
.lsf-check { display: inline-flex; align-items: center; gap: 6px; color: #6B7280; cursor: pointer; }
.lsf-check input { width: 14px; height: 14px; accent-color: #C9A961; }
.lsf-link { color: #07101F; text-decoration: none; }
.lsf-link:hover { color: #C9A961; }
.lsf-agree { font-size: 12.5px; color: #6B7280; line-height: 1.7; margin-bottom: 18px; }
.lsf-agree a { color: #07101F; }
.lsf-agree a:hover { color: #C9A961; }
