/* 新闻区域样式 */
.news-section {
    background-color: #e7e7e7;
    padding: 50px 200px;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.news-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
   /* border-radius: 8px;*/ /*圆角*/
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform: scale(1);
}

.news-card:hover {
    transform: scale(1.03);
}

.news-content {
    padding: 20px;
	font-size: 14px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #0066cc;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.news-card:hover .news-date {
    color: #0066cc;
}

.news-divider {
    border: none;
    border-top: 2px solid #eee;
    margin: 10px 0;
    width: 30%;
    transition: all 0.3s ease;
}

.news-card:hover .news-divider {
    width: 100%;
    border-color: #0066cc;
}

.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-section {
        padding: 30px 10px;
    }
    
    .news-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

a {
    text-decoration: none;
}

/* 分页导航样式 */
.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
	font-size: 16px;
}
.pagination a.page-num-current {
    color: #ff5b09;
    background: #0530a9;
    border: 1px solid #333;
    }
.pagination a:hover {
    background-color: #f5f5f5;
}

.page.active {
  background-color: #1E90FF; /* 蓝色背景 */
  color: white; /* 白色文字提高可读性 */
  padding: 2px 8px; /* 适当内边距 */
  border-radius: 4px; /* 圆角效果 */
}