
/* News list page header banner */
.news-header {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, rgba(0,82,155,.35) 0%, rgba(0,45,102,.4) 100%),
              url('/images/header_news.webp?v=3') center/cover no-repeat;
  text-align: center;
}
.news-header h1 {
  font-size: 2.4rem; font-weight: 800; color: #fff;
  margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.news-header .breadcrumb {
  font-size: .9rem; color: rgba(255,255,255,.7);
}
.news-header .breadcrumb a { color: rgba(255,255,255,.7); }
.news-header .breadcrumb a:hover { color: #fff; }
.news-header .breadcrumb span { color: #fff; }
.news-header .meta {
  font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 4px;
}
/* ============================================================
   news.css - 新闻列表和文章页共享样式
   所有 news/*.html 加载
   ============================================================ */

.news-list { max-width: 800px; margin: 0 auto; }
.article-card { background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06); border: 1px solid #e5e7eb; transition: .2s; }
.article-card:hover { border-color: #00529B; box-shadow: 0 4px 16px rgba(0,82,155,.15); }
.article-card .date { font-size: .8rem; color: #9ca3af; margin-bottom: 6px; }
.article-card h3 { font-size: 1.05rem; font-weight: 600; color: #1f2937; margin-bottom: 8px; }
.article-card p { font-size: .88rem; color: #6b7280; line-height: 1.6; margin: 0; }
.article-card a { color: #00529B; font-weight: 600; text-decoration: none; }
.article-card a:hover { text-decoration: underline; }
.article-content { max-width: 750px; margin: 0 auto; padding: 40px 0; line-height: 1.9; }
.article-content h2 { font-size: 1.4rem; color: #00529B; margin: 36px 0 16px; padding-bottom: 8px; border-bottom: 2px solid #e8f2fa; }
.article-content p { font-size: .96rem; color: #4b5563; margin-bottom: 16px; }
.article-content ul { padding-left: 20px; margin-bottom: 20px; }
.article-content li { font-size: .93rem; color: #4b5563; margin-bottom: 8px; }
.article-content .meta { font-size: .85rem; color: #9ca3af; margin-bottom: 24px; }
