/* --- 资讯列表页专属样式 --- */
.container { max-width: 1280px; }
.content-area { width: 100%; }

.page-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.filter-tag {
    padding: 8px 18px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
}
.filter-tag:hover { background: #fff; color: #333; }
.filter-tag.active {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}
.loading-inline { color: #999; font-size: 14px; padding: 8px; }

.article-list { display: flex; flex-direction: column; gap: 25px; }
.article-card {
    display: flex;
    overflow: hidden;
    background: #fff;
}
.article-card.glass-container { background: #fff; }
.article-img {
    width: 320px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
}
.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
}
.article-body {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
}
.article-category {
    background: #eaf4ff;
    color: #0056b3;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
}
.article-date { color: #999; }
.article-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: 0.2s;
}
.article-title:hover { color: #0056b3; }
.article-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}
.article-author img { width: 32px; height: 32px; border-radius: 50%; }
.article-link { font-size: 14px; color: #0056b3; transition: 0.2s; }
.article-link:hover { color: #004494; }

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #666;
    font-size: 14px;
}
.page-btn:hover { background: #fff; border-color: #ddd; }
.page-btn.active {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

@media (max-width: 768px) {
    .article-card { flex-direction: column; }
    .article-img { width: 100%; min-height: 200px; }
    .article-body { padding: 20px; }
}
