/* ==================== 全局样式 ==================== */
:root {
    --primary: #1a3a6b;
    --primary-light: #2a5a9b;
    --primary-dark: #0d2347;
    --accent: #c8a45c;
    --red: #d32f2f;
    --red-light: #ffebee;
    --orange: #e65100;
    --orange-light: #fff3e0;
    --yellow: #f9a825;
    --yellow-light: #fffde7;
    --green: #2e7d32;
    --green-light: #e8f5e9;
    --gray: #6b7280;
    --gray-light: #f5f7fa;
    --border: #e0e4e8;
    --text: #1f2937;
    --text-light: #6b7280;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Segoe UI', sans-serif;
    background: #f0f2f5;
    color: var(--text);
    line-height: 1.6;
}

/* ==================== 顶部状态栏 ==================== */
.top-status-bar {
    background: var(--primary-dark);
    color: #fff;
    padding: 6px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.status-left { display: flex; align-items: center; gap: 8px; }
.status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4caf50;
}
.status-dot.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-center { display: flex; gap: 20px; }
.status-item em {
    font-style: normal;
    color: #90caf9;
    margin-left: 4px;
}

.status-right { display: flex; align-items: center; gap: 16px; }
.user-tag {
    background: rgba(255,255,255,0.15);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
}

/* ==================== 头部导航 ==================== */
.main-header {
    background: #fff;
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 36px; }
.logo-text h1 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}
.logo-text p {
    font-size: 11px;
    color: var(--text-light);
}

.main-nav { display: flex; gap: 4px; }
.nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}
.nav-item:hover { background: var(--gray-light); }
.nav-item.active {
    background: var(--primary);
    color: #fff;
}
.badge {
    position: absolute;
    top: 2px; right: 2px;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 8px;
    color: #fff;
}
.badge-red { background: var(--red); }

/* ==================== 主内容 ==================== */
.main-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 24px;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ==================== KPI 卡片 ==================== */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.kpi-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gray);
    transition: transform 0.2s;
}
.kpi-card:hover { transform: translateY(-2px); }

.kpi-icon { font-size: 28px; }
.kpi-data { flex: 1; }
.kpi-value { font-size: 28px; font-weight: 700; line-height: 1; }
.kpi-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.kpi-trend { font-size: 11px; }
.kpi-trend.up { color: var(--red); }
.kpi-trend.flat { color: var(--gray); }

.kpi-red { border-left-color: var(--red); }
.kpi-red .kpi-value { color: var(--red); }
.kpi-orange { border-left-color: var(--orange); }
.kpi-orange .kpi-value { color: var(--orange); }
.kpi-yellow { border-left-color: var(--yellow); }
.kpi-yellow .kpi-value { color: var(--yellow); }
.kpi-blue { border-left-color: var(--primary); }
.kpi-green { border-left-color: var(--green); }
.kpi-green .kpi-value { color: var(--green); }

/* ==================== 面板通用 ==================== */
.panel {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}
.panel-header h2 {
    font-size: 15px;
    color: var(--primary);
}
.panel-sub {
    font-size: 11px;
    color: var(--text-light);
}

/* ==================== 仪表盘网格 ==================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* ==================== 时间线 ==================== */
.timeline {
    max-height: 600px;
    overflow-y: auto;
    padding: 4px 0;
}
.timeline-item {
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    cursor: pointer;
    position: relative;
}
.timeline-item:hover { background: #f8faff; }
.timeline-item.new-flash {
    animation: flashBg 3s ease-out;
}
@keyframes flashBg {
    0% { background: #fff3e0; }
    100% { background: transparent; }
}

.timeline-level {
    width: 10px;
    border-radius: 5px;
    flex-shrink: 0;
}
.timeline-level.red { background: var(--red); }
.timeline-level.orange { background: var(--orange); }
.timeline-level.yellow { background: var(--yellow); }
.timeline-level.blue { background: var(--primary); }

.timeline-content { flex: 1; }
.timeline-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.timeline-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--text-light);
    flex-wrap: wrap;
}
.timeline-meta .source-tag {
    padding: 0 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
}
.source-tag.A { background: #c8e6c9; color: #2e7d32; }
.source-tag.B { background: #bbdefb; color: #1565c0; }
.source-tag.C { background: #fff9c4; color: #f9a825; }
.source-tag.D { background: #ffccbc; color: #d84315; }

.timeline-time {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
}

/* ==================== 右侧子标签 ==================== */
.right-panel { display: flex; flex-direction: column; }

.sub-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    padding: 0 16px;
}
.sub-tab {
    padding: 10px 16px;
    border: none;
    background: none;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-weight: 500;
    transition: all 0.2s;
}
.sub-tab:hover { color: var(--primary); }
.sub-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.sub-panel { display: none; padding: 16px 20px; }
.sub-panel.active { display: block; }

.focus-card {
    background: linear-gradient(135deg, #f8faff 0%, #e8f0fe 100%);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid #dce8f5;
}
.focus-label {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
}
.focus-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
}
.focus-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}
.focus-meta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-light);
}

