/* 新闻列表容器 */
.news-page-list {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px 15px; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-page-title {
    color: #0372cc;
    font-size: 24px;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #0066cc;
}

/* 新闻列表项样式 */
.news-page-item {
    background: #f6f6f6;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.news-page-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.news-page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-page-item:hover .news-page-item-image img {
    transform: scale(1.05);
}

.news-page-item-content {
    padding: 15px;
    background-color: #f6f6f6;
}

.news-page-item-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-page-item-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-page-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-page-item-title a:hover {
    color: #0066cc;
}

.news-page-item-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .news-page-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .news-page-item {
        margin-bottom: 0;
    }

    .news-page-item-image {
        height: 180px;
    }
}

/* 分页样式 */
.news-page-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.news-page-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
}

.news-page-pagination a:hover,
.news-page-pagination a.active {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.news-page-pagination-center {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* 面包屑导航样式 */
.breadcrumb {
    margin: 20px 0;
    padding: 10px 15px;
}

.breadcrumb a {
    text-decoration: none;
    color: inherit;
}

.breadcrumb a:hover {
    color: #0066cc;
}