/* ========== 容器 ========== */
.container { max-width: 1100px; margin: 0 auto; padding: 20px; }

/* ========== 卡片 ========== */
.card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 20px; }
.card h2 { color: #8B0000; font-size: 18px; border-bottom: 2px solid #f0ebe0; padding-bottom: 10px; margin-bottom: 15px; }

/* ========== 统计卡片 ========== */
.stats-row { display: flex; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
.stat-card { flex: 1; min-width: 130px; background: #fff; padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.stat-card .num { font-size: 32px; color: #8B0000; font-weight: bold; }
.stat-card .label { font-size: 13px; color: #999; margin-top: 5px; }

/* ========== 功能卡片网格 ========== */
.func-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.func-card { display: block; padding: 20px; background: #fafaf7; border: 1px solid #eee; border-radius: 8px; text-align: center; text-decoration: none; color: #333; transition: all 0.2s; }
.func-card:hover { background: #fdf5e6; border-color: #8B0000; transform: translateY(-2px); }
.func-card .icon { font-size: 32px; margin-bottom: 8px; }
.func-card .title { font-size: 15px; font-weight: bold; }
.func-card .desc { font-size: 12px; color: #999; margin-top: 4px; }

/* ========== 文章列表 ========== */
.article-list { list-style: none; }
.article-list li { padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.article-list li a { color: #333; text-decoration: none; }
.article-list li a:hover { color: #8B0000; }
.type-tag { display: inline-block; padding: 1px 8px; background: #fdf5e6; border-radius: 10px; font-size: 11px; color: #8B0000; margin-right: 6px; }

/* ========== 标签列表 ========== */
.branch-list { display: flex; flex-wrap: wrap; gap: 8px; }
.branch-tag { padding: 6px 14px; background: #fdf5e6; border: 1px solid #e8d88e; border-radius: 15px; font-size: 13px; }
.branch-tag a { color: #8B0000; text-decoration: none; }

/* ========== 数据表格 ========== */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: #fafaf7; padding: 12px 10px; border-bottom: 2px solid #e8e0d0; text-align: center; color: #555; }
.data-table td { padding: 10px; border-bottom: 1px solid #f0ebe0; text-align: center; }
.data-table tr:hover { background: #fdfaf5; }
.data-table a { color: #8B0000; }