/* ==================== 新闻列表内容 ==================== */
.news-list-section {
    padding: 20px 0 40px;
}

.news-list-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 新闻列表 */
.news-list {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 40px;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e6e9f0;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f8f9fa;
}

.news-image {
    flex-shrink: 0;
    width: 200px;
    max-height: 150px;
    margin-right: 30px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    max-height: 150px;
    border-radius: 6px;;
    object-fit: cover;
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 133px;
}

.news-date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 10px;
}

.news-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-info h3 a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-info h3 a:hover {
    color: #003c96;
}

.news-action {
    align-self: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover .news-action {
    opacity: 1;
}

.view-more {
    display: inline-block;
    padding: 6px 20px;
    background-color: #003c96;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-more:hover {
    background-color: #002a6f;
    color: #ffffff;
    text-decoration: none;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination-item {
    margin: 0 5px;
}

.pagination-item a {
    display: block;
    padding: 8px 16px;
    color: #666666;
    text-decoration: none;
    border: 1px solid #e6e9f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-item a:hover {
    color: #003c96;
    border-color: #003c96;
}

.pagination-item.active a {
    background-color: #003c96;
    color: #ffffff;
    border-color: #003c96;
}

.pagination-item.disabled a {
    color: #999999;
    border-color: #e6e9f0;
    cursor: not-allowed;
}

.pagination-item.disabled a:hover {
    color: #999999;
    border-color: #e6e9f0;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 991px) {
    .news-list-section {
        padding: 10px 0 30px;
    }
    
    .news-list {
        padding: 10px 30px;
    }
    
    .news-item {
        padding: 15px 0;
    }
    
    .news-image {
        width: 150px;
        max-height: 120px;
        margin-right: 20px;
    }
    
    .news-image img {
        max-height: 120px;
    }
    
    .news-info {
        min-height: 120px;
    }
    
    .news-info h3 {
        font-size: 16px;
    }
    
    .news-date {
        font-size: 13px;
    }
    
    .view-more {
        padding: 4px 16px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .news-list-section {
        padding: 10px 0 20px;
    }
    
    .news-list-content {
        gap: 30px;
    }
    
    .news-list {
        padding: 10px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }
    
    .news-image {
        width: 100%;
        max-height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .news-image img {
        max-height: 200px;
    }
    
    .news-info {
        width: 100%;
        min-height: auto;
    }
    
    .news-action {
        align-self: flex-start;
        margin-top: 10px;
    }
    
    .news-info h3 {
        font-size: 15px;
    }
    
    .news-date {
        font-size: 13px;
    }
    
    .pagination-list {
        gap: 3px;
    }
    
    .pagination-item {
        margin: 0 3px;
    }
    
    .pagination-item a {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news-list {
        padding: 15px;
    }
    
    .news-image {
        max-height: 150px;
    }
    
    .news-image img {
        max-height: 150px;
    }
    
    .news-info h3 {
        font-size: 14px;
    }
    
    .pagination-item a {
        padding: 4px 8px;
        font-size: 12px;
    }
}
