        /* 新闻列表页面样式 */
        .news-container {
            padding: 30px 0 60px;
            background-color: #f9f9f9;
        }
        
        .page-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            color: white;
            padding: 40px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: rgba(163, 32, 36, 0.1);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
        }
        
        .page-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .page-header .breadcrumb {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #ccc;
            position: relative;
            z-index: 2;
        }
        
        .page-header .breadcrumb a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .page-header .breadcrumb a:hover {
            color: var(--primary-color);
        }
        
        .page-header .breadcrumb span {
            margin: 0 8px;
        }
        
        /* 新闻网格布局 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        
        .news-card:hover .news-image {
            transform: scale(1.05);
        }
        
        .news-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .news-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-date {
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .news-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--text-color);
            transition: color 0.3s;
            flex: 1;
        }
        
        .news-card:hover .news-title {
            color: var(--primary-color);
        }
        
        .news-excerpt {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-read-more {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }
        
        .news-read-more:hover {
            gap: 10px;
        }
        
        /* 分页样式 */
        .news-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .page-link:hover {
            background-color: var(--primary-light);
            color: white;
        }
        
        .page-link.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .page-link.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .pagination-info {
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-top: 15px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .news-content {
                padding: 20px;
            }
            
            .news-title {
                font-size: 16px;
            }
            
            .page-header {
                padding: 30px 0;
            }
        }