/* 新闻列表页样式 */
.news-content-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 500;
    font-size: 20px;
    color: #333C52;
    line-height: 28px;
    text-align: left;
    font-style: normal;
}

.news-list {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
}

.news-item {
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E6E7EB;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.news-image {
    overflow: hidden;
}

.news-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
    padding:  0 20px;
    position: relative;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #1890ff;
}

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

.news-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    display: inline-block;
    color: #1890ff;
    font-size: 14px;
    text-decoration: none;
}

.news-more:hover {
    text-decoration: underline;
}

/* 热门新闻样式 */
.hot-news-list {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hot-news-item {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

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

.hot-news-link {
    display: block;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hot-news-link:hover {
    color: #1890ff;
}

.hot-news-title {
    font-size: 15px;
    line-height: 1.5;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 分页样式 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    align-items: center;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 5px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-item {
    border: 1px solid #ddd;
    background-color: #fff;
}

.pagination .page-item.active {
    background-color: #1890ff;
    color: #fff;
    border-color: #1890ff;
}

.pagination .page-item:hover:not(.active) {
    color: #1890ff;
    border-color: #1890ff;
}

.pagination .page-prev,
.pagination .page-next {
    border: 1px solid #ddd;
    background-color: #fff;
}

.pagination .page-prev:hover,
.pagination .page-next:hover {
    color: #1890ff;
    border-color: #1890ff;
}

.no-data {
    text-align: center;
    padding: 30px 0;
    color: #999;
    font-size: 16px;
}



/* 响应式样式 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        flex: 0 0 auto;
    }
    
    .news-image img {
        height: 200px;
    }
    
    .pagination a {
        width: 28px;
        height: 28px;
        margin: 0 3px;
        font-size: 12px;
    }
}