.sub-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 12px;
}
.sub-list-item:last-child { border-bottom: none; }
.sub-list-title {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sub-list-desc {
    color: var(--text-light);
    line-height: 1.6;
}
.sub-list-meta {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    font-size: 11px;
    color: var(--text-light);
}
.confirm-tag {
    padding: 0 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
}
.confirm-tag.confirmed { background: #c8e6c9; color: #2e7d32; }
.confirm-tag.unconfirmed { background: #fff9c4; color: #f9a825; }
.confirm-tag.rumor { background: #ffccbc; color: #d84315; }

/* ==================== 实时快报 ==================== */
.alert-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.filter-chips { display: flex; gap: 8px; }
.chip {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.alert-list { display: flex; flex-direction: column; gap: 12px; }

.alert-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-left: 5px solid var(--gray);
    transition: transform 0.15s, box-shadow 0.15s;
}
.alert-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}
.alert-card.red { border-left-color: var(--red); }
.alert-card.orange { border-left-color: var(--orange); }
.alert-card.yellow { border-left-color: var(--yellow); }

.alert-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fafbfc;
    border-bottom: 1px solid #f0f0f0;
}
.alert-level-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
.alert-level-badge.red { background: var(--red); }
.alert-level-badge.orange { background: var(--orange); }
.alert-level-badge.yellow { background: var(--yellow); }
.alert-time { font-size: 12px; color: var(--text-light); }
.alert-id { font-size: 11px; color: var(--text-light); margin-left: auto; }

.alert-card-body { padding: 14px 16px; }
.alert-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.alert-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}
.alert-fact {
    background: #f8faff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
}
.alert-fact-label {
    color: var(--text-light);
    font-size: 10px;
}
.alert-fact-value {
    font-weight: 600;
    font-size: 12px;
}

.alert-analysis {
    background: #fefefe;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 12px;
}
.alert-analysis strong { color: var(--primary); }

.alert-actions-suggest {
    font-size: 12px;
    color: var(--text);
}
.alert-actions-suggest ol {
    padding-left: 18px;
    margin: 4px 0;
}
.alert-actions-suggest li { margin: 2px 0; }

.alert-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: #fafbfc;
    border-top: 1px solid #f0f0f0;
}
.alert-source { font-size: 11px; color: var(--text-light); }
.alert-source a { color: var(--primary); text-decoration: none; }
.alert-opacity-actions { display: flex; gap: 8px; }
.btn-tiny {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-tiny:hover { background: var(--gray-light); }
.btn-tiny.report { background: var(--red); color: #fff; border-color: var(--red); }
.btn-tiny.report:hover { background: #b71c1c; }

/* ==================== 按钮 ==================== */
.btn {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); }
.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-success { background: var(--green); color: #fff; }
.btn-success:hover { background: #1b5e20; }

/* ==================== 每日简报 ==================== */
.daily-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.daily-header h2 { font-size: 20px; color: var(--primary); }
.daily-date { color: var(--text-light); font-size: 13px; }

.daily-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.daily-section {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: var(--shadow);
}
.daily-section h3 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-light);
}
.daily-item {
    padding: 8px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 12px;
}
.daily-item:last-child { border-bottom: none; }
.daily-item-title { font-weight: 600; margin-bottom: 2px; }
.daily-item-desc { color: var(--text-light); }

/* ==================== 红色预警弹窗 ==================== */
.alert-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}
.alert-modal-overlay.show { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.alert-modal {
    background: #fff;
    border-radius: 12px;
    width: 600px;
    max-width: 90vw;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s;
    border-top: 5px solid var(--red);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.alert-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--red-light);
    border-radius: 8px 8px 0 0;
}
.alert-modal-icon { font-size: 22px; }
.alert-modal-title { font-size: 16px; font-weight: 700; color: var(--red); flex: 1; }
.alert-modal-close {
    background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-light);
}

