:root {
      --primary: #c99b40;
      --primary-light: #1a3a5c;
      --secondary: #f8f9fa;
      --accent: #c99b40;
      --accent-light: #d4af61;
      --text-dark: #1a1a2e;
      --text-gray: #6c757d;
      --text-light: #9ca3af;
      --border: #e9ecef;
      --bg-light: #f8f9fa;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
      --transition: all 0.3s ease;
    }

/* 页面头部 */
    .page-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      padding: 48px 0;
      text-align: center;
    }
    .page-header h1 { font-family: 'Noto Serif SC', serif; font-size: 36px; color: white; margin-bottom: 12px; }
    .breadcrumb { color: rgba(255,255,255,0.7); font-size: 14px; }
    .breadcrumb a { color: rgba(255,255,255,0.7); }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb span { margin: 0 8px; }

/* 新闻列表 */
    .news-list { padding-bottom: 60px; padding-top: 30px; }
    .news-item {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 24px;
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }
    .news-item:hover { background: var(--bg-light); }
    .news-item:first-child { border-top: 1px solid var(--border); }
    .news-date-badge {
      width: 60px;
      height: 60px;
      background: var(--primary);
      border-radius: var(--radius-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .news-date-badge .day { font-size: 22px; font-weight: 700; color: white; line-height: 1; }
    .news-date-badge .month { font-size: 12px; color: rgba(255,255,255,0.8); }
    .news-content { flex: 1; }
    .news-category {
      display: inline-block;
      padding: 4px 12px;
      background: var(--accent);
      color: white;
      font-size: 12px;
      font-weight: 500;
      border-radius: 12px;
      margin-bottom: 8px;
    }
    .news-title { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
    .news-item:hover .news-title { color: var(--accent); }
    .news-summary { font-size: 14px; color: var(--text-gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .news-meta { display: flex; gap: 16px; margin-top: 8px; font-size: 13px; color: var(--text-light); }
    .news-meta span { display: flex; align-items: center; gap: 4px; }
    .news-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
    }
    .news-item:hover .news-arrow { background: var(--accent); }
    .news-arrow svg { width: 20px; height: 20px; color: var(--text-gray); transition: var(--transition); }
    .news-item:hover .news-arrow svg { color: white; transform: translateX(3px); }

    /* 分页 */
    .pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
    .pagination-btn {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-gray);
      background: var(--bg-light);
      cursor: pointer;
      transition: var(--transition);
    }
    .pagination-btn:hover { background: var(--primary); color: white; }
    .pagination-btn.active { background: var(--accent); color: white; }
    .pagination-btn.disabled { opacity: 0.5; cursor: not-allowed; }

/* 文章内容 */
    .article-wrap { padding: 48px 0 80px; }
    .article-container { max-width: 800px; margin: 0 auto; }

    /* 文章头部 */
    .article-header { text-align: center; margin-bottom: 40px; }
    .article-category { display: inline-block; padding: 6px 16px; background: var(--accent); color: white; font-size: 13px; font-weight: 500; border-radius: 16px; margin-bottom: 16px; }
    .article-title { font-family: 'Noto Serif SC', serif; font-size: 32px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 20px; }
    .article-meta { display: flex; justify-content: center; gap: 24px; color: var(--text-gray); font-size: 14px; }
    .article-meta span { display: flex; align-items: center; gap: 6px; }
    .article-divider { width: 60px; height: 3px; background: var(--accent); margin: 24px auto; border-radius: 2px; }

    /* 文章正文 */
    .article-body { font-size: 16px; line-height: 1.9; color: var(--text-dark); }
    .article-body p { margin-bottom: 20px; }
    .article-body h2 { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 600; color: var(--primary); margin: 36px 0 16px; padding-left: 16px; border-left: 4px solid var(--accent); }
    .article-body h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin: 28px 0 12px; }
    .article-body ul, .article-body ol { margin: 16px 0 20px 24px; }
    .article-body li { margin-bottom: 8px; }
    .article-body blockquote { margin: 24px 0; padding: 20px 24px; background: var(--bg-light); border-left: 4px solid var(--accent); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--text-gray); }
    .article-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 24px 0; }
    .article-body a { color: var(--accent); border-bottom: 1px solid transparent; }
    .article-body a:hover { border-bottom-color: var(--accent); }
    .article-body strong { font-weight: 600; color: var(--primary); }

    /* 附件下载 */
    .attachment { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--bg-light); border-radius: var(--radius-md); margin: 32px 0; }
    .attachment-icon { width: 40px; height: 40px; background: var(--primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .attachment-icon svg { width: 20px; height: 20px; color: white; }
    .attachment-info { flex: 1; }
    .attachment-name { font-weight: 500; color: var(--text-dark); margin-bottom: 4px; }
    .attachment-size { font-size: 13px; color: var(--text-gray); }
    .attachment-btn { padding: 8px 16px; background: var(--accent); color: white; font-size: 14px; font-weight: 500; border-radius: var(--radius-sm); }
    .attachment-btn:hover { background: var(--accent-light); }

/* 年份筛选 */
    .filter-section { padding: 32px 0; border-bottom: 1px solid var(--border); }
    .filter-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .filter-label { font-size: 14px; color: var(--text-gray); font-weight: 500; }
    .filter-btn { padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 500; color: var(--text-gray); background: var(--bg-light); cursor: pointer; transition: var(--transition); }
    .filter-btn:hover { background: var(--primary); color: white; }
    .filter-btn.active { background: var(--accent); color: white; }

    /* 获奖人列表 */
    .winners-section { padding: 48px 0 80px; }
    .winners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* 获奖人卡片 */
    .winner-card {
      display: flex;
      gap: 24px;
      padding: 28px;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: var(--transition);
    }
    .winner-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .winner-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 3px solid var(--accent); }
    .winner-avatar span { font-family: 'Noto Serif SC', serif; font-size: 32px; font-weight: 700; color: white; }
    .winner-info { flex: 1; }
    .winner-year-badge { display: inline-block; padding: 4px 12px; background: var(--accent); color: white; font-size: 12px; font-weight: 600; border-radius: 12px; margin-bottom: 8px; }
    .winner-name { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
    .winner-title { font-size: 14px; color: var(--text-gray); margin-bottom: 12px; }
    .winner-award { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
    .winner-award svg { width: 16px; height: 16px; }
    .winner-desc { font-size: 14px; color: var(--text-gray); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 768px) {
      .winners-grid { grid-template-columns: 1fr; }
      .winner-card { flex-direction: column; align-items: center; text-align: center; }
      .winner-avatar { width: 80px; height: 80px; }
      .winner-avatar span { font-size: 26px; }
      .winner-name { font-size: 18px; }
      .navbar-links { display: none; }
      .filter-inner { justify-content: center; }
    }