:root {
  --sidebar-bg: #1f2d3d;
  --sidebar-fg: #c0ccda;
  --sidebar-active: #2d8cf0;
  --bg: #f0f2f5;
  --panel: #ffffff;
  --border: #e4e7ed;
  --text: #303133;
  --muted: #909399;
  --primary: #2d8cf0;
  --success: #19be6b;
  --warning: #ff9900;
  --danger: #ed4014;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}

#app { height: 100%; }

.layout { display: flex; min-height: 100vh; }

/* 侧边栏 */
.sidebar {
  width: 210px;
  background: var(--sidebar-bg);
  color: var(--sidebar-fg);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.sidebar .brand {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar .brand small { display: block; font-size: 11px; color: #8a9bb0; font-weight: 400; margin-top: 3px; }
.sidebar nav { padding: 8px 0; flex: 1; }
.sidebar nav a {
  display: block;
  padding: 11px 22px;
  color: var(--sidebar-fg);
  text-decoration: none;
  cursor: pointer;
  border-left: 3px solid transparent;
  font-size: 14px;
}
.sidebar nav a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.sidebar nav a.active {
  background: rgba(45, 140, 240, 0.16);
  color: #fff;
  border-left-color: var(--sidebar-active);
}

/* ---- 二级折叠菜单 ---- */
.sidebar .nav-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  color: #e6edf4;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}
.sidebar .nav-group-title:hover { background: rgba(255, 255, 255, 0.05); }
.sidebar .nav-group-title .arrow {
  width: 7px; height: 7px;
  border-right: 2px solid #8a9bb0;
  border-bottom: 2px solid #8a9bb0;
  transform: rotate(-45deg);          /* 收起：指向右 */
  transition: transform 0.15s ease;
  margin-right: 4px;
}
.sidebar .nav-group.open .nav-group-title .arrow { transform: rotate(45deg); } /* 展开：指向下 */
.sidebar .nav-sub { display: none; }
.sidebar .nav-group.open .nav-sub { display: block; }
.sidebar .nav-sub a {
  padding: 9px 22px 9px 40px;         /* 子项缩进 */
  font-size: 13px;
  color: var(--sidebar-fg);
}
.sidebar .me {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #8a9bb0;
}
.sidebar .me b { color: #c0ccda; }
.sidebar .me button {
  margin-top: 8px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #c0ccda;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}
.sidebar .me button:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

/* 主区域 */
.main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.topbar {
  height: 54px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 600;
}
.content { padding: 22px; overflow: auto; flex: 1; }

/* 卡片 */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 14px; font-size: 15px; }

/* 仪表盘 */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}
.stat .num { font-size: 28px; font-weight: 700; color: var(--primary); }
.stat .label { color: var(--muted); margin-top: 6px; }
.green-t { color: var(--success) !important; }
.orange-t { color: var(--warning) !important; }
.red-t { color: var(--danger) !important; }

/* 会员层级卡片 */
.stat.tier { border-top: 3px solid var(--primary); }
.stat.tier .tier-name { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.stat.tier .num { font-size: 30px; }

/* 表格 */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: #fafafa; color: #606266; font-weight: 600; white-space: nowrap; }
tbody tr:hover { background: #f7faff; }
.cell-clip { max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cell-wrap { max-width: 360px; }
.uuid-cell { max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11px; color: #888; }

/* 表格横向滚动 */
.table-scroll { overflow-x: auto; width: 100%; border: 1px solid var(--border); border-radius: 6px; }
.table-scroll table { min-width: max-content; width: auto; border: none; }
.table-scroll th, .table-scroll td { white-space: nowrap; }

/* 表单 / 筛选 */
.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 14px; }
.filters input, .filters select, .form input, .form select, .form textarea {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #fff;
  color: var(--text);
}
.filters input:focus, .form input:focus, .form select:focus, .form textarea:focus { border-color: var(--primary); }

/* 时间范围控件（后台各列表页统一用「起始 / 结束」两个 datetime-local） */
.filters label.time-range {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #6b7280; white-space: nowrap;
}
.filters input[type="datetime-local"] { min-width: 186px; }

/* 批量操作工具条 */
.batch-bar { display: flex; align-items: center; gap: 12px; margin: 12px 0; padding: 8px 12px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; }

/* 按钮 */
.btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 7px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}
.btn:hover { border-color: var(--primary); color: var(--primary); }
.btn.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn.primary:hover { opacity: 0.9; color: #fff; }
.btn.danger { color: var(--danger); border-color: #f5c6cb; }
.btn.danger:hover { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn.sm { padding: 4px 9px; font-size: 12px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* 徽标 */
.badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 12px; line-height: 1.6; }
.badge.gray { background: #f0f0f0; color: #888; }
.badge.blue { background: #eaf3ff; color: var(--primary); }
.badge.green { background: #e8f8ef; color: var(--success); }
.badge.orange { background: #fff4e6; color: var(--warning); }
.badge.red { background: #fdecea; color: var(--danger); }
.badge.purple { background: #f3edff; color: #7b5cd6; }
/* 性别标签：女=粉、男=蓝（与小程序 tag-gender-f / tag-gender-m 同一套观感） */
.badge.pink { background: #ffeef3; color: #e0559a; }
.badge.male { background: #eaf3ff; color: #1c74d4; }

/* 登录 */
.login-wrap { height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1f2d3d, #2d8cf0); }
.login-box { width: 340px; background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.login-box h2 { margin: 0 0 4px; }
.login-box p.sub { color: var(--muted); margin: 0 0 22px; font-size: 13px; }
.login-box .form { display: flex; flex-direction: column; gap: 12px; }
.login-box .form input { padding: 10px 12px; }
.login-box .err { color: var(--danger); font-size: 13px; min-height: 18px; }

/* 弹窗 */
.modal-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; z-index: 50; }
.wa-lightbox { display: none; }
.modal { width: 460px; max-width: 92vw; background: #fff; border-radius: 8px; padding: 20px; max-height: 86vh; display: flex; flex-direction: column; }
.modal h3 { flex-shrink: 0; margin: 0 0 16px; }
.form .row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form .row label { font-size: 12px; color: var(--muted); }
.form .row textarea { resize: vertical; min-height: 64px; }
.form .row .static-val { font-size: 14px; font-weight: 600; color: var(--text); padding: 4px 0; }
.modal .form { overflow-y: auto; flex: 1 1 auto; padding-right: 4px; }
.modal .actions { flex-shrink: 0; display: flex; justify-content: flex-end; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); background: #fff; }

/* 杂项 */
.muted { color: var(--muted); }
.right { text-align: right; }
/* 翻页条 */
.pager { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; padding: 8px 12px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; }
.pager .muted { font-size: 13px; }
.pager .flex { font-size: 13px; }
.pager select { padding: 3px 6px; border: 1px solid var(--border); border-radius: 5px; background: #fff; }
.pager-jump { width: 64px; padding: 4px 6px; border: 1px solid var(--border); border-radius: 5px; }

.empty { color: var(--muted); text-align: center; padding: 30px 0; }
.empty .empty-hint { margin-top: 10px; font-size: 12px; line-height: 1.8; color: var(--muted); }

/* AI 测试页 */
.status-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px 18px; }
.status-grid .kv { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; }
.status-grid .kv span { color: var(--muted); font-size: 13px; }
.status-grid .kv b { font-size: 13px; }
.status-grid .kv b.ok { color: var(--success); }
.status-grid .kv b.no { color: var(--danger); }
.trace-line { margin: 8px 0; display: flex; align-items: center; flex-wrap: wrap; }
.trace-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.trace-item { border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px; background: #fafbfc; }
.trace-h { font-size: 12px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.trace-item table td.k { color: var(--muted); width: 110px; white-space: nowrap; }
.trace-pre { background: #1e1e2e; color: #e6e6e6; padding: 10px; border-radius: 6px; font-size: 12px; max-height: 260px; overflow: auto; white-space: pre-wrap; word-break: break-all; margin: 0; }
.trace-pre.err { color: #ffb4a8; }
.trace-log { background: #1e1e2e; color: #b6e3a7; padding: 12px 14px; border-radius: 6px; font-size: 12.5px; line-height: 1.7; white-space: pre-wrap; word-break: break-all; max-height: 360px; overflow: auto; }
@media (max-width: 720px) { .trace-grid { grid-template-columns: 1fr; } }
.toast { position: fixed; top: 20px; right: 20px; background: #303133; color: #fff; padding: 10px 16px; border-radius: 6px; z-index: 100; font-size: 13px; opacity: 0; transition: opacity .3s; pointer-events: none; }
.toast.show { opacity: 0.95; }
.toast.err { background: var(--danger); }
.mt8 { margin-top: 8px; }
.flex { display: flex; gap: 10px; align-items: center; }
.spacer { flex: 1; }

.detail-images { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-images .thumb { width: 120px; height: 120px; object-fit: cover; border-radius: 6px; border: 1px solid #eee; cursor: pointer; }

/* 图片待审页 */
.orphan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 12px; }
.orphan-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.orphan-img-wrap { height: 200px; background: var(--bg); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.orphan-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.orphan-meta { padding: 12px; font-size: 13px; line-height: 1.7; }
.orphan-meta div { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* AI 识别消息 / 非招聘信息 卡片列表 */
.ai-list { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.ai-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.ai-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.ai-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ai-ops { display: flex; gap: 6px; }
.ai-content { white-space: pre-wrap; word-break: break-word; margin: 10px 0; line-height: 1.6; font-size: 14px; color: #222; max-height: 320px; overflow: auto; }
.ai-title-line { font-size: 15px; color: #111; margin-bottom: 6px; }
.ai-imgs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.ai-img { width: 120px; height: 120px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; cursor: pointer; background: var(--bg); }
.ai-img img { width: 100%; height: 100%; object-fit: cover; }
.ai-sender { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 8px; border-top: 1px dashed var(--border); font-size: 13px; color: #444; }
.ai-field { display: flex; gap: 6px; align-items: baseline; }
.ai-field label { color: #999; flex-shrink: 0; }
.ai-field span { font-weight: 600; color: #222; }
.img-modal { background: #000; padding: 4px; max-width: 92vw; max-height: 92vh; }
.img-modal img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; cursor: zoom-out; }
.img-close { position: absolute; top: 8px; right: 8px; }

/* 原文弹窗：逐条展示消息簇（文字 + 图片） */
.raw-modal { width: 560px; }
.raw-cluster { display: flex; flex-direction: column; gap: 12px; overflow: auto; padding: 4px 2px 10px; }
.raw-item { border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; background: var(--bg-soft); }
.raw-item-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.raw-item-content { white-space: pre-wrap; word-break: break-word; line-height: 1.6; font-size: 14px; color: #222; }
.raw-item-imgs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

/* 人才库管理页 */
.ipt { padding: 7px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; min-width: 200px; }
.ipt:focus { border-color: var(--primary); outline: none; }
.thumb { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; cursor: zoom-in; border: 1px solid var(--border); }
.tag { display: inline-block; padding: 1px 8px; border-radius: 10px; font-size: 12px; background: #fff0f3; color: #c41e3a; margin-right: 4px; }
.hint { font-size: 11px; color: #999; margin-top: 4px; display: block; }
.img-edit { display: flex; gap: 8px; align-items: center; }
.img-edit.col { flex-direction: column; align-items: stretch; }
.img-edit input, .img-edit textarea { flex: 1; }
.modal.wide { width: 720px; }
.form.scroll { max-height: 62vh; overflow-y: auto; }

/* 人才详情预览（小程序风格） */
.modal.talent-preview { width: 440px; max-width: 96vw; max-height: 92vh; padding: 0; overflow: hidden; }
.preview-header { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.preview-header h3 { margin: 0; flex: 1; font-size: 15px; }
.preview-body { overflow: hidden; flex: 1; display: flex; justify-content: center; background: #f5f6f8; }
.phone-screen { width: 100%; max-width: 400px; background: #fff; border-radius: 8px; overflow-y: auto; max-height: 76vh; position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.preview-cover { width: 100%; height: 180px; background: #e8e8e8; overflow: hidden; }
.preview-cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #999; }
.preview-header-card { display: flex; align-items: center; padding: 16px; margin: -24px 12px 12px; background: #fff; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); position: relative; z-index: 2; }
.preview-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-right: 14px; border: 3px solid #fff; }
.preview-avatar-default { display: flex; align-items: center; justify-content: center; background: #f4f5f7; color: #999; font-size: 26px; font-weight: 700; }
.preview-meta { flex: 1; min-width: 0; }
.preview-name { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.preview-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.preview-city { font-size: 12px; color: #666; }
.preview-section { padding: 14px 16px; border-bottom: 1px solid #f2f2f2; }
.preview-section:last-child { border-bottom: none; }
.preview-section-title { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; padding-left: 8px; border-left: 4px solid #c41e3a; }
.preview-figure { display: flex; justify-content: space-around; }
.preview-figure-item { display: flex; flex-direction: column; align-items: center; }
.preview-figure-item b { font-size: 18px; color: #1a1a1a; margin-bottom: 4px; }
.preview-figure-item span { font-size: 12px; color: #999; }
.preview-intro { font-size: 14px; color: #555; line-height: 1.7; white-space: pre-wrap; word-break: break-word; }
.preview-exp { margin-bottom: 16px; }
.preview-exp:last-child { margin-bottom: 0; }
.preview-exp-title { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 6px; }
.preview-exp-content { font-size: 14px; color: #555; line-height: 1.6; }
.preview-exp-imgs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.preview-exp-imgs img { width: 86px; height: 86px; object-fit: cover; border-radius: 6px; cursor: zoom-in; }
.preview-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.preview-works img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; cursor: zoom-in; }
.preview-bottom { position: sticky; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: #fff; border-top: 1px solid #f2f2f2; display: flex; justify-content: center; }
.preview-bottom .btn { width: 100%; padding: 10px; border-radius: 24px; }

/* 联系方式弹窗 */
.modal.contact-modal { width: 360px; }
.contact-list { padding: 6px 0; }
.contact-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-key { color: var(--muted); font-size: 13px; width: 56px; flex-shrink: 0; }
.contact-val { flex: 1; font-size: 15px; font-weight: 600; word-break: break-all; }

/* 客服二维码上传页 */
.qr-preview { width: 200px; height: 200px; object-fit: contain; border: 1px solid var(--border); border-radius: 8px; background: #fff; cursor: zoom-in; }
.single-form { max-width: 560px; }

/* 开关（启用弹出） */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; cursor: pointer; inset: 0; background: #c0c4cc; border-radius: 24px; transition: .2s; }
.switch .slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.switch input:checked + .slider { background: var(--success); }
.switch input:checked + .slider::before { transform: translateX(20px); }

/* 小程序招聘详情预览 */
.modal.recruit-preview { width: 420px; max-width: 96vw; max-height: 92vh; padding: 0; overflow: hidden; }
.preview-mask .modal { display: flex; flex-direction: column; }
.recruit-screen { background: #f7f8fa !important; padding: 0 12px 12px; }
.mini-status-bar { display: flex; align-items: center; justify-content: space-between; padding: 6px 16px; font-size: 11px; color: #1a1a1a; background: #f7f8fa; }
.mini-icons { font-size: 8px; color: #333; letter-spacing: 1px; }
.mini-nav { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #f7f8fa; }
.mini-back, .mini-more { font-size: 20px; color: #333; width: 28px; text-align: center; }
.mini-title { font-size: 14px; color: #1a1a1a; font-weight: 600; }
.mini-page-title { display: flex; align-items: center; font-size: 18px; font-weight: 800; color: #1a1a1a; margin: 8px 0 12px; }
.mini-page-title .mini-bar { width: 4px; height: 16px; background: linear-gradient(180deg, #d4af37 0%, #b08a1e 100%); border-radius: 2px; margin-right: 8px; }
.mini-job-card { background: #fff; border-radius: 16px; padding: 20px; margin-bottom: 12px; position: relative; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.mini-job-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, #d4af37 0%, #b08a1e 100%); }
.mini-job-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.mini-job-title { flex: 1; font-size: 16px; font-weight: 700; color: #1a1a1a; line-height: 1.35; margin-right: 10px; }
.mini-job-salary { flex-shrink: 0; background: linear-gradient(135deg, #fff9ed 0%, #fff3d9 100%); color: #b08a1e; font-size: 13px; font-weight: 700; padding: 5px 12px; border-radius: 10px; }
.mini-job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.mini-tag { display: inline-block; background: #f4f5f7; color: #666; font-size: 11px; padding: 4px 10px; border-radius: 8px; }
.mini-tag-loc { background: #fff3e6; color: #fa8c16; }
.mini-tag-role { background: #e6f7ff; color: #1890ff; }
.mini-detail-block { margin-top: 14px; padding-top: 14px; border-top: 1px solid #ececf1; }
.mini-dh { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 8px; display: flex; align-items: center; }
.mini-dh::before { content: ''; width: 4px; height: 12px; background: #d4af37; border-radius: 2px; margin-right: 6px; }
.mini-dp { font-size: 13px; color: #555; line-height: 1.6; word-break: break-all; margin-bottom: 4px; }
.mini-icon { margin-right: 4px; }
.mini-image-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.mini-image-list img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.mini-btn-contact { width: 100%; margin-top: 16px; padding: 10px; border: none; border-radius: 20px; background: linear-gradient(135deg, #d4af37 0%, #b08a1e 100%); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; }
.mini-job-foot { display: flex; justify-content: flex-end; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f2f2f2; }
.mini-toggle { display: flex; align-items: center; color: #b08a1e; font-size: 12px; font-weight: 600; }
.mini-toggle::after { content: ''; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid #b08a1e; margin-left: 5px; transform: rotate(180deg); }
.mini-tabbar { display: flex; align-items: center; justify-content: space-around; padding: 10px 0; background: #fff; border-radius: 12px; margin-top: 4px; box-shadow: 0 -2px 8px rgba(0,0,0,0.03); }
.mini-tab { font-size: 11px; color: #999; }
.mini-tab.active { color: #b08a1e; font-weight: 700; }
