/* 新闻列表页面特有样式 */
        .news-section {
            padding: 40px 0 60px;
        }
        
        .news-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .news-header h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .news-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #e74c3c;
        }
        
        .news-header p {
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .news-filter {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .filter-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .news-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
            .news-categories a {
                text-decoration: none; 
            }
        
        .category-item {
            padding: 6px 18px;
            background: #f8f9fa;
            border-radius: 20px;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .category-item.active {
            background: #e74c3c;
            color: white;
        }
        
        .news-search {
            position: relative;
            max-width: 300px;
            width: 100%;
        }
        
        .news-search input {
            width: 100%;
            padding: 10px 15px 10px 40px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        
        .news-search i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
        }
        
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .news-card-link {
            text-decoration: none;
            display: block;
        }
        
        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .news-card-link:hover .news-card {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* 新闻图片区域 - 精确3:2比例 */
        .news-image {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .news-image::before {
            content: "";
            display: block;
            padding-top: 66.67%; /* 3:2比例 (高度 = 宽度 × 2/3) */
        }
        
        .news-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .news-card-link:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.85rem;
            color: #7f8c8d;
        }
        
        .news-category {
            color: #e74c3c;
            font-weight: 500;
        }
        
        /* 标题只显示一行，不隐藏内容 */
        .news-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            white-space: nowrap; /* 不换行 */
            overflow: hidden; /* visible不隐藏内容 */
        }
        
        .news-card-link:hover .news-title {
            color: #e74c3c;
        }
        
        .news-excerpt {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
            /* 摘要最多4行 */
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            color: #2c3e50;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        
        .news-card-link:hover .read-more {
            color: #e74c3c;
        }
        
        .news-card-link:hover .read-more i {
            transform: translateX(5px);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .page-item {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #e0e0e0;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .page-item:hover {
            border-color: #e74c3c;
            color: #e74c3c;
        }
        
        .page-item.active {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }
        
        .page-item.arrow {
            width: auto;
            padding: 0 12px;
            border-radius: 4px;
        }
        
        @media (max-width: 768px) {
            .filter-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .news-search {
                max-width: 100%;
                width: 100%;
            }
            
            .news-list {
                grid-template-columns: 1fr;
            }
            
            .news-card {
                height: auto;
            }
            
            /* 移动端标题允许换行以避免溢出 */
            .news-title {
                white-space: normal;
            }
        }
