/* 新闻列表页样式 */

/* Main Layout */
.news-main-container { display: flex; gap: 24px; margin-top: 32px; }

/* Sidebar */
.news-sidebar { width: 250px; background: #fff; border-radius: 12px; padding: 20px; height: fit-content; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.news-sidebar-title { font-size: 18px; font-weight: 600; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 3px solid var(--theme); color: var(--theme); }
.news-sidebar-item { display: block; padding: 10px 15px; color: #333; text-decoration: none; border-radius: 4px; margin-bottom: 5px; transition: all 0.3s; }
.news-sidebar-item:hover, .news-sidebar-item.active { background: rgba(27, 83, 149, 0.08); color: var(--theme); }

/* Content */
.news-content-main { flex: 1; background: #fff; border-radius: 12px; padding: 25px; margin-bottom: 32px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.news-item { padding: 15px 0; border-bottom: 1px dashed #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.news-item:last-child { border-bottom: none; }
.news-item a { color: #333; text-decoration: none; font-size: 16px; font-weight: 500; transition: all 0.3s; flex: 1; }
.news-item a:hover { color: var(--theme); }
.news-date { color: #999; font-size: 14px; white-space: nowrap; margin-left: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .news-main-container { flex-direction: column; gap: 15px; margin-top: 15px; }
    .news-sidebar { width: 100%; }
    .news-content-main { padding: 15px; }
    .news-item a { font-size: 14px; }
    .news-meta { font-size: 12px; }
    .news-meta span { margin-left: 10px; }
}