﻿/* ============================================================
   数时大数据智能检索算法 · 企业管理后台  全局样式
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: #f5f7fb;
  color: #1f2d3d;
  font-size: 14px;
  line-height: 1.6;
}
a { color: #1a5fd6; text-decoration: none; }
a:hover { text-decoration: underline; }

:root {
  --primary: #1a5fd6;
  --primary-hover: #154fae;
  --primary-light: #e8f0fe;
  --border: #e6eaf2;
  --text-secondary: #5f6b7a;
  --text-muted: #9aa5b1;
  --radius: 10px;
}

/* ============ 整体布局 ============ */
.layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 224px; background: #fff; border-right: 1px solid var(--border);
  position: fixed; inset: 0 auto 0 0; display: flex; flex-direction: column; z-index: 20;
}
.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid #f0f2f7; }
.brand-logo {
  width: 34px; height: 34px; border-radius: 8px; flex: none;
  background: linear-gradient(135deg, #2273e6, #1549ad);
  display: flex; align-items: center; justify-content: center;
}
.brand-logo svg { width: 20px; height: 20px; }
.brand-name { font-size: 15px; font-weight: 600; color: #1f2d3d; line-height: 1.25; }
.brand-sub { font-size: 11px; color: var(--text-muted); }
.sidebar-nav { flex: 1; padding: 12px; overflow-y: auto; }
.nav-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; margin-bottom: 4px;
  border-radius: 8px; color: #45556b; font-size: 14px; cursor: pointer;
}
.nav-item:hover { background: #f3f6fc; text-decoration: none; }
.nav-item.active { background: #e9edfc; color: #1c3faa; font-weight: 500; }
.nav-item svg { width: 18px; height: 18px; flex: none; }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-top: 1px solid #f0f2f7; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none; color: #fff; font-weight: 600;
  background: linear-gradient(135deg, #7aa7f0, #4a6fdc);
  display: flex; align-items: center; justify-content: center;
}
.user-name { font-size: 13px; font-weight: 600; color: #1f2d3d; line-height: 1.3; }
.user-role { font-size: 11px; color: var(--text-muted); }

.main-wrap { flex: 1; margin-left: 224px; display: flex; flex-direction: column; min-height: 100vh; }
.topbar {
  height: 60px; background: #fff; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px; padding: 0 24px;
  position: sticky; top: 0; z-index: 10;
}
.topbar .spacer { flex: 1; }
.crumbs { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.crumbs .crumb-strong { color: #1f2d3d; font-weight: 600; }
.crumbs .crumb-sep { color: #c3ccd9; }
.crumbs .crumb-active { color: #1f2d3d; font-weight: 500; border-bottom: 2px solid var(--primary); padding: 2px 0; }
.topbar-icon {
  width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #5f6b7a; cursor: pointer; border: none; background: transparent; position: relative;
}
.topbar-icon:hover { background: #f3f6fc; }
.topbar-icon svg { width: 19px; height: 19px; }
.topbar-icon .dot { position: absolute; top: 7px; right: 8px; width: 7px; height: 7px; border-radius: 50%; background: #f56c6c; border: 1.5px solid #fff; }
.topbar-divider { width: 1px; height: 22px; background: var(--border); }
.topbar-user { display: flex; align-items: center; gap: 9px; }
.topbar-user .avatar { width: 32px; height: 32px; font-size: 13px; }
.logout-link { display: flex; align-items: center; gap: 6px; color: #45556b; font-size: 14px; }
.logout-link:hover { color: var(--primary); text-decoration: none; }
.logout-link svg { width: 16px; height: 16px; }
.topbar-search { position: relative; }
.topbar-search input {
  width: 260px; height: 36px; border: 1px solid var(--border); border-radius: 8px;
  background: #f7f9fc; padding: 0 12px 0 34px; font-size: 13px; outline: none;
}
.topbar-search input:focus { border-color: var(--primary); background: #fff; }
.topbar-search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: #9aa5b1; }

.content { padding: 24px 28px; flex: 1; }
.page-footer { text-align: center; color: var(--text-muted); font-size: 12px; padding: 18px 0 26px; }

/* ============ 卡片 ============ */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 20px; }
.card-flush { padding: 0; overflow: hidden; }
.card-flush .pagination { border-top: 1px solid #f1f4f9; margin: 0; padding: 14px 18px; }
.card-title { font-size: 16px; font-weight: 600; margin: 0 0 14px; color: #1f2d3d; }

/* ============ 按钮 ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 38px; padding: 0 18px; border-radius: 7px; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; background: #fff; color: #45556b; white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline { border-color: #d3dae6; color: #45556b; background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: #f56c6c; border-color: #f56c6c; color: #fff; }
.btn-danger:hover { background: #e05252; border-color: #e05252; }
.btn-sm { height: 30px; padding: 0 12px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-link { border: none; background: none; color: var(--primary); padding: 0 6px; height: auto; cursor: pointer; font-size: 13px; }
.btn-link:hover { text-decoration: underline; }
.btn-link.danger { color: #f56c6c; }
.icon-btn { border: none; background: none; cursor: pointer; padding: 6px; border-radius: 6px; color: #1a5fd6; }
.icon-btn:hover { background: #f0f5fe; }
.icon-btn.danger { color: #f56c6c; }
.icon-btn.danger:hover { background: #feecec; }
.icon-btn svg { width: 16px; height: 16px; display: block; }

/* ============ 表单 ============ */
.form-label { display: block; font-size: 13px; color: #45556b; margin-bottom: 6px; }
.input, .select {
  width: 100%; height: 38px; border: 1px solid #d7dde8; border-radius: 7px;
  padding: 0 12px; font-size: 14px; color: #1f2d3d; background: #fff; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26, 95, 214, .12); }
.input::placeholder { color: #a6b0bd; }
.select {
  appearance: none; cursor: pointer; padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235f6b7a' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
}
.input-icon { position: relative; }
.input-icon > svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: #9aa5b1; pointer-events: none; }
.input-icon .input { padding-left: 36px; }
.input-icon .icon-right {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: #9aa5b1; cursor: pointer; background: none; border: none; padding: 0;
}
.input-icon .icon-right svg { width: 17px; height: 17px; display: block; }
textarea.input { height: auto; padding: 10px 12px; resize: vertical; }
.form-item { margin-bottom: 16px; }

/* ============ 徽章 ============ */
.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 2px 10px;
  border-radius: 999px; font-size: 12px; line-height: 18px; white-space: nowrap;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-green { background: #e7f8f0; color: #18a058; }
.badge-yellow { background: #fdf3e0; color: #e6a23c; }
.badge-red { background: #feecec; color: #f56c6c; }
.badge-gray { background: #f0f2f5; color: #909399; }
.badge-blue { background: #e8f0fe; color: #1a5fd6; }
.badge-cyan { background: #e0f7f6; color: #0aa5a0; }
.badge-purple { background: #f3eaff; color: #8b5cf6; }
.badge-pink { background: #fdeef5; color: #ec4899; }
.cat-dot { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.cat-dot i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* ============ 表格 ============ */
.table { width: 100%; border-collapse: collapse; }
.table th {
  text-align: left; font-weight: 500; color: #8492a6; font-size: 13px;
  padding: 12px 16px; background: #fafbfc; border-bottom: 1px solid var(--border); white-space: nowrap;
}
.table td { padding: 14px 16px; border-bottom: 1px solid #f1f4f9; vertical-align: middle; font-size: 14px; }
.table tbody tr:hover { background: #f8fafd; }
.table tbody tr:last-child td { border-bottom: none; }
.table .cell-title { font-weight: 500; color: #1f2d3d; }
.table .cell-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; max-width: 440px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============ 分页 ============ */
.pagination { display: flex; align-items: center; justify-content: space-between; color: var(--text-muted); font-size: 13px; }
.pages { display: flex; align-items: center; gap: 6px; }
.page-btn {
  min-width: 30px; height: 30px; padding: 0 8px; border-radius: 6px;
  border: 1px solid #d7dde8; background: #fff; color: #45556b; cursor: pointer; font-size: 13px;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-btn:disabled { opacity: .45; cursor: not-allowed; }

/* ============ 筛选区 ============ */
.filter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.filter-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.filter-row { display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.filter-row .field { flex: 1; min-width: 180px; }
.filter-row .actions { display: flex; gap: 10px; }
.date-range { display: flex; align-items: center; gap: 8px; }
.date-range .input { flex: 1; }
.date-range span { color: var(--text-muted); }

/* ============ 弹窗 & Toast ============ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 42, .45);
  display: flex; align-items: center; justify-content: center; z-index: 100; animation: fadeIn .15s ease;
}
.modal { background: #fff; border-radius: 12px; width: 520px; max-width: 92vw; max-height: 86vh; overflow: auto; box-shadow: 0 20px 50px rgba(15, 23, 42, .2); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #f0f2f7; }
.modal-title { font-size: 15px; font-weight: 600; }
.modal-close { border: none; background: none; cursor: pointer; color: #9aa5b1; padding: 4px; }
.modal-close:hover { color: #45556b; }
.modal-body { padding: 20px; }
.modal-footer { padding: 14px 20px; border-top: 1px solid #f0f2f7; display: flex; justify-content: flex-end; gap: 10px; }
.toast {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(31, 45, 61, .92); color: #fff; padding: 9px 18px; border-radius: 8px;
  font-size: 13px; z-index: 200; animation: fadeIn .15s ease; box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.detail-kv { display: grid; grid-template-columns: 90px 1fr; row-gap: 12px; margin: 0; font-size: 13.5px; }
.detail-kv dt { color: #8492a6; }
.detail-kv dd { margin: 0; color: #1f2d3d; word-break: break-all; }

/* ============ 登录页 ============ */
.login-page { background: #fff; min-height: 100vh; display: flex; flex-direction: column; }
.login-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.login-box { width: 400px; max-width: 100%; }
.login-logo {
  width: 64px; height: 64px; border-radius: 14px; margin: 0 auto 18px;
  background: linear-gradient(135deg, #2273e6, #12459f);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(26, 95, 214, .25);
}
.login-logo svg { width: 34px; height: 34px; }
.login-title { text-align: center; font-size: 26px; color: #1668c8; font-weight: 600; margin: 0 0 6px; }
.login-sub { text-align: center; color: #8492a6; font-size: 13px; margin: 0 0 30px; }
.login-row { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 20px; font-size: 13px; }
.checkbox { display: flex; align-items: center; gap: 7px; color: #45556b; cursor: pointer; }
.checkbox input { width: 15px; height: 15px; accent-color: var(--primary); }
.login-agree { text-align: center; font-size: 12px; color: #8492a6; margin: 16px 0 26px; }
.login-divider { display: flex; align-items: center; gap: 12px; color: #9aa5b1; font-size: 12px; margin: 0 0 18px; }
.login-divider::before, .login-divider::after { content: ""; flex: 1; height: 1px; background: #e6eaf2; }
.login-footer { text-align: center; color: #9aa5b1; font-size: 12px; padding: 18px 0 22px; }
.login-footer a { color: #8492a6; }
.login-error { background: #feecec; color: #f56c6c; border-radius: 7px; padding: 8px 12px; font-size: 13px; margin-bottom: 14px; display: none; }

/* ============ 首页控制台 ============ */
.dash-hero { display: flex; gap: 20px; margin-bottom: 20px; }
.welcome-card { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.welcome-card h2 { margin: 0 0 10px; font-size: 22px; color: #1668c8; font-weight: 600; }
.welcome-card p { margin: 0 0 22px; color: #5f6b7a; max-width: 560px; }
.welcome-card .btn + .btn { margin-left: 10px; }
.health-card { width: 360px; flex: none; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.health-icon {
  width: 46px; height: 46px; border-radius: 12px; background: #e0f2ef; color: #0d9488;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.health-icon svg { width: 24px; height: 24px; }
.health-card h3 { margin: 0 0 8px; font-size: 16px; }
.health-card p { margin: 0 0 16px; color: #5f6b7a; font-size: 13px; }
.progress { height: 6px; border-radius: 3px; background: #edf1f7; overflow: hidden; }
.progress > i { display: block; height: 100%; border-radius: 3px; background: #0d9488; }
.health-note { margin-top: 10px; font-size: 12px; color: #5f6b7a; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 14px; cursor: pointer; transition: box-shadow .15s;
}
.feature-card:hover { box-shadow: 0 6px 18px rgba(31, 45, 61, .08); }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.feature-icon svg { width: 20px; height: 20px; }
.feature-icon.blue { background: #e8f0fe; color: #1a5fd6; }
.feature-icon.purple { background: #f3eaff; color: #8b5cf6; }
.feature-icon.teal { background: #e0f2ef; color: #0d9488; }
.feature-card h4 { margin: 2px 0 6px; font-size: 15px; }
.feature-card p { margin: 0; font-size: 12.5px; color: #5f6b7a; }
.perf-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.perf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.perf-item .perf-label { font-size: 12px; color: #8492a6; margin-bottom: 6px; }
.perf-item .perf-value { font-size: 24px; font-weight: 700; color: #1f2d3d; letter-spacing: .3px; }
.perf-item .perf-note { font-size: 12px; margin-top: 10px; display: flex; align-items: center; gap: 4px; }
.perf-note.up { color: #18a058; }
.perf-note.down { color: #f56c6c; }
.perf-bar { margin-top: 12px; }
.perf-bar > i { background: #1a5fd6; }

/* ============ 检索中心 ============ */
.search-hero { position: relative; overflow: hidden; }
.search-hero::after {
  content: ""; position: absolute; right: -60px; top: -80px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(26, 95, 214, .08), transparent 65%);
}
.search-line { display: flex; gap: 14px; }
.search-line .input-icon { flex: 1; }
.search-line .input { height: 44px; }
.search-line .btn { height: 44px; padding: 0 26px; font-size: 15px; }
.result-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.result-title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; }
.count-badge { background: #e8f0fe; color: #1a5fd6; border-radius: 999px; font-size: 12px; padding: 2px 10px; font-weight: 500; }
.sort-tabs { display: flex; align-items: center; gap: 2px; color: #5f6b7a; font-size: 13px; }
.sort-tab { border: none; background: none; padding: 5px 12px; cursor: pointer; color: #5f6b7a; font-size: 13px; border-radius: 6px; }
.sort-tab.active { color: #1a5fd6; font-weight: 500; background: #e8f0fe; }

/* ============ 页面头 ============ */
.page-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; gap: 16px; }
.page-head h2 { margin: 0 0 6px; font-size: 20px; font-weight: 600; }
.page-head p { margin: 0; color: #5f6b7a; font-size: 13px; }
.page-head .head-actions { display: flex; gap: 10px; flex: none; }
.sync-row { display: flex; align-items: center; justify-content: flex-end; gap: 14px; color: #8492a6; font-size: 12.5px; margin: -6px 0 14px; }
.sync-row svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }

/* ============ 安全大脑横幅 ============ */
.safe-banner {
  position: relative; overflow: hidden; border-radius: 14px; padding: 34px 36px; color: #fff;
  background: linear-gradient(115deg, #2b6fe0 0%, #4a90ec 55%, #79b3f4 100%);
}
.safe-banner h3 { margin: 0 0 10px; font-size: 20px; font-weight: 600; }
.safe-banner p { margin: 0; max-width: 640px; font-size: 13.5px; opacity: .92; position: relative; z-index: 1; }
.safe-banner h3 { position: relative; z-index: 1; }
.safe-banner::before, .safe-banner::after { content: ""; position: absolute; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .25); }
.safe-banner::before { width: 260px; height: 260px; right: -70px; top: -110px; }
.safe-banner::after { width: 180px; height: 180px; right: 60px; bottom: -120px; border-color: rgba(255, 255, 255, .16); }

/* ============ 响应式 ============ */
@media (max-width: 1100px) {
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-hero { flex-direction: column; }
  .health-card { width: auto; }
}


/* ============ 顶部交互组件 ============ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.topbar-search { display: flex; align-items: center; gap: 9px; width: min(390px, 30vw); min-width: 230px; height: 38px; padding: 0 13px; border: 1px solid #dfe6f0; border-radius: 10px; background: #f8fafc; transition: border-color .18s, box-shadow .18s, background .18s; }
.topbar-search:focus-within { border-color: #4e8ef7; background: #fff; box-shadow: 0 0 0 3px rgba(26, 95, 214, .11); }
.topbar-search svg { width: 19px; height: 19px; flex: none; color: #93a4b8; }
.topbar-search input { width: 100%; border: 0; outline: 0; background: transparent; color: #26374a; font: inherit; font-size: 14px; }
.topbar-search input::placeholder { color: #8fa1b5; }
.topbar-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; padding: 0; border: 0; border-radius: 9px; background: transparent; color: #647488; cursor: pointer; transition: color .18s, background .18s; }
.topbar-icon:hover, .topbar-icon:focus-visible { color: #1a5fd6; background: #edf4ff; outline: 0; }
.topbar-icon svg { width: 23px; height: 23px; }
.topbar-icon .dot { position: absolute; top: 8px; right: 8px; width: 6px; height: 6px; border: 1.5px solid #fff; border-radius: 50%; background: #ef6b73; }
.modal-intro { margin: 0 0 14px; color: #718096; font-size: 13px; }
.notice-list { padding: 0; margin: 0; list-style: none; }
.notice-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid #edf1f5; }
.notice-item strong { display: block; color: #27384b; font-size: 14px; font-weight: 600; }
.notice-item p { max-width: 430px; margin: 6px 0 0; color: #718096; font-size: 13px; line-height: 1.6; }
.notice-item time { flex: none; padding-top: 1px; color: #a0aec0; font-size: 12px; }
.help-list { display: grid; gap: 12px; }
.help-list section { padding: 14px 16px; border: 1px solid #e7edf5; border-radius: 9px; background: #fbfcfe; }
.help-list h4 { margin: 0 0 7px; color: #25374a; font-size: 14px; }
.help-list p { margin: 0; color: #68788a; font-size: 13px; line-height: 1.65; }
kbd { display: inline-block; min-width: 18px; padding: 1px 5px; border: 1px solid #cfd9e5; border-bottom-width: 2px; border-radius: 4px; background: #fff; color: #3f5063; font-family: inherit; font-size: 12px; text-align: center; }
.search-status { min-height: 22px; margin: 10px 0 0 1px; color: #718096; font-size: 13px; }
.search-status.error { color: #d14a54; }
.btn[disabled] { cursor: not-allowed; opacity: .65; }

@media (max-width: 760px) {
  .topbar-search { width: 180px; min-width: 0; }
  .topbar-search input { min-width: 0; }
  .notice-item { gap: 10px; }
}
@media (max-width: 560px) {
  .topbar-search { display: none; }
}


/* ============ 全站搜索 ============ */
.search-hero::after { pointer-events: none; }
.search-hero > * { position: relative; z-index: 1; }
.global-search-description { margin: 7px 0 17px; color: #6b7a8d; font-size: 13px; }
.global-result-summary { display: flex; align-items: center; gap: 10px; margin: 18px 0 -4px; color: #718096; font-size: 13px; }
.global-result-group { margin-top: 20px; }
.global-group-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 4px; }
.global-group-heading h3 { margin: 0 0 4px; color: #28394c; font-size: 16px; }
.global-group-heading p { margin: 0; color: #8b9aab; font-size: 12.5px; }
.global-result-list { margin-top: 14px; border-top: 1px solid #edf1f5; }
.global-result-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px 2px; border-bottom: 1px solid #edf1f5; }
.global-result-item:last-child { border-bottom: 0; }
.global-result-item h4 { margin: 0 0 6px; color: #26384b; font-size: 14.5px; font-weight: 600; }
.global-result-item p { margin: 0 0 7px; color: #657689; font-size: 13px; line-height: 1.55; }
.global-result-item small { color: #99a7b6; font-size: 12px; }
.global-result-type { flex: none; min-width: 48px; margin-top: 1px; padding: 3px 7px; border-radius: 999px; font-size: 11px; line-height: 1.4; text-align: center; }
.global-result-type.article { background: #e8f0fe; color: #1a5fd6; }
.global-result-type.word { background: #fff3e5; color: #d97706; }
.global-result-type.audit { background: #ecfdf5; color: #14845c; }
.global-empty { margin-top: 20px; padding: 42px 24px; text-align: center; }
.global-empty strong { display: block; color: #526479; font-size: 15px; }
.global-empty p { margin: 8px 0 0; color: #8d9bab; font-size: 13px; }

@media (max-width: 640px) {
  .global-group-heading { align-items: flex-start; flex-direction: column; }
  .global-result-item { gap: 9px; }
  .global-result-type { min-width: 42px; }
}
