/* === Page Banner === */
.page-banner {
    margin-top: 70px;
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    color: #fff; text-align: center; padding: 60px 5%;
}
.banner-inner h1 { font-size: 32px; margin-bottom: 10px; }
.bread { font-size: 14px; opacity: 0.8; }
.bread a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* === News List Page === */
.news-page-list { background: #f8f9fa; }
.news-list-wrap { max-width: 900px; margin: 0 auto; }

/* 分类Tab */
.news-tabs {
    display: flex; gap: 0; margin-bottom: 30px;
    border-bottom: 2px solid #eee; max-width: 900px; margin-left: auto; margin-right: auto;
}
.news-tab {
    background: none; border: none; padding: 12px 28px;
    font-size: 15px; color: #888; cursor: pointer;
    position: relative; transition: color 0.3s; font-weight: 500;
    text-decoration: none; display: inline-block;
}
.news-tab:hover { color: #1a5276; }
.news-tab.active { color: #e67e22; font-weight: 600; }
.news-tab.active::after {
    content: ''; position: absolute; bottom: -2px;
    left: 20%; width: 60%; height: 3px;
    background: #e67e22; border-radius: 2px;
}
.news-empty { text-align: center; padding: 60px 20px; color: #aaa; font-size: 15px; }
.news-list-item {
    display: flex; gap: 24px; background: #fff; border-radius: 12px;
    overflow: hidden; margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
    text-decoration: none; color: inherit;
}
.news-list-item:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.nli-img {
    width: 240px; min-height: 160px; flex-shrink: 0;
    background: #f0f0f0; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.nli-img img { width: 100%; height: 100%; object-fit: cover; }
.nli-body { padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.nli-date { font-size: 13px; color: #e67e22; margin-bottom: 6px; }
.nli-body h3 { font-size: 18px; color: #1a5276; margin-bottom: 8px; }
.nli-body p { font-size: 14px; color: #888; margin-bottom: 10px; line-height: 1.6; }
.nli-more { font-size: 13px; color: #e67e22; }

/* 无图模式 */
.news-list-noimg { flex-direction: column; }
.news-list-noimg .nli-body { padding: 24px; }

/* === Pagination === */
.pagination-wrap { display: flex; gap: 8px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.pg-btn {
    display: inline-block; padding: 8px 16px; border-radius: 6px;
    background: #fff; color: #1a5276; font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-decoration: none;
    transition: all 0.2s;
}
.pg-btn:hover { background: #1a5276; color: #fff; }
.pg-active { background: #e67e22; color: #fff; }

/* === Detail === */
.detail-section { background: #f8f9fa; }
.detail-card {
    max-width: 800px; margin: 0 auto; background: #fff;
    border-radius: 12px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.detail-meta { font-size: 14px; color: #888; margin-bottom: 16px; display: flex; gap: 20px; }
.detail-title { font-size: 26px; color: #1a5276; margin-bottom: 20px; line-height: 1.4; }
.detail-cover { margin-bottom: 24px; border-radius: 10px; overflow: hidden; }
.detail-cover img { width: 100%; max-height: 400px; object-fit: cover; }
.detail-content { font-size: 15px; color: #444; line-height: 1.8; }
.detail-content p { margin-bottom: 16px; }
.detail-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.detail-back { margin-top: 30px; text-align: center; }

.ph-sm { color: #ccc; font-size: 14px; }

@media (max-width: 768px) {
    .news-list-item { flex-direction: column; }
    .nli-img { width: 100%; height: 180px; }
    .detail-card { padding: 20px; }
    .detail-title { font-size: 20px; }
}