/* 新闻列表样式 */
.news-content {
	flex: 1;
	min-width: 0;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0a3d62;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 3px solid #0056b3;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title i {
	color: #0056b3;
}

/* 新闻列表项 */
.news-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-item {
	display: flex;
	gap: 20px;
	padding: 20px;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s;
	cursor: pointer;
}

.news-item:hover {
	box-shadow: 0 4px 15px rgba(0, 86, 179, 0.15);
	border-color: #0056b3;
	transform: translateY(-2px);
}

.news-thumbnail {
	flex-shrink: 0;
	width: 180px;
	height: 120px;
	border-radius: 8px;
	overflow: hidden;
	background: #f1f5f9;
}

.news-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.news-item:hover .news-thumbnail img {
	transform: scale(1.05);
}

.news-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #0a3d62;
	margin-bottom: 10px;
	line-height: 1.4;
	transition: color 0.3s;
}

.news-item:hover .news-title {
	color: #0056b3;
}

.news-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 0.85rem;
	color: #64748b;
	margin-bottom: 8px;
}

.news-meta i {
	color: #0056b3;
}

.news-summary {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
}

.pagination a,
.pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	font-size: 0.9rem;
	color: #334155;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s;
}

.pagination a:hover {
	background: #0056b3;
	color: white;
}

.pagination .active {
	background: #0056b3;
	color: white;
	font-weight: 600;
}

.pagination .disabled {
	color: #94a3b8;
	cursor: not-allowed;
}

.pagination .disabled:hover {
	background: transparent;
	color: #94a3b8;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.news-item {
		flex-direction: column;
	}

	.news-thumbnail {
		width: 100%;
		height: 160px;
	}

	.news-title {
		font-size: 1rem;
	}

	.pagination {
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 1.3rem;
	}

	.news-item {
		padding: 15px;
	}

	.news-thumbnail {
		height: 140px;
	}

	.news-title {
		font-size: 0.95rem;
	}

	.news-summary {
		font-size: 0.85rem;
	}
}