 :root {
            --primary-color: #c62828;
            --primary-dark: #8e0000;
            --primary-light: #ff5f52;
            --secondary-color: #f5f5f5;
            --accent-color: #ffd54f;
            --text-dark: #212121;
            --text-light: #757575;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fafafa;
        }
        
        /* 头部样式 */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 0.8rem 1.2rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15%;
            width: 70%;
            height: 3px;
            background: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            transform: scaleX(1);
        }
        
        /* 页面标题区域 */
        .page-title {
            background: linear-gradient(rgba(198, 40, 40, 0.8), rgba(198, 40, 40, 0.8)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 0;
            color: white;
            text-align: center;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .page-title p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* 列表区域 */
        .list-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .list-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .list-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary-light);
            position: relative;
        }
        
        .list-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .list-item {
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
        }
        
        .list-item:hover {
            background-color: rgba(198, 40, 40, 0.05);
            transform: translateX(5px);
        }
        
        .list-item a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
            flex: 1;
        }
        
        .list-item a:hover {
            color: var(--primary-color);
        }
        
        .list-item-meta {
            display: flex;
            align-items: center;
            margin-left: 20px;
            white-space: nowrap;
        }
        
        .list-item-tag {
            background-color: var(--primary-light);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 10px;
        }
        
        .list-item-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* 分页 */
        .pagination-container {
            margin-top: 3rem;
            text-align: center;
        }
        
        .pagination {
            display: inline-flex;
            padding-left: 0;
            list-style: none;
            border-radius: 0.375rem;
        }
        
        .pagination li {
            margin: 0 5px;
        }
        
        .pagination a {
            display: block;
            padding: 0.5rem 1rem;
            color: var(--primary-color);
            text-decoration: none;
            border: 1px solid #dee2e6;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .pagination .active a {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* 页脚 */
        footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 4rem 0 2rem;
        }
        
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-links a {
            display: block;
            color: #aaa;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-light);
        }
        
        .contact-info {
            margin-bottom: 15px;
            display: flex;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.2rem;
            min-width: 25px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-title h1 {
                font-size: 2rem;
            }
            
            .list-title {
                font-size: 1.5rem;
            }
            
            .list-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .list-item-meta {
                margin-left: 0;
                margin-top: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 1.8rem;
            }
        }