/* ============================================================
   鸟哥规范标准库 · 粉丝网站 v4
   布局参考旧站：白色顶栏(Logo+品牌+搜索+登录) + 蓝色二级导航 + 广告位
   ============================================================ */

:root{
  --bg:#eef1f6; --card:#ffffff; --ink:#1f2937; --muted:#6b7280;
  --line:#dbe2ea; --brand:#185fa5; --brand-soft:#e6f1fb;
  --green:#3b6d11; --green-soft:#eaf3de; --chip:#e7ecf3;
  --accent-green:#22c55e;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:-apple-system,"Segoe UI","Microsoft YaHei",sans-serif;
  background:var(--bg); color:var(--ink); line-height:1.6;
  display:flex; flex-direction:column;
}

/* ========== 白色顶栏（对齐旧站布局） ========== */
.site-header{
  background:#fff; border-bottom:1px solid var(--line);
  padding:14px 24px; box-shadow:0 1px 4px rgba(0,0,0,.04);
}
.header-inner{
  max-width:1200px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}

/* 左侧：Logo + 品牌 */
.brand-area{display:flex;align-items:center;gap:10px}
.logo-icon{font-size:36px;line-height:1}
.brand-text{display:flex;flex-direction:column}
/* 首页 LOGO：与规范查新栏目同款 logo.jpg，尺寸/位置一致（61px 高度，不加 transform 避免溢出） */
.logo-link{display:inline-flex;align-items:center;text-decoration:none}
.logo-img{height:61px;width:auto;display:block}
.brand-name{
  font-size:22px;font-weight:800;color:var(--ink);letter-spacing:.5px;line-height:1.2
}
.brand-url{
  font-size:11.5px;color:var(--muted);line-height:1.2
}
.home-link{
  font-size:14px;color:var(--accent-green);font-weight:600;text-decoration:none;
  padding:3px 12px;border-radius:6px;background:rgba(34,197,94,.08);
  white-space:nowrap;transition:background .15s;
}
.home-link:hover{background:rgba(34,197,94,.16)}
.nav-link{
  font-size:14px;color:#fff;font-weight:600;text-decoration:none;
  padding:3px 14px;border-radius:6px;background:var(--brand);
  white-space:nowrap;transition:background .15s;
}
.nav-link:hover{background:var(--brand-dark,#165ba5)}

/* 右侧：登录/注册（搜索已移至主内容区） */
.header-right{display:flex;align-items:center;gap:8px}

.hdr-auth{display:flex;align-items:center;gap:8px;flex-shrink:0}
.btn-login{
  font-size:13px;font-weight:700;color:#fff;background:var(--accent-green);
  border:none;padding:8px 20px;border-radius:8px;cursor:pointer;
  transition:background .15s;white-space:nowrap;
}
.btn-login:hover{background:#1ea04d}
.btn-reg{
  font-size:13px;font-weight:600;color:var(--muted);background:none;
  border:1.5px solid var(--line);padding:7px 16px;border-radius:8px;
  cursor:pointer;transition:border-color .15s,color .15s;white-space:nowrap
}
.btn-reg:hover{border-color:var(--brand);color:var(--brand)}
.user-info{font-size:13px;display:flex;align-items:center;gap:8px}
.user-name{font-weight:600;color:var(--ink)}
.btn-logout{
  font-size:12px;color:var(--muted);cursor:pointer;text-decoration:underline;
  background:none;border:none;padding:0;
}
/* 右上角积分余额 + 每日领取 */
.hdr-points{
  font-size:13px;color:var(--brand);font-weight:700;white-space:nowrap;
  background:rgba(24,95,165,.08);border-radius:8px;padding:4px 10px;
}
.hdr-points b{color:var(--brand-dark,#165ba5)}
/* 未登录态的「登录可领积分」徽章（点击跳登录） */
.hdr-points-guest{cursor:pointer;text-decoration:none;transition:background .15s}
.hdr-points-guest:hover{background:rgba(24,95,165,.16)}
.hdr-points-guest b{color:#c2410c;font-weight:800}
.btn-claim{
  font-size:12px;font-weight:700;color:#fff;background:var(--accent-green,#22c55e);
  border:none;padding:5px 12px;border-radius:8px;cursor:pointer;white-space:nowrap;
  box-shadow:0 1px 4px rgba(34,197,94,.3);transition:background .15s;
}
.btn-claim:hover{background:#16a34a}
/* 资料文档 / 免费合集：积分兑换下载按钮（替代直链，走后端真锁） */
.lk.doc-btn{
  display:inline-flex;align-items:center;gap:4px;cursor:pointer;
  background:#fff7ed;color:#c2410c;border:1px solid #fed7aa;
  font-weight:600;text-decoration:none;
}
.lk.doc-btn:hover{background:#ffedd5;border-color:#fb923c}
.doc-tip{
  margin-top:8px;font-size:12.5px;color:var(--muted);
  background:rgba(34,197,94,.07);border:1px solid rgba(34,197,94,.18);
  border-radius:8px;padding:6px 10px;
}
.doc-tip b{color:var(--accent-green,#16a34a)}
/* Toast 唯一权威定义见下方 "Toast" 章节（约第 422 行附近）。v17 已合并重复定义。 */

/* ========== 蓝色二级导航（栏目 / 分栏目） ========== */
.sub-nav{
  background:var(--brand); box-shadow:0 2px 8px rgba(24,95,165,.18)
}
.sub-nav-inner{
  max-width:1200px;margin:0 auto;
  display:flex;flex-direction:row;flex-wrap:wrap;gap:2px;align-items:center;padding:4px 20px 6px;
}
.nav-levels{
  display:flex;gap:2px;flex-wrap:wrap;font-size:13px;padding:2px 0;width:100%;
}
.nl{
  color:rgba(255,255,255,.78);text-decoration:none;padding:5px 12px;
  border-radius:6px;white-space:nowrap;cursor:pointer;transition:all .15s;
  font-weight:500;user-select:none;display:inline-flex;align-items:center;gap:4px;
}
.nl:hover{background:rgba(255,255,255,.12);color:#fff}
.nl.on{background:rgba(255,255,255,.2);color:#fff;font-weight:700}
.nl .cnt{font-size:11px;opacity:.65;font-weight:400}
/* 规范查新：与栏目并列的蓝底白字按钮 */
.nl-chx{
  background:var(--brand-dark,#165ba5);color:#fff;font-weight:700;
  border-radius:6px;margin-left:8px;padding:5px 14px;
  box-shadow:0 1px 4px rgba(0,0,0,.18);
}
.nl-chx:hover{background:#0f4d8c;color:#fff}

/* 加入社群 / 公众号引流按钮（右上角白色顶栏） */
.nl-qr{
  background:#22c55e;color:#fff;font-weight:700;
  border-radius:6px;padding:6px 14px;font-size:13px;
  box-shadow:0 1px 4px rgba(0,0,0,.18);cursor:pointer;white-space:nowrap;
}
.nl-qr:hover{background:#16a34a;color:#fff}

/* 顶部导航下拉子栏目 */
.nl-wrap{position:relative;display:inline-flex;align-items:center}
.nl-arrow{font-size:9px;opacity:.65;margin-left:3px}
.nav-dropdown{
  display:none;position:absolute;top:100%;left:0;min-width:180px;max-width:320px;
  background:#fff;border:1px solid #dbe2ea;border-radius:10px;
  box-shadow:0 10px 28px rgba(0,0,0,.14);padding:6px 0;z-index:200;
  max-height:380px;overflow-y:auto;
}
.nl-wrap:hover .nav-dropdown{display:block}
.nd-item{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  padding:7px 16px;font-size:13px;color:#334155;text-decoration:none;white-space:nowrap;
  transition:background .12s;
}
.nd-item:hover{background:#eef4fc;color:var(--brand)}
.nd-cnt{font-size:11px;color:#94a3b8;font-weight:500}
.nd-loading,.nd-empty{padding:8px 16px;font-size:12px;color:#94a3b8}

.nav-series{
  display:flex;gap:2px;flex-wrap:wrap;font-size:12px;padding:1px 0 2px;
}
.ns{
  color:rgba(255,255,255,.58);text-decoration:none;padding:3px 10px;
  border-radius:5px;white-space:nowrap;cursor:pointer;transition:all .15s;
  font-weight:400;user-select:none;
}
.ns:hover{background:rgba(255,255,255,.1);color:rgba(255,255,255,.88)}
.ns.on{background:rgba(255,255,255,.16);color:#fff;font-weight:600}

/* ========== 主内容区 ========== */
.container{
  flex:1;width:100%;max-width:1200px;margin:0 auto;
  padding:16px 20px 28px;
}

/* 搜索 + 访问筛选（一行） */
.search-extra{
  display:flex;align-items:center;gap:10px;font-size:13px;color:var(--muted);
  margin-bottom:12px;flex-wrap:wrap;
}
.search-extra label{font-weight:600;white-space:nowrap}
.search-extra select{
  padding:7px 11px;font-size:13px;border:1px solid var(--line);
  border-radius:8px;background:#fff;outline:none;cursor:pointer;
}
.search-extra select:focus{border-color:var(--brand)}

/* 主搜索框（粗蓝边框 + 右侧搜索按钮） */
.main-search{
  position:relative;flex:1;min-width:260px;max-width:520px;
  display:flex;align-items:center;border:2.5px solid var(--brand);
  border-radius:10px;background:#fff;overflow:hidden;
}
.main-search-ico{
  position:absolute;left:12px;top:50%;transform:translateY(-50%);
  font-size:15px;pointer-events:none;color:#8b9bb0;z-index:1
}
.main-search input{
  flex:1;width:0;padding:11px 14px 11px 38px;font-size:14px;
  border:none;background:transparent;
  outline:none;font-size:14px;color:#333;
}
.main-search input::placeholder{color:#a0aab8}
.btn-search{
  flex-shrink:0;padding:11px 22px;font-size:15px;font-weight:600;
  color:#fff;background:var(--brand);border:none;cursor:pointer;
  transition:background .2s;white-space:nowrap;line-height:1;
}
.btn-search:hover{background:var(--brand-dark,#165ba5)}

/* ---- 统计报表 dcard ---- */
.dashboard{display:flex;gap:14px;margin:14px 0 4px;flex-wrap:wrap}
.dcard{
  flex:1;min-width:190px;
  background:linear-gradient(135deg,#eef4fc,#e2edfb);
  border:1px solid #cfe0f5;border-radius:14px;padding:15px 18px;
  position:relative;overflow:hidden;
  box-shadow:0 1px 3px rgba(24,95,165,.08);
}
.dcard.accent{
  background:linear-gradient(135deg,#eafbe6,#defadc);
  border-color:#b7e4c7;box-shadow:0 1px 3px rgba(59,109,17,.06);
}
.dcard.accent .dnum{color:#15803d}
.dcard.warn{
  background:linear-gradient(135deg,#fef1ef,#fce8e5);
  border-color:#f5c6c6;box-shadow:0 1px 3px rgba(192,57,43,.06);
}
.dcard.warn .dnum{color:#c0392b}
.dcard .dlabel{font-size:13px;color:#3a5a82;font-weight:700;display:flex;align-items:center;gap:6px}
.dcard .dico{font-size:15px}
.dcard .dnum{
  font-size:34px;font-weight:800;color:var(--brand);line-height:1.12;
  margin-top:6px;font-variant-numeric:tabular-nums;letter-spacing:.5px;
}
.dcard .dsub{font-size:12px;color:#6b7e96;margin-top:5px}

/* 搜索框后内联统计数字 */
.stats-inline{display:flex;align-items:center;gap:18px;font-size:15px;color:var(--muted);flex-shrink:0;flex-wrap:wrap}
.stats-inline .stat-label{display:inline-flex;align-items:center;gap:4px}
.stats-inline .stat-num{
  font-size:187.5%;font-weight:800;margin-left:2px;font-variant-numeric:tabular-nums;line-height:1;
  color:var(--brand)
}

/* 最近更新三栏 */
.recent-section{display:flex;flex-direction:column;gap:14px;margin:6px 0 14px}
.recent-row{display:flex;gap:14px;width:100%}
.recent-col{
  flex:1;min-width:240px;
  background:#f5f8fc;border:1px solid #e2e8f0;border-radius:12px;
  padding:14px 16px;
}
.recent-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:10px}
.recent-title{font-size:15px;font-weight:700;color:#1f2937;margin-bottom:0;padding-left:8px;border-left:3px solid var(--brand);flex:1;min-width:0}
.recent-list{list-style:none}
.recent-item{
  font-size:13px;color:var(--ink);padding:7px 0;border-bottom:1px dashed #e2e8f0;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.45
}
.recent-item:last-child{border-bottom:none}
.recent-code{color:var(--brand);font-weight:600;margin-right:4px}
.recent-name{color:var(--ink)}
.recent-empty{font-size:13px;color:#9aa3af;padding:10px 0;text-align:center}
.recent-more{
  font-size:13px;color:var(--brand);text-decoration:none;white-space:nowrap;
  display:inline-flex;align-items:center;gap:3px;transition:color .15s
}
.recent-more:hover{color:var(--brand-dark,#165ba5);text-decoration:underline}

/* 主搜索框（粗蓝边框 + 右侧搜索按钮） */
.main-search{
  position:relative;flex:1 1 300px;min-width:240px;max-width:440px;
  display:flex;align-items:center;border:2.5px solid var(--brand);
  border-radius:10px;background:#fff;overflow:hidden;
}
.result-meta{font-size:12px;color:var(--muted);margin:10px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px}

/* ---- 列表项 ---- */
.list{display:flex;flex-direction:column;gap:10px}
.item{
  background:var(--card);border:1px solid var(--line);border-radius:12px;
  padding:13px 16px;box-shadow:0 1px 2px rgba(0,0,0,.03);
  cursor:pointer;transition:box-shadow .15s,border-color .15s;
}
.item:hover{box-shadow:0 3px 10px rgba(0,0,0,.07);border-color:#c0d0e8}
.item .top{display:flex;justify-content:space-between;align-items:flex-start;gap:10px}
.item .titleline{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px;flex:1;min-width:0}
.item .code{font-size:17px;font-weight:700;color:var(--brand);white-space:nowrap}
.item .name{font-size:16px}

/* 状态标签 */
.tag{font-size:13px;padding:4px 11px;border-radius:8px;white-space:nowrap;font-weight:600;line-height:1.2}
.tag.current{background:#eaf1fe;color:#1d4ed8;border:1px solid #bcd0f7}
.tag.upcoming{background:#eafaf0;color:#15803d;border:1px solid #b7e4c7}
.tag.abolished{background:#fdecea;color:#c0392b;border:1px solid #f5c6c6}
.tag.force{background:#fdecea;color:#c0392b;border:1px solid #f5c6c6}
.tag.draft{background:#fff7e6;color:#b45309;border:1px solid #fde2a8}
.tag.coll{background:#f3ecff;color:#7c3aed;border:1px solid #d9c7f7}

/* 访问权限角标 */
.access-badge{font-size:12px;padding:3px 9px;border-radius:7px;font-weight:700;white-space:nowrap;line-height:1.2;margin-left:6px}
.access-badge.free{background:#eafaf0;color:#1f7a3d;border:1px solid #b7e4c7}
.access-badge.paid{background:#fff3e0;color:#c2410c;border:1px solid #f6c89a}
.access-badge.member{background:#f3ecff;color:#7c3aed;border:1px solid #d9c7f7}
/* 资料类条目上的「🎁 免费领积分」按钮（替代 free 徽章） */
.access-badge.claim-btn{
  background:linear-gradient(135deg,#fbbf24,#f59e0b);color:#fff;border:1px solid #f59e0b;
  cursor:pointer;font-size:12px;transition:transform .15s,box-shadow .15s;
  box-shadow:0 1px 4px rgba(245,158,11,.3);display:inline-flex;align-items:center;gap:2px;
}
.access-badge.claim-btn:hover{transform:translateY(-1px);box-shadow:0 2px 8px rgba(245,158,11,.45);background:linear-gradient(135deg,#f59e0b,#d97706)}

/* 有无电子版标签 */
.fileline{margin-top:3px}
.filetag{font-size:13px;padding:3px 9px;border-radius:6px;white-space:nowrap;font-weight:600}
.filetag.yes{background:#eafaf0;color:#1f7a3d}
.filetag.no{background:#f1f3f6;color:#9aa3af}

/* 元信息行 */
.impl{font-size:13px;color:var(--muted);margin-top:3px}
.impl .date{display:inline-block;margin-right:18px}
.rep{font-size:12px;color:#a32d2d;margin-top:4px;font-weight:600}
.nolink{font-size:12px;color:#b3bac4;margin-top:6px}

/* 预约下载（v41 恢复：暂无电子版的规范可点此预约鸟哥整理） */
.nolink-row{margin-top:8px;display:flex;align-items:center;flex-wrap:wrap;gap:10px}
.pres-slot{margin-top:2px}
.btn-pres{
  font-size:13px;font-weight:600;color:#fff;background:linear-gradient(135deg,#0ea5e9,#0284c7);
  border:none;padding:7px 16px;border-radius:8px;cursor:pointer;line-height:1.4;
  box-shadow:0 2px 6px rgba(14,165,233,.25);transition:filter .15s;
}
.btn-pres:hover{filter:brightness(1.06)}
.btn-pres:disabled{cursor:not-allowed;opacity:.85}
.btn-pres.done{background:linear-gradient(135deg,#16a34a,#15803d);box-shadow:0 2px 6px rgba(22,163,74,.22)}
.btn-pres.full{background:linear-gradient(135deg,#9ca3af,#6b7280);box-shadow:0 1px 4px rgba(0,0,0,.08)}
.btn-pres.nf{background:linear-gradient(135deg,#f59e0b,#d97706);box-shadow:0 2px 6px rgba(245,158,11,.22)}
.pres-row{display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap}
.pres-cancel{font-size:12.5px;color:#9ca3af;text-decoration:none;border-bottom:1px dashed #cbd5e1;padding-bottom:1px}
.pres-cancel:hover{color:#ef4444;border-bottom-color:#fca5a5}

/* 预约确认 modal（v41.2：替代浏览器丑陋 confirm） */
.pres-modal-mask{
  position:fixed;inset:0;background:rgba(15,23,42,.45);backdrop-filter:blur(2px);
  display:flex;align-items:center;justify-content:center;z-index:9999;
  animation:presModalIn .18s ease-out;
}
@keyframes presModalIn{from{opacity:0}to{opacity:1}}
.pres-modal{
  width:min(440px,calc(100vw - 32px));background:#fff;border-radius:14px;box-shadow:0 20px 60px rgba(0,0,0,.25),0 4px 12px rgba(0,0,0,.08);
  overflow:hidden;animation:presModalPop .22s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes presModalPop{from{transform:translateY(8px) scale(.96);opacity:0}to{transform:none;opacity:1}}
.pres-modal-head{
  display:flex;align-items:center;gap:8px;padding:18px 20px 12px;border-bottom:1px solid #f1f5f9;
  background:linear-gradient(180deg,#f0f9ff 0%,#ffffff 100%);
}
.pres-modal-ico{font-size:20px}
.pres-modal-title{font-size:16px;font-weight:700;color:#0c4a6e;letter-spacing:.5px}
.pres-modal-body{padding:16px 20px 8px}
.pres-modal-desc{
  font-size:13.5px;line-height:1.75;color:#475569;background:#f8fafc;
  border-left:3px solid #0ea5e9;padding:11px 13px;border-radius:6px;margin-bottom:12px;
}
.pres-modal-item{
  font-size:13.5px;color:#334155;padding:8px 12px;background:#fef9c3;border-radius:6px;margin-bottom:10px;
}
.pres-modal-item b{color:#0c4a6e}
.pres-modal-tip{font-size:12px;color:#94a3b8;line-height:1.6}
.pres-modal-foot{display:flex;gap:10px;justify-content:flex-end;padding:14px 20px 18px;border-top:1px solid #f1f5f9;background:#fafbfc}
.pres-modal-cancel,.pres-modal-ok{
  font-size:14px;font-weight:600;padding:9px 22px;border-radius:8px;cursor:pointer;border:none;line-height:1.4;
  transition:all .15s;
}
.pres-modal-cancel{background:#fff;color:#64748b;border:1px solid #cbd5e1}
.pres-modal-cancel:hover{background:#f1f5f9;color:#334155}
.pres-modal-ok{background:linear-gradient(135deg,#0ea5e9,#0284c7);color:#fff;box-shadow:0 2px 8px rgba(14,165,233,.3)}
.pres-modal-ok:hover{filter:brightness(1.06);transform:translateY(-1px);box-shadow:0 4px 12px rgba(14,165,233,.4)}
.pres-modal-ok:active{transform:translateY(0)}

/* 网盘链接按钮 */
.links{margin-top:12px;display:flex;flex-wrap:wrap;gap:7px}
.lk{
  font-size:12.5px;text-decoration:none;padding:6px 11px;border-radius:8px;
  background:#fff1e6;color:#ea580c;border:1px solid #fcd9b8;cursor:pointer;
  display:inline-flex;align-items:center;gap:2px;
  transition:background .15s,box-shadow .15s;font-weight:600;text-decoration:none;
  max-width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.lk:hover{background:#ffe3cc;box-shadow:0 1px 3px rgba(234,88,12,.16)}
.lk .pwd{color:#b45309;font-size:11.5px;margin-left:3px;font-weight:500}

.item .doc-cost{display:inline-block;font-size:calc(14px * 0.8);color:#c2410c;margin-left:8px;font-weight:400;line-height:1.4}
.item .doc-cost-num{font-size:2em;font-weight:700;color:#c2410c;vertical-align:-0.05em;margin:0 2px}
.lk.baidu{background:#fff1e6;color:#ea580c;border-color:#fcd9b8}.lk.baidu:hover{background:#ffe3cc}
.lk.quark{background:#fff7e6;color:#d97706;border-color:#fbe6b8}.lk.quark:hover{background:#ffedcc}
.lk.xunlei{background:#fdeee6;color:#c2410c;border-color:#f5cdb8}.lk.xunlei:hover{background:#fbe0d0}
.lk.ali{background:#fef9e7;color:#ca8a04;border-color:#f5e6a8}.lk.ali:hover{background:#fdf0c2}
.lk.off{background:#f2f4f7;color:#b3bac4;border:1px dashed #d7dce3;cursor:not-allowed;pointer-events:none}
.lk.off .pwd{color:#c6ccd4}

/* PPT素材 / 考证资料 详情页专用：橙色金属反光质感下载按钮 */
.lk-glam{
  position:relative;overflow:hidden;
  background:linear-gradient(180deg,#ff9a44 0%,#f97316 35%,#ea580c 100%);
  color:#fff;border:1px solid #c2410c;font-weight:700;
  box-shadow:0 4px 10px rgba(234,88,12,.35), inset 0 1px 0 rgba(255,255,255,.45);
  text-shadow:0 1px 1px rgba(120,40,10,.45);
  padding:8px 14px;
}
.lk-glam::before{
  content:'';position:absolute;top:0;left:0;right:0;height:48%;
  background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(255,255,255,.05));
  border-radius:8px 8px 0 0;pointer-events:none;
}
.lk-glam:hover{
  background:linear-gradient(180deg,#ffb366 0%,#fb923c 35%,#f97316 100%);
  box-shadow:0 6px 16px rgba(234,88,12,.45), inset 0 1px 0 rgba(255,255,255,.5);
  transform:translateY(-1px);
}
.lk-glam:active{transform:translateY(0);box-shadow:0 2px 6px rgba(234,88,12,.35)}
.lk-glam .pwd{color:#fff7ed;font-weight:500}

.lk-glam-off{
  background:linear-gradient(180deg,#f3f4f6 0%,#e5e7eb 100%);
  color:#9ca3af;border:1px solid #d1d5db;font-weight:600;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
  cursor:not-allowed;pointer-events:none;padding:8px 14px;
}

/* 付费遮罩块 */
.lk-locked{margin-top:12px;border:1px dashed #e0c9a6;background:#fffaf2;border-radius:10px;padding:12px 14px}
.lk-locked .lock-label{font-weight:700;font-size:14px;color:#c2410c}
.lk-locked .lock-tip{font-size:12px;color:#9a6b3f;margin-top:2px}
.lk-locked .lock-row{display:flex;gap:8px;margin-top:9px}
.code-in{flex:1;padding:7px 10px;font-size:13px;border:1px solid #e0c9a6;border-radius:8px;outline:none}
.code-in:focus{border-color:#c2410c;box-shadow:0 0 0 3px #fbe6d2}
.code-redeem-btn{background:#c2410c;color:#fff;border:none;border-radius:8px;padding:7px 16px;font-size:13px;font-weight:600;cursor:pointer}
.code-redeem-btn:hover{background:#a8350a}
.lock-buy{margin-top:8px;font-size:12px;color:#7c3aed;cursor:pointer;text-decoration:underline;user-select:none}

/* ---- 分页 ---- */
.pager{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:6px;margin-top:18px}
.pg{
  min-width:32px;height:32px;padding:0 9px;border:1px solid var(--line);background:var(--card);
  border-radius:8px;color:var(--ink);cursor:pointer;font-size:12.5px;display:inline-flex;
  align-items:center;justify-content:center;user-select:none;text-decoration:none;
}
.pg:hover{background:#eef2f7}
.pg.on{background:var(--brand);color:#fff;border-color:var(--brand)}
.pg.disabled{color:#b3bac4;cursor:not-allowed;pointer-events:none;background:#f7f9fb}
.pg.dots{border:none;background:transparent;cursor:default;pointer-events:none}
.pg.jump{border:none;background:transparent;color:var(--muted)}
.pg.jump input{width:42px;height:28px;text-align:center;border:1px solid var(--line);border-radius:6px;outline:none;font-size:12.5px}

/* ---- 预约下载按钮 + 弹窗 ---- */
.lk-preserve{
  background:linear-gradient(135deg,#0ea5e9,#2563eb)!important;
  color:#fff!important;
  border:1px solid #1d4ed8!important;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 1px 3px rgba(37,99,235,.22);
}
.lk-preserve:hover{
  background:linear-gradient(135deg,#0284c7,#1d4ed8)!important;
  box-shadow:0 2px 8px rgba(37,99,235,.34);
}
.pres-box{
  background:#fff;border-radius:14px;width:min(440px,100%);max-height:86vh;overflow:auto;
  box-shadow:0 20px 60px rgba(0,0,0,.3);position:relative;
}
.pres-head{
  font-size:16px;font-weight:700;padding:16px 20px;border-bottom:1px solid var(--line);
  display:flex;justify-content:space-between;align-items:center;
}
.pres-close{font-size:22px;color:var(--muted);cursor:pointer;line-height:1;padding:0 4px}
.pres-close:hover{color:#c0392b}
.pres-body{padding:18px 20px;font-size:14.5px;line-height:1.6}
.pres-loading{color:var(--muted);text-align:center;padding:14px 0}
.pres-info{margin-bottom:12px;font-size:14px;color:var(--ink)}
.pres-info .mut{color:var(--muted);font-size:12.5px}
.pres-state{padding:10px 12px;border-radius:8px;background:#f1f5f9;margin:8px 0;font-size:13.5px}
.pres-state.ok{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46}
.pres-state.warn{background:#fff7ed;border:1px solid #fed7aa;color:#9a3412}
.pres-state a{color:#1d4ed8;text-decoration:underline}
.pres-btn{
  width:100%;margin-top:10px;padding:10px 14px;border:none;border-radius:9px;cursor:pointer;
  background:linear-gradient(135deg,#0ea5e9,#2563eb);color:#fff;font-weight:700;font-size:14px;
  box-shadow:0 1px 3px rgba(37,99,235,.22);
}
.pres-btn:hover{background:linear-gradient(135deg,#0284c7,#1d4ed8)}
.pres-btn:disabled{opacity:.6;cursor:not-allowed}

/* ---- 弹窗 ---- */
.modal-mask{position:fixed;inset:0;background:rgba(15,23,42,.55);display:flex;align-items:center;justify-content:center;z-index:9999;padding:20px}
.modal-mask.hidden{display:none}
.modal{
  background:#fff;border-radius:14px;width:min(580px,100%);max-height:86vh;overflow:auto;
  box-shadow:0 20px 60px rgba(0,0,0,.3);position:relative;
}
.modal-pay{width:min(420px,100%)}
.modal-qr{width:min(720px,100%)}
.qr-grid{
  display:flex;gap:20px;justify-content:center;flex-wrap:wrap;margin-top:12px
}
.qr-card{
  flex:1;min-width:220px;max-width:280px;background:#f8fafc;border:1px solid var(--line);
  border-radius:12px;padding:16px;text-align:center;
}
.qr-card .qr-title{font-size:15px;font-weight:800;color:var(--ink);margin-bottom:4px}
.qr-card .qr-desc{font-size:12.5px;color:var(--muted);line-height:1.5;margin-bottom:12px;min-height:38px}
.qr-card img{width:180px;height:180px;object-fit:contain;border:1px solid var(--line);border-radius:8px;background:#fff}
.qr-card .qr-tip{font-size:12px;color:#94a3b8;margin-top:10px}

.modal-close{
  position:absolute;top:10px;right:12px;font-size:22px;cursor:pointer;color:var(--muted);
  background:none;border:none;line-height:1;z-index:1;
}
.modal-close:hover{color:#c0392b}
.modal-h{font-size:16px;font-weight:700;padding:16px 20px;border-bottom:1px solid var(--line)}
.modal-b{padding:18px 20px}
.m-tip{font-size:13px;color:var(--muted);line-height:1.7;margin-bottom:12px}
.m-input,.m-ta{width:100%;padding:10px 12px;font-size:14px;border:1px solid var(--line);border-radius:9px;outline:none;box-sizing:border-box}
.m-input:focus,.m-ta:focus{border-color:var(--brand);box-shadow:0 0 0 3px var(--brand-soft)}
.m-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}
.m-btn{padding:8px 16px;font-size:13.5px;font-weight:600;border:1px solid var(--line);background:#fff;color:var(--ink);border-radius:9px;cursor:pointer;transition:background .15s}
.m-btn{font-family:inherit}
.m-btn:hover{background:#f1f5fb}
.m-btn.primary{background:var(--brand);color:#fff;border-color:var(--brand)}
.m-btn:disabled{opacity:.6;cursor:wait !important}
/* 登录/注册错误提示：醒目红框+大字体，用户一眼能看到（v15 之前是 12.5px 红字，几乎看不见） */
.login-err{display:flex;align-items:flex-start;gap:6px;margin-top:12px;padding:10px 12px;background:#fff1f2;border:1px solid #fecaca;color:#b91c1c;border-radius:9px;font-size:14px;line-height:1.55;font-weight:500;word-break:break-all}
.login-err[hidden]{display:none}

/* 页脚 */
footer{margin-top:18px;font-size:11.5px;color:var(--muted);text-align:center;line-height:1.7;padding-bottom:12px}
.empty{text-align:center;color:var(--muted);padding:50px 0;font-size:14px}

/* Toast —— 唯一权威定义；显示用 .toast.show（加 opacity:1 + 归位 transform），
   隐藏靠 setTimeout 移除 .toast.show。v17 删除第二套重复定义根治"长条状黑屏"。 */
.toast{
  position:fixed;left:50%;top:18px;
  transform:translateX(-50%) translateY(-20px);
  display:inline-block;width:auto;max-width:88vw;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  background:rgba(24,28,35,.92);color:#fff;font-size:13.5px;
  padding:10px 18px;border-radius:10px;z-index:9999;
  opacity:0;pointer-events:none;
  transition:opacity .2s,transform .2s;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* 支付弹窗内 */
.pay-qrcode{text-align:center;padding:16px 0}
.pay-qrcode img{width:200px;height:200px;border:1px solid #eee;border-radius:10px}
.pay-tip{font-size:13px;color:var(--muted);margin-top:10px}
.polling{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:12px;font-size:13px;color:var(--brand)}
.spinner{width:18px;height:18px;border:3px solid #ddd;border-top-color:var(--brand);border-radius:50%;animation:spin .6s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* ===== 手机自适应 ===== */
@media(max-width:768px){
  .site-header{padding:10px 14px}
  .header-inner{flex-direction:column;align-items:stretch;gap:10px}
  .brand-area{justify-content:center;flex-wrap:wrap}
  .header-right{justify-content:center;flex-wrap:wrap}
  .main-search{min-width:0;max-width:100%;order:3;width:100%;margin-top:4px}
  .sub-nav-inner{padding:4px 12px 5px}
  .nav-levels{font-size:12px}
  .nl{padding:4px 8px}
  .ns{padding:3px 7px;font-size:11px}
  .container{padding:10px 12px 20px}
  .dashboard{gap:8px}
  .dcard{padding:12px 14px;min-width:140px}
  .dcard .dnum{font-size:26px}
  .item{padding:10px 12px}
  .item .code{font-size:15px}
  .item .name{font-size:14px}
  .modal{width:min(95%,380px);margin:10px}
}

@media(max-width:480px){
  .dcard .dnum{font-size:22px}
  .links{gap:5px}
  .lk{padding:5px 8px;font-size:11.5px}
  .brand-name{font-size:18px}
  .main-search input{width:100%}
}

/* ========== 规范查新页 ========== */
.chx-filters{
  display:flex;flex-wrap:wrap;gap:14px;align-items:center;
  margin:16px 0 6px;padding:12px 14px;background:#f5f8fc;
  border:1px solid var(--line);border-radius:10px;
}
.chx-filters label{font-size:13px;color:#33424f;display:flex;gap:6px;align-items:center}
.chx-filters select{padding:7px 10px;border:1.5px solid var(--line);border-radius:8px;font-size:13px;background:#fff;color:#222}
.chx-filters .btn-search{padding:8px 20px;border-radius:8px}
.chx-title{margin-left:auto;font-size:13px;color:#eaf2fb;opacity:.85}
.rep{color:#b03a2e;font-size:12.5px;margin-top:3px;font-weight:500}
.rep2{color:#1f6b3a;font-size:12.5px;margin-top:3px;font-weight:500}

/* ========== 规范查新 Tab ========== */
.chx-tabs{display:flex;gap:8px;margin:16px 0 4px}
.chx-tab{cursor:pointer;padding:8px 20px;border-radius:8px 8px 0 0;font-size:14px;font-weight:600;
  background:#eaf1f9;color:#3a5168;border:1px solid var(--line);border-bottom:none}
.chx-tab.on{background:var(--brand);color:#fff}
#panelMonthly,#panelBatch{padding-top:14px}

/* ========== 批量查新 ========== */
.batch-tip{font-size:13px;color:#4a5a68;background:#f5f8fc;border:1px solid var(--line);
  border-radius:10px;padding:10px 14px;line-height:1.7;margin-bottom:12px}
.batch-upload{}
.batch-drop{border:2px dashed #aac3df;background:#f7fbff;border-radius:10px;padding:18px;text-align:center;
  color:#5a7894;cursor:pointer;font-size:13.5px;transition:.15s;margin-bottom:10px}
.batch-drop:hover,.batch-drop.drag{border-color:var(--brand);background:#eef6ff;color:var(--brand)}
.batch-upload textarea{width:100%;height:170px;padding:11px 13px;font-size:13.5px;border:1.5px solid var(--line);
  border-radius:10px;resize:vertical;font-family:Consolas,Menlo,monospace;line-height:1.6}
.batch-upload textarea:focus{border-color:var(--brand);box-shadow:0 0 0 3px var(--brand-soft);outline:none}
.batch-actions{display:flex;gap:10px;margin:10px 0 4px;flex-wrap:wrap}
.btn-ghost{padding:8px 18px;border-radius:8px;border:1.5px solid var(--line);background:#fff;color:#3a5168;
  font-size:13.5px;cursor:pointer}
.btn-ghost:hover{background:#f0f4f9}
.batch-stat{display:flex;gap:10px;flex-wrap:wrap;margin:6px 0 10px}
.batch-stat .stat{padding:7px 14px;border-radius:8px;font-size:13px;background:#f1f5f9;color:#39506a}
.batch-stat .stat b{font-size:15px;margin-left:4px}
.batch-stat .stat.ab{background:#fdecea;color:#b03a2e}
.batch-stat .stat.up{background:#fef3e0;color:#c77c0a}
.batch-stat .stat.ok{background:#e9f6ee;color:#1f6b3a}
.batch-stat .stat.un{background:#eef1f4;color:#6b7785}
.batch-stat .stat.all{background:#eaf1f9;color:#3a5168}
.batch-sec{margin-bottom:14px}
.batch-sec-h{display:flex;align-items:center;gap:10px;font-weight:700;font-size:14px;color:#2a3a48;
  padding:8px 12px;background:#eef3f8;border-radius:8px;margin-bottom:6px}
.batch-sec-h .cnt{background:var(--brand);color:#fff;border-radius:20px;padding:1px 10px;font-size:12px}
.loading,.empty{color:#7a8896;font-size:13.5px;padding:14px 4px}

/* ===== 会员中心入口 / 购买框 ===== */
.btn-vip{
  font-size:13px;font-weight:700;color:#fff;background:linear-gradient(135deg,#7c3aed,#a855f7);
  border:none;padding:8px 16px;border-radius:8px;cursor:pointer;text-decoration:none;
  transition:filter .15s;white-space:nowrap;
}
.btn-vip:hover{filter:brightness(1.08)}
.user-info .btn-vip{order:-1;position:relative}

/* 首页右上角未读消息红点 */
.hdr-notif-badge{
  display:inline-block;min-width:16px;height:16px;line-height:16px;padding:0 4px;
  background:#ef4444;color:#fff;font-size:10px;font-weight:700;border-radius:8px;
  text-align:center;margin-left:4px;vertical-align:middle;box-shadow:0 1px 3px rgba(0,0,0,.2);
}

.buybox{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin:4px 0 2px}
.btn-buy{
  font-size:14px;font-weight:700;color:#fff;background:linear-gradient(135deg,#f59e0b,#ef7d12);
  border:none;padding:9px 20px;border-radius:8px;cursor:pointer;text-decoration:none;
  box-shadow:0 2px 8px rgba(245,158,11,.25);
}
.btn-buy:hover{filter:brightness(1.05)}
.btn-buy.member{background:linear-gradient(135deg,#7c3aed,#a855f7);box-shadow:0 2px 8px rgba(124,58,237,.25)}
.buytip{font-size:12.5px;color:#8a96a3}
.buytip a{color:var(--brand);font-weight:600;text-decoration:none}

.filetag.buy{background:#fff3e0;color:#c2410c;border:1px solid #f6c89a}
.filetag.member{background:#f3ecff;color:#7c3aed;border:1px solid #d9c7f7}

/* 支付弹窗：微信二维码 / 支付宝跳转 */
.wxqr{display:flex;justify-content:center;margin:10px auto;padding:12px;background:#fff;border:1px solid #e3e8ef;border-radius:10px;width:fit-content}
.wxqr img{display:block;width:200px;height:200px}
.paycode{display:inline-block;background:#f3f5f8;color:#334155;font-family:ui-monospace,Menlo,Consolas,monospace;font-size:12px;padding:6px 8px;border-radius:6px;word-break:break-all;max-width:100%}

/* ===== 通用隐藏 / 路由样式 ===== */
.hidden{display:none!important}

/* 列表标题可点击 */
.item-title-link{text-decoration:none;cursor:pointer}
.item-title-link:hover{text-decoration:underline}
.item .titleline a.code{color:var(--brand)}
.item .titleline a.name{color:var(--ink)}

/* 最近更新分栏链接 */
.recent-link{display:flex;align-items:baseline;gap:4px;text-decoration:none;color:inherit;overflow:hidden}
.recent-link:hover .recent-name{text-decoration:underline;color:var(--brand)}

/* ===== 详情页 ===== */
.detail-card{
  background:var(--card);border:1px solid var(--line);border-radius:14px;
  padding:20px 24px;box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.detail-back{
  display:inline-flex;align-items:center;gap:4px;font-size:13px;color:var(--muted);
  background:#f3f5f8;border:1px solid #e2e8f0;border-radius:8px;padding:6px 12px;
  cursor:pointer;margin-bottom:14px;
}
.detail-back:hover{background:#e9edf2}
.detail-titleline{display:flex;flex-wrap:wrap;align-items:baseline;gap:10px;margin-bottom:10px}
.detail-code{font-size:20px;font-weight:700;color:var(--brand);white-space:nowrap}
.detail-name{font-size:18px;font-weight:700;color:var(--ink);margin:0;line-height:1.4;flex:1;min-width:0}
.detail-tags{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-bottom:12px}
.detail-dates{font-size:13px;color:var(--muted);margin-bottom:10px}
.detail-meta{font-size:13px;color:var(--muted);margin-bottom:12px;display:flex;flex-wrap:wrap;gap:14px}
.detail-meta-item{display:inline-block}
.detail-rep{font-size:13px;color:#a32d2d;font-weight:600;margin-bottom:14px}
.detail-links-title{font-size:15px;font-weight:700;color:var(--ink);margin:18px 0 10px;padding-bottom:8px;border-bottom:1px solid var(--line)}
.detail-card .links{margin-top:8px}

/* 资料介绍（v41.11 前台展示） */
.detail-intro{
  background:#fffbeb;
  border:1px solid #fcd34d;
  border-left:4px solid #f59e0b;
  border-radius:8px;
  padding:12px 16px;
  margin-bottom:14px;
}
.detail-intro-title{
  font-size:14px;
  font-weight:700;
  color:#b45309;
  margin-bottom:6px;
  display:flex;
  align-items:center;
  gap:6px;
}
.detail-intro-body{
  font-size:13px;
  color:var(--ink);
  line-height:1.85;
  white-space:pre-wrap;
  word-break:break-word;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
}

@media(max-width:768px){
  .detail-card{padding:14px 16px}
  .detail-code{font-size:18px}
  .detail-name{font-size:16px}
}


/* 资料悬赏导航入口（v24 新增，与 nl-chx 蓝色按钮并列的金色按钮） */
.nl-reward{
  background:linear-gradient(135deg,#d97706,#f59e0b);color:#fff;font-weight:700;
  border-radius:6px;margin-left:8px;padding:5px 14px;
  box-shadow:0 1px 4px rgba(217,119,6,.35);
}
.nl-reward:hover{background:linear-gradient(135deg,#b45309,#d97706);color:#fff}

/* ===== v41.17c 「规范标准」统一入口 单列 mega-menu ===== */
/* 每个 level 一组：父级标题 + 下方 grid 多列铺子系列；不再有独立的左/右两个面板 */
.nav-std-dropdown{ min-width:520px; max-width:none; padding:8px 16px; }
.std-mega{ display:flex; flex-direction:column; max-height:62vh; overflow-y:auto; }
/* 父级标题行：粗体 brand 色 + "查看全部 ›" 链接 */
.std-group-h{
  display:flex; align-items:center; gap:10px;
  padding:8px 12px; margin:6px 0 4px;
  color:var(--brand); font-weight:700; font-size:14px;
  text-decoration:none; border-radius:4px;
  background:#f5f8fc;
}
.std-group-h:hover{ background:#eaf1fa; }
.std-group-name{ flex:0 0 auto; }
.std-group-h .nd-cnt{ font-weight:400; color:#888; }
.std-group-link{
  margin-left:auto; font-size:12px; font-weight:500; color:var(--brand);
  opacity:.7;
}
.std-group-h:hover .std-group-link{ opacity:1; }
/* 子系列：多列 grid 自适应 */
.std-group-items{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(110px, 1fr));
  gap:0 4px;
  padding:0 8px 8px;
}
.std-group-items .nd-item{
  padding:7px 10px; border-radius:4px;
  font-size:13px;
}
.std-group-items .nd-item .nd-cnt{ font-size:11px; color:#888; }
/* 窄屏：mega-menu 自适应 */
@media(max-width:768px){
  .nav-std-dropdown{ min-width:0; width:90vw; max-width:360px; padding:6px 10px; }
  .std-group-items{ grid-template-columns:repeat(2, 1fr); }
}

/* ===== v41.19.7 会员中心-积分中心 ===== */
.pc-summary{ display:flex; gap:14px; margin-bottom:18px; flex-wrap:wrap; }
.pc-card{
  flex:1 1 0; min-width:140px; padding:16px 18px; border-radius:10px;
  background:linear-gradient(135deg,#eef4ff,#f7fbff);
  border:1px solid #e3ecfa;
}
.pc-card-total{ background:linear-gradient(135deg,#2563eb,#3b82f6); border-color:#2563eb; }
.pc-card-total .pc-num,.pc-card-total .pc-label{ color:#fff; }
.pc-card-gain .pc-num{ color:#16a34a; }
.pc-card-spend .pc-num{ color:#dc2626; }
.pc-num{ font-size:26px; font-weight:800; line-height:1.2; }
.pc-label{ font-size:13px; color:#6b7280; margin-top:4px; }
.pc-list{ display:flex; flex-direction:column; gap:8px; }
.pc-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:11px 14px; border-radius:8px; background:#f8fafc; border:1px solid #eef2f7;
}
.pc-row-out{ background:#fff7f7; border-color:#fde8e8; }
.pc-row-main{ display:flex; align-items:center; gap:8px; min-width:0; }
.pc-tag{
  font-size:13px; font-weight:600; color:#374151;
  background:#eef2f7; padding:3px 10px; border-radius:20px; white-space:nowrap;
}
.pc-extra{
  font-size:12px; color:#6b7280; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  max-width:320px;
}
.pc-row-side{ display:flex; align-items:center; gap:12px; flex:0 0 auto; margin-left:12px; }
.pc-delta{ font-size:15px; font-weight:700; }
.pc-plus{ color:#16a34a; }
.pc-minus{ color:#dc2626; }
.pc-time{ font-size:12px; color:#9ca3af; white-space:nowrap; }
@media(max-width:768px){
  .pc-summary{ gap:8px; }
  .pc-card{ min-width:0; padding:12px; }
  .pc-num{ font-size:20px; }
  .pc-extra{ max-width:140px; }
  .pc-time{ display:none; }
}

/* ============ 图文栏目卡片（考证资料 / PPT素材） ============ */
.list-graphic{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  padding:6px 0 4px;
}
@media (max-width:1024px){
  .list-graphic{ grid-template-columns:repeat(3, 1fr); }
}
@media (max-width:720px){
  .list-graphic{ grid-template-columns:repeat(2, 1fr); gap:12px; }
}
@media (max-width:480px){
  .list-graphic{ grid-template-columns:1fr; }
}
.gcard{
  display:flex;flex-direction:column;
  background:var(--card,#fff);
  border:1px solid var(--line,#dbe2ea);
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  transition:box-shadow .15s ease, transform .15s ease;
}
.gcard:hover{ box-shadow:0 6px 20px rgba(24,95,165,.16); transform:translateY(-2px); }
.gcover{
  position:relative;
  width:100%;
  aspect-ratio:16/9;           /* 长方形 16:9 封面：与 PPT 真实图比例一致，contain 时无上下留白 */
  background:#fff;             /* 留白兜底白底（contain 时上下/左右可能留白） */
  overflow:hidden;
}
.gcover-img{ width:100%; height:100%; object-fit:contain; background:#fff; display:block; }  /* contain：图完整不变形，不左右裁切 */
.gcover-ph{
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#185fa5,#3b8fd0);
  color:#fff; font-size:20px; font-weight:700; letter-spacing:2px;
}
.gbody{ display:flex; flex-direction:column; gap:7px; padding:12px 13px 14px; flex:1; }
.gtitle{ font-size:15px; font-weight:700; color:var(--ink,#1f2937); line-height:1.4;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.gseries{
  align-self:flex-start;
  font-size:12px; color:var(--brand,#185fa5);
  background:var(--brand-soft,#e6f1fb);
  padding:2px 9px; border-radius:4px;
}
.gintro{ font-size:13px; color:var(--muted,#6b7280); line-height:1.55;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.gfoot{ margin-top:auto; padding-top:4px; }
.gprice{ font-size:15px; font-weight:800; }
.gprice.price{ color:#e23b3b; }       /* 价格：红色大字 */
.gprice.points{ color:#c47f12; }      /* 积分：金色 */
.gprice.free{ color:#16a34a; }        /* 免费：绿色 */
.gprice.member{ color:#7c3aed; }      /* 会员专享：紫色 */

/* 图文详情页积分旁的「免费领积分」入口（仅 PPT素材/考证资料） */
.gclaim-btn{
  display:inline-flex; align-items:center; gap:4px;
  margin-left:10px; padding:4px 10px; border-radius:6px;
  font-size:12.5px; font-weight:700; color:#fff; cursor:pointer;
  background:linear-gradient(135deg,#f59e0b,#d97706);
  border:1px solid #b45309;
  box-shadow:0 2px 6px rgba(217,119,6,.32);
  transition:transform .12s,box-shadow .12s,filter .12s;
}
.gclaim-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(217,119,6,.42);
  filter:brightness(1.05);
}
.gclaim-btn:active{transform:translateY(0)}
.gclaim-hint{
  display:inline-flex; align-items:center; gap:4px;
  margin-left:10px; padding:3px 9px; border-radius:6px;
  font-size:12.5px; font-weight:600; color:#b45309;
  background:#fff7ed; border:1px solid #fed7aa;
  cursor:pointer; transition:background .12s;
}
.gclaim-hint:hover{ background:#ffedd5; }

/* 图文详情 —— 左右双栏（左封面 / 右信息），窄屏单列堆叠 */
.gdetail-wrap{ width:100%; max-width:1080px; margin:0 auto; }   /* 1080 容器装下 5 等分卡即可，无需 1320 */
.gdetail-grid{
  display:grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
  gap:36px;
  align-items:start;
}
.gdetail-info{ display:flex; flex-direction:column; gap:14px; min-width:0; }
.gdetail-cover{
  width:100%; max-width:none;            /* 覆盖旧的 380px 限制 */
  aspect-ratio:4/3;
  border-radius:0;                      /* 直角（鸟哥 2026-09-02 要） */
  overflow:hidden;
  margin:0;                              /* 网格已 gap */
  background:#fff;                      /* contain 留白时背景白 */
  box-shadow:none;                       /* 直角=无阴影 */
}
.gdetail-cover-img{ width:100%; height:100%; object-fit:contain; display:block; background:#fff; }   /* contain：图完整不变形，左右可能留白 */
.gdetail-cover-ph{
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#185fa5,#3b8fd0);
  color:#fff; font-size:22px; font-weight:700; letter-spacing:2px;
}
.gdetail-intro{ margin:4px 0 2px; }
.gdetail-intro-title{ font-weight:700; color:var(--ink,#1f2937); margin-bottom:8px; font-size:15px; }
.gdetail-intro-body{ color:var(--muted,#4b5563); line-height:1.85; font-size:14px; white-space:pre-line; }
a.gdl{ display:inline-block; margin:4px 8px 4px 0; }

/* 图片介绍（图集） */
.gdetail-gallery{ margin-top:30px; }
.gallery-h{ font-weight:700; color:var(--ink,#1f2937); font-size:16px; margin-bottom:12px; }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));  /* 图集数不固定：3/5/8 张自适应铺满，少则放大 */
  gap:8px;
  width:100%;
  justify-content:center;
}

/* 卡片：与容器等宽同缩，1:1 正方形（不再硬锁 255px，避免在窄屏挤出白底） */
.gi{
  position:relative;
  aspect-ratio:1/1;          /* 卡片宽高比 1:1：宽度按 grid 1fr 自动算，高度跟随 */
  width:100%;
  overflow:hidden;           /* 高度 < 卡片时白底留白，高度 > 卡片时上下对称裁 */
  background:#fff;
  border-radius:0;           /* 直角 */
  box-sizing:border-box;
  box-shadow:none;
}

.gi img{
  position:absolute !important;
  top:50% !important;
  left:50% !important;
  width:100% !important;                 /* 等比缩到卡片宽：图宽=卡宽时不裁左右 */
  height:auto !important;                /* 等比例（不变形） */
  max-width:none !important;             /* 取消 255 上限，让图按百分比撑满卡片 */
  display:block;
  background:#fff;
  transform:translate(-50%,-50%) !important;
  /* 行为矩阵（图宽=卡宽）：
     - 图 255×200（矮）    → 居中显示，上下留白
     - 图 255×255（正好）  → 填满
     - 图 255×300（高）    → 居中显示，上下裁切
     - 卡片宽 210 时图同步缩到 210：等比例
  */
}

/* 大图片介绍（detailImages）：放在图集小图下方整行，单图宽幅堆叠 */
.gdetail-bigimgs{ margin-top:30px; }
.gdetail-bigimgs .bi{
  width:100%;
  margin-top:10px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:0;
  box-sizing:border-box;
}
.gdetail-bigimgs .bi img{
  display:block;
  width:100% !important;
  height:auto !important;
  max-width:none !important;
  background:#fff;
}

@media (max-width:1100px){
  /* 中等屏（1080 容器附近）：容器接近满宽，卡片 ~210px，等分仍正常 */
  .gallery-grid{ gap:6px; }
}

@media (max-width:880px){
  .gdetail-grid{ grid-template-columns: minmax(0,1fr); gap:22px; }
  .gdetail-cover{ aspect-ratio:16/9; }
}

/* ============================================================
   招聘求职页面
   ============================================================ */
.nl-jobs{ background:#0d5aa0; color:#fff; border-radius:4px; }
.nl-jobs:hover{ background:#0a477f; }

.jobs-container{ max-width:1100px; margin:0 auto; padding:20px; }
.jobs-header{ text-align:center; margin:20px 0; }
.jobs-header h1{ font-size:28px; color:var(--brand); margin-bottom:6px; }
.jobs-sub{ color:var(--muted); font-size:14px; }

.jobs-toolbar{
  background:#fff; border-radius:10px; padding:16px; box-shadow:0 2px 8px rgba(0,0,0,.05);
  display:flex; flex-wrap:wrap; align-items:center; gap:14px; justify-content:space-between; margin-bottom:18px;
}
.jobs-tabs{ display:flex; gap:8px; }
.jobs-tabs .tab-btn{
  padding:8px 22px; border-radius:20px; border:1px solid var(--line); background:#f8fafc; color:var(--ink);
  cursor:pointer; font-size:14px; transition:.15s;
}
.jobs-tabs .tab-btn.on{ background:var(--brand); color:#fff; border-color:var(--brand); }
.jobs-actions{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.jobs-search{ display:flex; align-items:center; gap:6px; }
.jobs-search input{
  width:260px; padding:8px 12px; border:1px solid var(--line); border-radius:6px; font-size:14px;
}
.jobs-search button, .jobs-post-btn, .btn-sm{
  padding:8px 16px; border-radius:6px; border:none; background:var(--brand); color:#fff; cursor:pointer; font-size:14px;
}
.jobs-post-btn{ background:#16a34a; }
.jobs-post-btn:hover{ background:#15803d; }
.btn-sm{ padding:5px 12px; font-size:13px; }

.jobs-list{ display:flex; flex-direction:column; gap:14px; }
.jobs-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:16px;
}
.jobs-loading, .jobs-empty{
  grid-column: 1 / -1; text-align:center; padding:40px; color:var(--muted); background:#fff; border-radius:10px;
}

.job-card{
  background:#fff; border-radius:12px; padding:14px; box-shadow:0 2px 8px rgba(0,0,0,.04);
  display:flex; flex-direction:column; cursor:pointer; transition:.15s; border:1px solid transparent;
  min-height: 210px;
}
.job-card:hover{ border-color:var(--brand-soft); transform:translateY(-2px); box-shadow:0 6px 16px rgba(13,90,160,.08); }
.job-card-top{ display:flex; gap:10px; align-items:flex-start; margin-bottom:10px; }
.job-avatar{
  width:40px; height:40px; border-radius:10px; background:#0d5aa0; color:#fff; font-size:18px;
  display:flex; align-items:center; justify-content:center; font-weight:700; flex-shrink:0;
  object-fit:cover;
}
.job-avatar.brand{ background:#b45309; font-size:18px; }
img.job-avatar{ display:block; }
.avatar-upload-row{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.job-avatar-preview{ width:48px; height:48px; border-radius:10px; object-fit:cover; background:#e5e7eb; border:1px solid var(--line); }
.job-card-hd{ flex:1; min-width:0; }
.job-title{ font-size:15px; font-weight:700; color:var(--ink); margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.job-gender{ font-size:12px; color:var(--muted); font-weight:400; }
.job-company{ font-size:13px; color:var(--brand); margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.job-tags{ display:flex; flex-wrap:wrap; gap:5px; margin-bottom:8px; }
.job-tag{
  font-size:11px; padding:2px 8px; border-radius:10px; background:var(--chip); color:var(--ink);
}
.job-tag.brand{ background:var(--brand-soft); color:var(--brand); }
.job-tag.salary{ background:#fff5f5; color:#dc2626; font-weight:700; font-size:16.5px; padding:4px 10px; }
.job-meta{ font-size:12px; color:var(--muted); margin-bottom:8px; line-height:1.4; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.job-summary{ font-size:12px; color:var(--ink); line-height:1.55; margin-bottom:auto;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.job-card-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:10px; padding-top:10px; border-top:1px solid var(--line); }
.job-date{ font-size:11px; color:#9ca3af; }
.job-arrow{ font-size:12px; color:var(--brand); font-weight:500; }

#jobsPager.pager{ flex-direction:column; gap:10px; margin-top:22px; }
.pager-info{ font-size:13px; color:var(--muted); }
.pager-btns{ display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:6px; }
.pager-btns button, .pager-btns .pg{
  min-width:32px; height:32px; padding:0 10px; border:1px solid var(--line); background:#fff;
  border-radius:8px; color:var(--ink); cursor:pointer; font-size:12.5px; display:inline-flex;
  align-items:center; justify-content:center; user-select:none;
}
.pager-btns button:hover{ background:#eef2f7; }
.pager-btns button.on{ background:var(--brand); color:#fff; border-color:var(--brand); }
.pager-btns button:disabled{ color:#b3bac4; cursor:not-allowed; background:#f7f9fb; }

.modal-job{ max-width:680px; width:90%; max-height:90vh; overflow:auto; }
.modal-post{ max-width:560px; }
.job-detail-tags{ margin-bottom:16px; }
.job-section{ margin:16px 0; }
.job-section h4{ font-size:15px; color:var(--brand); margin-bottom:6px; }
.job-section p{ font-size:14px; color:var(--ink); line-height:1.7; }
.job-section .pre-line{ white-space:pre-line; }
.job-contact{ background:var(--brand-soft); border-radius:8px; padding:14px; margin-top:16px; }
.job-contact h4{ color:var(--brand); margin-bottom:8px; }
.job-login-tip{ background:#fff7ed; color:#9a3412; padding:14px; border-radius:8px; margin-top:16px; text-align:center; }

.form-row{ margin-bottom:12px; }
.form-row label{ display:block; font-size:13px; color:var(--muted); margin-bottom:4px; }
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:8px 10px; border:1px solid var(--line); border-radius:6px; font-size:14px;
}
.form-row.cols-2, .form-row.cols-3{ display:grid; gap:10px; }
.form-row.cols-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-row.cols-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.form-actions{ display:flex; gap:10px; margin-top:18px; }
.form-err{ color:#dc2626; font-size:13px; margin-top:8px; }

@media (max-width:980px){
  .jobs-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width:760px){
  .jobs-toolbar{ flex-direction:column; align-items:stretch; }
  .jobs-actions{ width:100%; }
  .jobs-search{ flex:1; }
  .jobs-search input{ flex:1; width:auto; }
  .jobs-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap:12px; }
  .job-card{ padding:12px; min-height: auto; }
  .form-row.cols-2, .form-row.cols-3{ grid-template-columns: 1fr; }
}
@media (max-width:480px){
  .jobs-grid{ grid-template-columns: 1fr; }
}

/* ====== 招聘求职：状态徽章 / 本人操作条 ====== */
.job-owner-bar{ display:flex; gap:8px; align-items:center; margin-bottom:8px; flex-wrap:wrap; }
.job-badge{ font-size:12px; padding:2px 8px; border-radius:10px; font-weight:600; }
.job-badge.ok{ background:#dcfce7; color:#15803d; }
.job-badge.wait{ background:#fef9c3; color:#a16207; }
.job-badge.no{ background:#fee2e2; color:#b91c1c; }
.job-owner-note{ font-size:12px; color:#b91c1c; background:#fef2f2; border-radius:6px; padding:4px 8px; margin-bottom:6px; }
.btn-sm.edit{ background:#0d5aa0; color:#fff; border:none; }

/* ====== 招聘求职详情独立页 ====== */
.jd-back{ margin:6px 0 14px; }
.jd-back a{ color:#0d5aa0; text-decoration:none; font-size:14px; }
.jd-back a:hover{ text-decoration:underline; }
.jd-card{ background:#fff; border:1px solid var(--line); border-radius:12px; padding:24px; box-shadow:0 2px 10px rgba(0,0,0,.04); }
.jd-head{ display:flex; gap:16px; align-items:center; }
.jd-avatar{ width:64px; height:64px; border-radius:14px; background:#0d5aa0; color:#fff; font-size:28px; display:flex; align-items:center; justify-content:center; font-weight:700; object-fit:cover; }
.jd-seeker-avatar{ width:120px; height:90px; border-radius:10px; object-fit:cover; background:#e5e7eb; display:block; flex-shrink:0; }
img.jd-avatar{ display:block; }
.jd-avatar.brand{ background:#b45309; }
.jd-name{ font-size:24px; margin:0 0 6px; }
.jd-sub{ font-size:15px; color:var(--muted); font-weight:400; }
.jd-company{ font-size:17px; color:#0d5aa0; margin-bottom:6px; }
.jd-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.jd-status-bar{ margin:14px 0; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.jd-status-bar .jd-reject-note{ flex-basis:100%; margin-top:0; }
.jd-reject-note{ font-size:13px; color:#b91c1c; background:#fef2f2; border-radius:6px; padding:6px 10px; margin-top:6px; }
.jd-grid{ display:grid; grid-template-columns: 1fr 320px; gap:24px; margin-top:8px; }
.jd-sec{ margin-bottom:18px; }
.jd-sec h3{ font-size:16px; margin:0 0 8px; color:#0d5aa0; border-left:3px solid #0d5aa0; padding-left:8px; }
.jd-info{ list-style:none; margin:0; padding:0; }
.jd-info li{ display:flex; gap:10px; padding:6px 0; border-bottom:1px dashed var(--line); font-size:14px; }
.jd-info li span{ color:var(--muted); min-width:72px; }
.jd-info li b{ font-weight:600; }
.hl-salary{ color:#b45309 !important; }
.pre-line{ white-space:pre-line; line-height:1.7; }

/* 联系方式卡片 + 企业VIP 锁 */
.jd-side{ position:sticky; top:20px; align-self:start; display:flex; flex-direction:column; gap:14px; }
.jd-seeker-photo{ background:#fff; border:1px solid var(--line); border-radius:12px; padding:12px; text-align:center; }
.jd-seeker-photo .jd-photo-h{ font-size:13px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.jd-seeker-photo .jd-photo-img{ width:100%; max-width:100%; height:auto; max-height:150px; aspect-ratio:3/2; object-fit:cover; border-radius:10px; background:#e5e7eb; }
.jd-contact-card{ border:1px solid var(--line); border-radius:12px; padding:16px; }
.jd-contact-card.open{ background:#f0fdf4; border-color:#bbf7d0; }
.jd-contact-h{ font-size:15px; font-weight:700; margin-bottom:10px; }
.jd-contact-rows p{ margin:4px 0; font-size:14px; }
.jd-contact-ok{ margin-top:10px; font-size:13px; color:#15803d; }
.jd-contact-card.locked{ background:#fffbeb; border-color:#fde68a; }
.jd-lock-tip{ font-size:13px; color:#92400e; margin:8px 0 12px; }
.jd-cta-box{ background:linear-gradient(135deg,#0d5aa0,#1e3a8a); border-radius:10px; padding:14px; text-align:center; color:#fff; }
.jd-cta-title{ font-size:15px; font-weight:700; margin-bottom:10px; }
.jd-cta-title .hl, .jd-cta-box .hl{ color:#fbbf24; }
.jd-cta-btn{ display:inline-block; background:#fbbf24; color:#1e3a8a; font-weight:700; padding:9px 18px; border-radius:8px; text-decoration:none; font-size:14px; }
.jd-cta-btn:hover{ background:#f59e0b; }
.jd-cta-sub{ font-size:12px; opacity:.85; margin-top:8px; }
.cert-row{ display:flex; gap:8px; align-items:center; margin-bottom:8px; }
.cert-row input{ flex:1; }
.cert-row .cert-del{ flex-shrink:0; }

@media (max-width:860px){
  .jd-grid{ grid-template-columns: 1fr; }
  .jd-side{ position:static; }
  .jd-seeker-avatar{ width:96px; height:72px; }
}

/* ============ 企业VIP 购买页 ============ */
.evip-page{ background:#f5f7fa; min-height:100vh; }
.evip-container{ max-width:1080px; margin:0 auto; padding:28px 20px 40px; }
.evip-hero{ text-align:center; padding:18px 0 26px; }
.evip-hero h1{ font-size:28px; margin:0 0 10px; color:#0f172a; letter-spacing:.5px; }
.evip-hero h1::before{ content:"🏢 "; }
.evip-sub{ color:#64748b; font-size:15px; margin:0 auto; max-width:680px; line-height:1.7; }

.evip-status{ margin-bottom:22px; }
.evip-status-card{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; background:#fff; border:1px solid #e3e8ef; border-radius:12px; padding:14px 18px; font-size:14px; color:#334155; }
.evip-status-card.ok{ background:#f0fdf4; border-color:#bbf7d0; }
.ev-badge{ font-size:13px; padding:4px 12px; border-radius:12px; font-weight:700; display:inline-block; }
.ev-badge.on{ background:#dcfce7; color:#15803d; }
.ev-badge.off{ background:#f1f5f9; color:#64748b; }

.evip-plans{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.evip-card{ background:#fff; border:1px solid #e3e8ef; border-radius:14px; padding:22px 18px; display:flex; flex-direction:column; text-align:center; transition:.18s; position:relative; }
.evip-card:hover{ transform:translateY(-3px); box-shadow:0 10px 26px rgba(13,90,160,.12); border-color:#0d5aa0; }
.evip-card.is-current{ border-color:#16a34a; box-shadow:0 0 0 3px rgba(22,163,74,.12); }
.evip-card-name{ font-size:17px; font-weight:700; color:#0f172a; margin-bottom:10px; }
.evip-card-price-wrap{ display:flex; flex-direction:column; align-items:center; gap:1px; margin-bottom:8px; }
/* 原价行：小字"原价" + 大字号划线数字 + 小字"/月" */
.evip-card-price-old-row{ font-size:13px; color:#94a3b8; font-weight:600; line-height:1.2; }
.evip-card-price-old-row .old-label{ font-size:12px; color:#94a3b8; margin-right:2px; }
.evip-card-price-old-row s{ font-size:30px; font-weight:800; color:#94a3b8; text-decoration:line-through; opacity:.85; margin:0 2px; vertical-align:-2px; }
.evip-card-price-old-row .old-unit{ font-size:13px; color:#94a3b8; }
/* 现价行 */
.evip-card-price-row{ font-size:30px; font-weight:800; color:#0d5aa0; line-height:1; }
.evip-card-price-row .cur{ font-size:18px; margin-right:1px; }
.evip-card-price-row .evip-card-unit{ font-size:13px; color:#64748b; font-weight:600; margin-left:3px; }
.evip-card-tag{ display:inline-block; font-size:12px; font-weight:700; color:#fff; background:#ef4444; border-radius:10px; padding:3px 10px; margin-left:8px; vertical-align:middle; }
.evip-card-feats{ list-style:none; padding:10px 0 16px; margin:0; flex:1; text-align:left; }
.evip-card-feats li{ font-size:13px; color:#475569; padding:5px 0 5px 20px; position:relative; line-height:1.5; }
.evip-card-feats li::before{ content:"✓"; position:absolute; left:0; color:#16a34a; font-weight:700; }
/* 兼容旧单行样式（备用） */
.evip-card-price{ font-size:30px; font-weight:800; color:#0d5aa0; line-height:1; }
.evip-card-price .cur{ font-size:18px; margin-right:1px; }
.evip-card-price .evip-card-unit{ font-size:13px; color:#64748b; font-weight:600; margin-left:3px; }
.evip-card-price-old{ font-size:14px; color:#94a3b8; text-decoration:line-through; font-weight:600; margin-left:8px; }
.evip-card-free{ display:inline-block; font-size:12px; font-weight:700; color:#fff; background:#ef4444; border-radius:10px; padding:2px 9px; margin-left:8px; vertical-align:middle; }
.ev-btn{ border:none; border-radius:9px; padding:10px 14px; font-size:14px; font-weight:700; cursor:pointer; background:linear-gradient(135deg,#0d5aa0,#1e3a8a); color:#fff; transition:.15s; }
.ev-btn:hover{ filter:brightness(1.08); }
.ev-btn.current{ background:#e2e8f0; color:#64748b; cursor:default; }
.evip-loading{ grid-column:1/-1; text-align:center; color:#64748b; padding:30px; background:#fff; border-radius:12px; }
.evip-note{ margin-top:24px; background:#fff; border:1px dashed #e3e8ef; border-radius:12px; padding:14px 18px; }
.evip-note p{ margin:5px 0; font-size:13px; color:#64748b; }

/* 招聘发布页：未开通企业VIP 的开通横幅（jobs.js showEnterpriseVipGate 注入） */
.evip-gate{ text-align:center; padding:18px 16px; }
.evip-gate .evip-gate-ico{ font-size:34px; margin-bottom:8px; }
.evip-gate .evip-gate-title{ font-size:18px; font-weight:700; color:#0f172a; margin-bottom:8px; }
.evip-gate .evip-gate-desc{ font-size:14px; color:#475569; line-height:1.7; margin-bottom:16px; }
.evip-gate .m-btn.primary{ background:linear-gradient(135deg,#0d5aa0,#1e3a8a); color:#fff; border:none; padding:10px 22px; border-radius:9px; font-size:15px; font-weight:700; cursor:pointer; }

@media (max-width:860px){
  .evip-plans{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:520px){
  .evip-plans{ grid-template-columns:1fr; }

/* ===== 招聘发布拦截弹窗内企业VIP套餐卡（复用 .evip-card 样式） ===== */
.evip-gate-tip{ font-size:14px; color:#334155; margin:0 0 10px; text-align:left; line-height:1.6; }
.evip-gate-feats{ list-style:none; padding:0; margin:0 auto 14px; max-width:520px; text-align:left; }
.evip-gate-feats li{ font-size:13.5px; color:#475569; padding:5px 0 5px 22px; position:relative; line-height:1.5; }
.evip-gate-feats li::before{ content:"✓"; position:absolute; left:0; color:#16a34a; font-weight:700; }
.evip-gate-foot{ font-size:13px; color:#64748b; margin:6px 0 0; text-align:left; }
.evip-gate-foot a{ color:#0d5aa0; text-decoration:none; font-weight:600; }
.evip-gate-foot a:hover{ text-decoration:underline; }
/* 弹窗内套餐两列更紧凑 */
.evip-gate .evip-plans{ grid-template-columns:repeat(2,1fr); }
.evip-card .m-btn.primary{ margin:14px 18px 18px; width:calc(100% - 36px); box-sizing:border-box; }

/* ===== 会员中心：企业VIP 徽章 + 入口按钮行 ===== */
.mc-vip{ margin-top:10px; min-height:0; }
.mc-vip-badge{ display:inline-block; font-size:12.5px; font-weight:700; color:#0d5aa0; background:#e7f1fb; border:1px solid #bcdcf5; padding:4px 12px; border-radius:20px; }
.mc-act-row{ display:flex; gap:12px; flex-wrap:wrap; }
.mc-act-row .m-btn{ text-decoration:none; }
  .evip-hero h1{ font-size:22px; }
}
