/* ============================================================
   新加坡招聘网 前台样式（唯一 CSS 文件）
   设计语言：明亮蓝 + 活力橙 · 卡片化 · 移动优先
   （--red/--navy 为历史变量名，现值为橙/蓝）
   ============================================================ */
:root {
  --red: #f97316;
  --red-dark: #ea580c;
  --red-soft: #fff4ee;
  --red-line: #fdd8b8;
  --navy: #1d5fd0;
  --navy-2: #3b82f6;
  --navy-soft: #e9f1fd;
  --ink: #1c2635;
  --gray: #67788f;
  --faint: #93a1b5;
  --line: #e6eaf1;
  --line-soft: #eef1f6;
  --bg: #f5f7fa;
  --card: #ffffff;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15, 31, 58, .05);
  --shadow-up: 0 8px 24px rgba(15, 31, 58, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font: 15px/1.75 -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red); }
img { max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============ 顶部条 ============ */
.topstrip { background: var(--navy); color: #b9c6dc; font-size: 13px; }
.topstrip .wrap { display: flex; align-items: center; gap: 18px; height: 34px; }
.topstrip .slogan { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topstrip a { color: #fff; font-weight: 600; }
.topstrip a:hover { color: #ffdcc2; }
.topstrip .ts-item { white-space: nowrap; }

/* ============ 主导航 ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; gap: 22px; height: 62px; }
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo .mark {
  width: 36px; height: 36px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(249,115,22,.3);
}
.logo .word b { display: block; font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.25; letter-spacing: .5px; }
.logo .word span { display: block; font-size: 11px; color: var(--faint); letter-spacing: 1.5px; line-height: 1.2; }
.logo:hover .word b { color: var(--red); }
.logo-img { display: block; height: 45px; width: auto; max-width: 320px; object-fit: contain; }
.main-nav { display: flex; gap: 4px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  padding: 6px 13px; border-radius: 8px; font-size: 15px; white-space: nowrap;
  color: #3d4c62; font-weight: 500;
}
.main-nav a:hover { background: var(--navy-soft); color: var(--navy-2); }
.header-cta {
  flex: none; display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff !important; font-weight: 700; font-size: 15px;
  padding: 9px 18px; border-radius: 9px;
  box-shadow: 0 2px 8px rgba(249,115,22,.3);
  transition: background .15s, transform .15s;
  font-variant-numeric: tabular-nums;
}
.header-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; }

/* 移动端汉堡菜单（纯 CSS，checkbox 开关） */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: var(--ink); cursor: pointer; flex: none; }
.burger:active { background: var(--navy-soft); }
.burger svg { width: 24px; height: 24px; }
.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--card); border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(15, 31, 58, .12);
}
.mobile-nav a {
  display: block; padding: 13px 22px; font-size: 15px; font-weight: 500;
  border-top: 1px solid var(--line-soft);
}
.mobile-nav a:active { background: var(--navy-soft); }
.nav-toggle:checked ~ .mobile-nav { display: block; }

/* ============ 通用区块 ============ */
main.wrap { padding-top: 20px; padding-bottom: 36px; }
section.panel, .panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 18px; box-shadow: var(--shadow);
}
.sec-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.sec-head h2 { font-size: 19px; font-weight: 700; letter-spacing: .3px; }
.sec-head h2::before { content: ""; display: inline-block; width: 4px; height: 16px; background: var(--red); border-radius: 2px; margin-right: 10px; vertical-align: -2px; }
.sec-head .more { margin-left: auto; font-size: 13px; color: var(--gray); }
.sec-head .more:hover { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--red); color: #fff !important;
  padding: 11px 26px; border: 0; border-radius: 9px; font-size: 15px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  box-shadow: 0 2px 8px rgba(249,115,22,.3);
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--red) !important; border: 1.5px solid var(--red); box-shadow: none; }
.btn.ghost:hover { background: var(--red-soft); }
.btn.on-dark { background: #fff; color: var(--navy) !important; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.btn.on-dark:hover { background: #f2f5fb; }
.btn.ghost-dark { background: transparent; color: #fff !important; border: 1.5px solid rgba(255,255,255,.55); box-shadow: none; }
.btn.ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.chip {
  display: inline-block; padding: 2px 11px; border-radius: 20px; font-size: 12px;
  background: var(--navy-soft); color: #3d5480;
}

/* ============ 职位搜索 ============ */
.search-form { display: flex; gap: 10px; position: relative; }
.sf-tip {
  position: absolute; top: 100%; left: 4px; margin-top: 7px; z-index: 20;
  background: var(--ink); color: #fff; font-size: 12.5px; padding: 5px 12px;
  border-radius: 7px; opacity: 0; visibility: hidden; transition: opacity .15s;
  pointer-events: none; white-space: nowrap;
}
.sf-tip::before {
  content: ""; position: absolute; top: -4px; left: 16px;
  border: 4px solid transparent; border-bottom-color: var(--ink); border-top: 0;
}
.sf-tip.on { opacity: 1; visibility: visible; }
.search-form input[type=search] {
  flex: 1; min-width: 0; padding: 11px 15px; font-size: 15px;
  border: 1px solid var(--line); border-radius: 9px; background: #fff;
  font-family: inherit; color: var(--ink);
}
.search-form input[type=search]:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.search-form .btn { flex: none; padding: 11px 24px; }
.hero-search { max-width: 560px; margin: 24px auto 0; position: relative; z-index: 1; }
.hero-search input[type=search] { border: 0; box-shadow: 0 4px 16px rgba(0, 0, 0, .18); }
.list-search { padding: 14px 16px; }

/* ============ 首页 Hero ============ */
.hero {
  position: relative; overflow: hidden; border-radius: 16px; margin-bottom: 18px;
  background: var(--navy);
  color: #fff; padding: 52px 30px 46px; text-align: center;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 2px; color: #ffdcc2; font-weight: 600;
  margin-bottom: 14px;
}
.hero .eyebrow::before, .hero .eyebrow::after { content: ""; width: 26px; height: 1px; background: rgba(255,220,194,.55); }
.hero h1 { font-size: clamp(26px, 4.6vw, 40px); font-weight: 800; letter-spacing: 1px; line-height: 1.3; text-wrap: balance; }
.hero .sub { margin-top: 12px; font-size: clamp(14px, 2vw, 16px); color: #c3cfe2; }
.hero .sub strong { color: #fff; }
.hero .cta-row { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============ 分类网格 ============ */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.cat-card {
  border: 1px solid var(--line); border-radius: 10px; padding: 15px 17px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  background: var(--card);
}
.cat-card:hover { border-color: var(--red-line); transform: translateY(-2px); box-shadow: var(--shadow-up); }
.cat-top { display: flex; align-items: baseline; gap: 8px; font-weight: 700; font-size: 15.5px; margin-bottom: 8px; }
.cat-top .cnt {
  font-size: 12px; font-weight: 600; color: var(--red);
  background: var(--red-soft); border-radius: 20px; padding: 1px 9px;
  font-variant-numeric: tabular-nums;
}
.cat-subs { display: flex; flex-wrap: wrap; gap: 5px 13px; font-size: 13px; }
.cat-subs a { color: var(--gray); }
.cat-subs a:hover { color: var(--red); }

/* ============ 职位/文章列表 ============ */
.job-list li, .art-list li {
  list-style: none; display: flex; align-items: baseline; gap: 12px;
  padding: 13px 4px; border-bottom: 1px solid var(--line-soft);
}
.job-list li:last-child, .art-list li:last-child { border-bottom: 0; }
.job-list li:hover, .art-list li:hover { background: #fafbfd; }
.jl-title {
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 15.5px; font-weight: 600;
}
.art-list li a { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.jl-salary { color: var(--red); font-size: 13.5px; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
/* 新币 / 人民币 视觉差异化：同为红色，新币加粗为主，人民币不加粗、小一号为辅 */
.s-cny { color: var(--red); font-weight: 400; font-size: .88em; }
.jl-cat {
  color: #3d5480; font-size: 12px; white-space: nowrap;
  background: var(--navy-soft); border-radius: 20px; padding: 1px 10px;
}
.jl-date { color: var(--faint); font-size: 13px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.top-badge {
  flex: none; background: var(--red); color: #fff; font-size: 11px;
  border-radius: 4px; padding: 0 6px; line-height: 1.7; align-self: center;
}
.empty { color: var(--gray); padding: 18px 4px; }

/* ============ 面包屑 / 列表页头 ============ */
.crumbs { font-size: 13px; color: var(--faint); margin-bottom: 12px; }
.crumbs a { color: var(--gray); }
.crumbs a:hover { color: var(--red); }
.list-title {
  font-size: 22px; font-weight: 700;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 24px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.list-title .total { font-size: 13px; color: var(--gray); font-weight: 400; margin-left: 14px; }
.sub-filter {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 20px; margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 8px 10px;
  box-shadow: var(--shadow);
}
.sub-filter a {
  font-size: 13px; color: #3d4c62; background: var(--bg);
  border: 1px solid var(--line); border-radius: 20px; padding: 3px 13px;
  transition: all .15s; font-variant-numeric: tabular-nums;
}
.sub-filter a:hover { color: var(--red); border-color: var(--red-line); background: var(--red-soft); }
ul.job-list.big, ul.art-list.big {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 6px 20px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.job-list.big li { padding: 15px 4px; }

/* ============ 分页 ============ */
.pager { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin: 22px 0; }
.pager a, .pager span {
  min-width: 36px; text-align: center; padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--card);
  font-size: 14px; font-variant-numeric: tabular-nums;
}
.pager a:hover { border-color: var(--red); color: var(--red); }
.pager .cur { background: var(--red); border-color: var(--red); color: #fff; font-weight: 600; }
.pager span:not(.cur) { border: 0; background: none; color: var(--faint); }

/* ============ 详情页 ============ */
.jd-head {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; margin-bottom: 16px; box-shadow: var(--shadow);
}
.jd-head h1 { font-size: clamp(20px, 3.4vw, 26px); font-weight: 700; line-height: 1.4; text-wrap: balance; }
.jd-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 10px; font-size: 13px; color: var(--gray); align-items: center; }
.jd-meta a { color: #3d5480; background: var(--navy-soft); border-radius: 20px; padding: 2px 12px; font-size: 12.5px; }
.jd-meta a:hover { color: var(--red); background: var(--red-soft); }
.salary-line {
  margin-top: 14px; padding: 13px 18px; border-radius: 10px;
  background: var(--red-soft); border: 1px solid var(--red-line);
  font-size: 14px; color: var(--gray);
}
.salary-line strong { color: var(--red); font-size: 19px; font-weight: 800; margin-left: 6px; font-variant-numeric: tabular-nums; }
.salary-line strong .s-cny { color: var(--red); font-size: 14px; font-weight: 400; margin-left: 3px; }

.jd-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 16px; align-items: start; margin-bottom: 2px; }
.jd-desc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow);
}
.jd-desc .dt { font-size: 16px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line-soft); }
.jd-side { position: sticky; top: 78px; }

/* 联系卡 */
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow); margin-bottom: 16px;
  overflow: hidden; position: relative;
}
.contact-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--red); }
.cc-title { font-weight: 700; font-size: 15.5px; margin-bottom: 4px; }
.cc-sub { font-size: 12.5px; color: var(--faint); margin-bottom: 12px; }
.cc-phone { display: block; margin-bottom: 4px; font-size: 13px; color: var(--gray); }
.cc-phone a { color: var(--red); font-size: 23px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .5px; }
.cc-row { font-size: 14px; margin-bottom: 4px; color: var(--gray); }
.cc-row b { color: var(--ink); font-weight: 600; }
.cc-qr { width: 130px; margin-top: 10px; border: 1px solid var(--line); border-radius: 8px; padding: 5px; background: #fff; display: block; }
.cc-btn { margin-top: 14px; width: 100%; }
.cc-group { margin-top: 12px; width: auto; padding: 7px 16px; font-size: 13px; font-weight: 500; box-shadow: none; }
.contact-card.slim { text-align: center; padding: 18px 20px; }
.contact-card.slim p { margin: 0; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.contact-card.slim a[href^="tel"] { color: var(--red); font-weight: 800; font-size: 17px; font-variant-numeric: tabular-nums; }

/* 富文本 */
.rich-content { font-size: 15px; line-height: 1.9; overflow-wrap: break-word; }
.rich-content p { margin: 0 0 12px; }
.rich-content img { height: auto; border-radius: 8px; }
.rich-content hr { border: 0; border-top: 1px solid var(--line-soft); margin: 18px 0; }
.rich-content table { max-width: 100%; border-collapse: collapse; }
.rich-content td, .rich-content th { border: 1px solid var(--line); padding: 5px 10px; }
.rich-content ul, .rich-content ol { padding-left: 1.4em; margin-bottom: 12px; }
.rich-content h3 { font-size: 17px; font-weight: 700; margin: 18px 0 10px; }
.rich-content a { color: var(--red); text-decoration: underline; }

/* 相关推荐 */
.related { margin-bottom: 16px; }

/* 去新加坡打工优势 */
.adv-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 26px; }
.adv-list li { position: relative; padding-left: 18px; font-size: 14.5px; }
.adv-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
}
.adv-list b { color: var(--red); font-weight: 700; }
@media (max-width: 640px) {
  .adv-list { grid-template-columns: 1fr; }
}

/* 文章详情 */
.article-detail {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px clamp(20px, 4vw, 40px); margin-bottom: 16px; box-shadow: var(--shadow);
}
.article-detail h1 { font-size: clamp(20px, 3.4vw, 26px); font-weight: 700; line-height: 1.45; text-wrap: balance; margin-bottom: 8px; }
.article-detail .meta { color: var(--faint); font-size: 13px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }

/* ============ CTA 横幅 ============ */
.cta-band {
  position: relative; overflow: hidden; border-radius: 16px; margin-bottom: 18px;
  background: var(--navy);
  color: #fff; padding: 30px 28px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cta-band .t { flex: 1; min-width: 240px; }
.cta-band .t b { display: block; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.cta-band .t span { color: #b9c6dc; font-size: 14px; }
.cta-band .btn { position: relative; z-index: 1; }

/* ============ 友链 ============ */
.links h2 { font-size: 14px; color: var(--gray); font-weight: 600; margin-bottom: 10px; }
.links p { display: flex; flex-wrap: wrap; gap: 4px 18px; font-size: 13px; }
.links a { color: var(--faint); }
.links a:hover { color: var(--red); }

/* ============ 404 ============ */
.notfound {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  text-align: center; padding: 70px 20px; box-shadow: var(--shadow);
}
.notfound h1 { font-size: 64px; font-weight: 800; color: var(--red); letter-spacing: 4px; }
.notfound p { margin: 12px 0 22px; color: var(--gray); }
.notfound .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ 页脚 ============ */
.site-footer { background: #ecf3fc; color: #52688f; margin-top: 20px; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 34px;
  padding-top: 40px; padding-bottom: 32px;
}
.f-brand .logo-line { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.f-brand .mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.f-brand .logo-line b { color: #1c3a66; font-size: 17px; }
.f-brand p { font-size: 13.5px; line-height: 1.9; }
.f-col h4 { color: #1c3a66; font-size: 14px; letter-spacing: 1px; margin-bottom: 14px; }
.f-col h4::after { content: ""; display: block; width: 22px; height: 2px; background: var(--red); margin-top: 7px; border-radius: 2px; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 8px; font-size: 13.5px; }
.f-col a { color: #52688f; }
.f-col a:hover { color: var(--red-dark); }
.f-contact .tel { color: #1c3a66; font-size: 21px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .5px; }
.f-contact .tel:hover { color: var(--red-dark); }
.f-contact .qr { width: 96px; margin-top: 12px; border-radius: 8px; border: 1px solid #cdddf0; padding: 4px; background: #fff; display: block; }
.footer-bottom { border-top: 1px solid #d9e6f5; padding: 16px 0; font-size: 12.5px; }
.footer-bottom .wrap { display: flex; gap: 8px 22px; flex-wrap: wrap; align-items: center; }
.footer-bottom a { color: #52688f; }
.footer-bottom a:hover { color: var(--red-dark); }

/* ============ 移动端底部菜单栏 ============ */
.tabbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  grid-template-columns: repeat(5, 1fr);
  background: var(--card); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 16px rgba(15, 31, 58, .08);
}
.tabbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 7px 2px 6px; font-size: 11px; color: var(--gray);
}
.tabbar a svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.tabbar a:active { color: var(--red); }
.tabbar .tb-call { color: var(--red); font-weight: 600; }
.tabbar .tb-call-btn {
  width: 40px; height: 40px; margin-top: -18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(249,115,22,.4); border: 3px solid #fff;
}
.tabbar .tb-call-btn svg { width: 19px; height: 19px; stroke: #fff; }

/* ============ 响应式 ============ */
@media (max-width: 920px) {
  .jd-grid { display: flex; flex-direction: column; }
  .jd-side { position: static; width: 100%; }   /* 联系卡跟随源顺序，显示在职位详情之后 */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 640px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .topstrip .slogan { display: none; }
  .topstrip .wrap { justify-content: center; }
  .header-in { gap: 10px; height: 58px; }
  .logo { margin-right: auto; }
  .logo .word span { display: none; }
  .logo-img { height: 38px; max-width: 210px; }
  .main-nav { display: none; }
  .burger { display: inline-flex; }
  .header-cta { padding: 8px 12px; font-size: 14px; }
  .header-cta .cta-num { display: none; }
  .tabbar { display: grid; }
  .jl-cat { display: none; }
  .job-list li, .art-list li { flex-wrap: wrap; row-gap: 4px; }
  .jl-title { flex-basis: 100%; white-space: normal; }
  .job-list li .jl-date { margin-left: auto; }   /* 第二行日期靠右，与文章行一致 */
  .hero { padding: 34px 14px 32px; border-radius: 14px; }
  .hero .sub-brand { display: none; }   /* 站名太长，移动端隐藏避免断行 */
  .hero .sub { font-size: 13px; }
  section.panel, .panel { padding: 18px 16px; }
  .jd-head, .jd-desc { padding: 18px 16px; }
  /* 隐藏友情链接 */
  .links { display: none; }
  /* 页脚紧凑化：导航列由底部菜单栏承担，隐藏；缩小留白 */
  .footer-main { grid-template-columns: 1fr; gap: 16px; padding-top: 22px; padding-bottom: 16px; }
  .f-col:not(.f-contact) { display: none; }
  .f-brand p { font-size: 12.5px; line-height: 1.7; }
  .f-brand p:first-of-type { display: none; }   /* 移动端隐藏品牌长简介，保留运营主体行 */
  .f-brand .logo-line { margin-bottom: 6px; }
  .f-col h4 { margin-bottom: 8px; }
  .f-contact .qr { width: 76px; margin-top: 8px; }
  .footer-bottom { padding: 12px 0; }
  .site-footer { margin-top: 12px; }
}
