/* 新闻列表页面特定样式 */
        .news-list-page {
            padding: 20px 0 0px;
            background-color: #f8f9fa;
        }
        
        .news-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* 二级导航 */
        .sub-navigation {
            display: flex;
            gap: 20;
           
            
            padding: 0;
            padding-bottom: 40px;
            overflow: hidden;
        }
        
        .sub-nav-item {
            padding: 10px 30px;
            font-size: 16px;
            font-weight: 500;
            margin:0px 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            background: transparent;
            cursor: pointer;
             background: white;
             color:#878787;
            border-radius: 30px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .sub-nav-item:hover,
        .sub-nav-item.active {
            background-color: #6cbb5a;
            color: white;
        }
        
        /* 焦点新闻区域 */
        .featured-news {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            
            overflow: hidden;
            
            
        }
        
        .featured-left {
            flex: 1;
            position: relative;
        }
        
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 20px;
            color: white;
        }
        
        .featured-title {
            font-size: 18px;
            font-weight: bold;

            line-height: 1.4;
        }
        
        .featured-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: #6cbb5a;
            color: white;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .featured-btn:hover {
            background: #5aa848;
            transform: translateX(5px);
        }
        
        .featured-right {
            flex: 1;
            padding: 0;
          
            
           
            
        }
        
        .news-item {
            padding: 20px 20px;
            margin-bottom:15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: white;
            border-radius: 15px;
           
        }
        
        .news-item:last-child {
           
          
            margin-bottom:0px;
        }
         .news-item a{text-decoration:none;color:#333;}
      
        
        .news-item:hover {
            transform: translateX(5px);
        }
        
        .item-content {
            flex: 1;
        }
        
        .item-title {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .item-time {
            font-size: 14px;
            color: #999;
        }
        
        .item-arrow {
            color: #018eab;
            font-size: 18px;
            margin-left: 15px;
            transition: transform 0.3s ease;
        }
        
        .news-item:hover .item-arrow {
            transform: translateX(5px);
        }
        
        /* 新闻网格 */
        .news-grid-section {
            margin-bottom: 0px;
            background:#fff;padding-top:50px;overflow:hidden;overflow:hidden;
        }
        
        .section-title {
            font-size: 28px;
            font-weight: bold;
            color: #018eab;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e6f7fa;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .news-card {
            background: white;
            border:1px solid #e6e6e6;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 48px;
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .card-time {
            font-size: 14px;
            color: #999;
        }
        
        .card-more {
            font-size: 14px;
            color: #018eab;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .card-more:hover {
            color: #016a80;
            gap: 8px;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 50px;width:100%;overflow:hidden;float:left;
            margin-bottom:50px;
        }
        
        .page-item {
            display: inline-block;
        }
        
        .page-link {
            display: block;
            padding: 10px 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .page-link:hover {
            background: #f8f9fa;
            border-color: #018eab;
        }
        
        .page-item.active .page-link {
            background: #018eab;
            color: white;
            border-color: #018eab;
        }
        
        .page-item.disabled .page-link {
            color: #999;
            cursor: not-allowed;
            background: #f8f9fa;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .news-grid {
                gap: 25px;
            }
        }
        
        @media (max-width: 992px) {
            .featured-news {
                flex-direction: column;
            }
            
            .featured-image {
                height: 300px;
            }
            
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sub-navigation {
                flex-wrap: wrap;
            }
            
            .sub-nav-item {
                flex: 1;
                text-align: center;
                padding: 12px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .news-list-page {
                padding: 20px 0 40px;
            }
            
            .featured-overlay {
                padding: 20px;
            }
            
            .featured-title {
                font-size: 20px;
            }
            
            .featured-right {
                padding: 20px;
            }
            
            .item-title {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .news-grid {
                gap: 20px;
            }
            
            .card-content {
                padding: 15px;
            }
            
            .card-title {
                font-size: 15px;
                height: 42px;
            }
        }
        
        @media (max-width: 576px) {
            .news-list-page {
                padding: 0px 0 30px;
            }
            .featured-news{margin-bottom:20px;}
            .featured-right{padding:0px;}
            .sub-navigation {
                flex-direction: row;
            }
            
            .sub-nav-item {
                padding: 15px;
            }
            
            .featured-image {
                height: 250px;
            }
            
            .featured-overlay {
                padding: 15px;
            }
            
            .featured-title {
                font-size: 18px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .section-title {
                font-size: 22px;
                margin-bottom: 25px;
            }
            
            .pagination {
                flex-wrap: wrap;
                gap: 5px;
            }
            
            .page-link {
                padding: 8px 12px;
                font-size: 13px;
            }
        }
        
        
        
        .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 5px;
}

.pagination li {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}
.pagination li a{color:#333;text-decoration:none;}
.page-btn:hover:not(:disabled) {
    background: #f5f5f5;
}

.pagination li.active,.pagination li:hover {
    background-color: #ff5105;
    color: white;text-decoration:none;
    border-color: #ff5105;
}
.pagination li.active a,.pagination li:hover a{color: white;text-decoration:none;}
.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}