.alert-modal-body { padding: 20px; max-height: 50vh; overflow-y: auto; }
.alert-modal-body h4 { font-size: 14px; margin-bottom: 8px; color: var(--primary); }
.alert-modal-body .fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 10px 0;
}
.alert-modal-body .fact-grid .alert-fact { background: #f8faff; }

.alert-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
}

/* ==================== Toast ==================== */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 12px 18px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s;
    border-left: 4px solid var(--primary);
    max-width: 400px;
}
.toast.red { border-left-color: var(--red); }
.toast.orange { border-left-color: var(--orange); }
.toast.green { border-left-color: var(--green); }
@keyframes slideIn { from { transform: translateX(60px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ==================== 响应式 ==================== */
@media (max-width: 1200px) {
    .kpi-row { grid-template-columns: repeat(3, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .daily-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
    .status-center { display: none; }
    .main-nav { overflow-x: auto; }
}

/* ==================== 打印样式 ==================== */


/* ==================== 真实数据新增：可信度与溯源标签 ==================== */
.confirm-tag.multi { background: #dbeafe; color: #1565c0; }
.confirm-tag.single { background: #fff9c4; color: #b58100; }

.src-link {
    font-size: 11px;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 1px;
    white-space: nowrap;
}
.src-link:hover { color: var(--primary-light); border-bottom-color: var(--primary-light); }
.src-link.src-missing { color: #c62828; border-bottom-style: dashed; border-bottom-color: #c62828; }

.verify-tag {
    font-size: 10px;
    padding: 0 6px;
    border-radius: 3px;
    font-weight: 500;
    white-space: nowrap;
}
.verify-tag.ok { background: #c8e6c9; color: #2e7d32; }
.verify-tag.pending { background: #ffe0b2; color: #e65100; }

.timeline-quote {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 4px;
    padding-left: 8px;
    border-left: 2px solid var(--border);
}

.alert-quote {
    font-size: 12px;
    color: #37474f;
    background: #f7f9fc;
    border-left: 3px solid var(--primary-light);
    padding: 8px 12px;
    margin-bottom: 10px;
    line-height: 1.7;
}
.quote-label {
    display: inline-block;
    font-size: 10px;
    color: var(--primary);
    background: #e3f0fb;
    border-radius: 3px;
    padding: 0 5px;
    margin-right: 6px;
    font-weight: 500;
}

/* ==================== 数据元信息条 ==================== */
.data-meta-bar {
    background: #e8f0fe;
    border: 1px solid #c5d9f2;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #1a3a6b;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.data-meta-bar .meta-strong { font-weight: 700; }
.data-meta-bar .meta-warn {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    color: #e65100;
    border-radius: 4px;
    padding: 1px 8px;
    font-weight: 500;
}

/* ==================== 信息重要度分级说明 ==================== */
.level-guide {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 12px 20px;
    margin-bottom: 16px;
    font-size: 12px;
}
.lg-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    padding-right: 14px;
    border-right: 1px solid var(--border);
}
.lg-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}
.lg-item b { color: var(--text); font-weight: 600; }
.lg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lg-dot.red { background: var(--red); }
.lg-dot.orange { background: var(--orange); }
.lg-dot.yellow { background: var(--yellow); }
.lg-dot.blue { background: var(--primary); }

.kpi-trend.level-note {
    color: var(--text-light);
    font-size: 11px;
    text-align: right;
    line-height: 1.4;
    max-width: 92px;
}

/* ==================== 核心城市最新政策（按城市归类总结） ==================== */
.policy-list { padding: 0 0 6px; }

.policy-group { border-bottom: 1px solid #f0f0f0; }
.policy-group:last-child { border-bottom: none; }

.pg-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: #fafbfc;
}
.pg-count {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-light);
    background: var(--gray-light);
    border-radius: 3px;
    padding: 0 6px;
}

.pg-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 14px;
    padding: 4px 20px 18px;
}

.city-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
}
.city-card.is-local {
    border: 1.5px solid var(--primary);
    background: #f4f8ff;
}

.cc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border);
    margin-bottom: 12px;
}
.cc-name { font-size: 15px; font-weight: 700; color: var(--primary); }
.cc-tier {
    font-size: 10px;
    color: var(--text-light);
    background: var(--gray-light);
    border-radius: 3px;
    padding: 0 6px;
}
.cc-strength {
    font-size: 10px;
    border-radius: 3px;
    padding: 0 6px;
    font-weight: 500;
}
.cc-strength.s-high { background: #ffcdd2; color: #b71c1c; }
.cc-strength.s-mid { background: #ffe0b2; color: #e65100; }
.cc-strength.s-low { background: #e0e0e0; color: #616161; }
.cc-count { font-size: 10px; color: var(--text-light); margin-left: auto; }

/* 核心数据突出显示 */
.cc-figures {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.cc-fig {
    flex: 1 1 92px;
    min-width: 92px;
    background: var(--gray-light);
    border-radius: 6px;
    padding: 8px 10px;
    border-left: 3px solid var(--primary-light);
}
.cc-fig b {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
}
.cc-fig i {
    display: block;
    font-style: normal;
    font-size: 10px;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.4;
}
.city-card.is-local .cc-fig {
    background: #e8f0fe;
    border-left-color: var(--primary);
}

.cc-summary {
    font-size: 12px;
    color: var(--text);
    line-height: 1.75;
    background: #fcfcfd;
    border: 1px dashed #e8eaed;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 12px;
}
.cc-summary::before {
    content: '总结';
    display: inline-block;
    font-size: 10px;
    color: var(--primary);
    background: #e3f0fb;
    border-radius: 3px;
    padding: 0 5px;
    margin-right: 6px;
    vertical-align: 1px;
}

.cc-policies { display: flex; flex-direction: column; gap: 10px; }
.cc-policy {
    border-left: 2px solid var(--border);
    padding-left: 10px;
}
.ccp-name { font-size: 12px; font-weight: 600; line-height: 1.5; margin-bottom: 3px; }
.ccp-clause { font-size: 11px; color: var(--text-light); line-height: 1.65; }
.ccp-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}
.ccp-date { font-size: 10px; color: var(--text-light); }

@media (max-width: 768px) {
    .pg-cities { grid-template-columns: 1fr; padding: 4px 12px 14px; }
}

/* ==================== 重点企业动态 ==================== */
.kcom-wrap { padding: 4px 0 0; overflow-x: auto; }

.kcom-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 12px;
}
.kcom-table thead th {
    text-align: left;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: #fafbfc;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    white-space: nowrap;
}
.kcom-table tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid #f2f3f5;
    vertical-align: top;
    line-height: 1.6;
}
.kcom-table tbody tr:hover { background: #f8faff; }
.kcom-table tbody tr:last-child td { border-bottom: none; }

.kc-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.kc-code {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    margin-top: 2px;
}

.kc-progress {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    border-radius: 3px;
    padding: 2px 7px;
    white-space: nowrap;
}
.kc-progress.confirmed { background: #ffcdd2; color: #b71c1c; }
.kc-progress.auditing { background: #ffe0b2; color: #e65100; }

.kc-cred { font-size: 11px; color: var(--text-light); line-height: 1.5; }

.kc-desc { color: var(--text-light); font-size: 11px; }

.kcom-foot {
    padding: 12px 20px 16px;
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.7;
    background: #fafbfc;
    border-top: 1px solid var(--border);
}
.kcom-foot b { color: var(--text); font-weight: 600; }

@media (max-width: 900px) {
    .kcom-wrap { overflow-x: auto; }
    .kcom-table { min-width: 760px; }
}
