.news-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .news-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .news-image-container {
            flex: 0 0 280px;
            overflow: hidden;
            position: relative;
        }
        
        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-item:hover .news-image {
            transform: scale(1.05);
        }
        
        .news-category-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(79, 70, 229, 0.9);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .news-content {
            flex: 1;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }
        
        .news-title {    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 2.2;
    letter-spacing: 5px;
        }
        
        .news-title a {
            color: #1e293b;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .news-title a:hover {
            color: #4f46e5;
        }
        
        .news-summary {color: #64748b;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 2.2;
    letter-spacing: 3px;
    flex-grow: 1;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #94a3b8;
            border-top: 1px solid #f1f5f9;
            padding-top: 18px;
        }
        
        .newdate, .news-views {
            display: flex;
            align-items: center;
        }
        
        .newdate i, .news-views i {
            margin-right: 6px;
            color: #4f46e5;
        }
        
        /* 无图时的样式 */
        .no-image {
            flex-direction: column;
        }
        
        .no-image .news-content {
            width: 100%;
        }
        
        .pagination {
            margin-top: 50px;
            text-align: center;
        }
        
        .pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px;
            margin: 0 5px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .pagination a:hover, .pagination a.active {
            background: #4f46e5;
            color: white;
            border-color: #4f46e5;
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
        }
        
        .pagination .prev, .pagination .next {
            padding: 10px 20px;
        }
        
        .filter-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .category-filter select {
            padding: 8px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            background: white;
            color: #475569;
            font-size: 14px;
        }
        

        
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
            }
            
            .news-image-container {
                flex: 0 0 200px;
                width: 100%;
            }
            

        }