/* 资讯中心Banner */
.news-banner {
	width: 100%;
	height: 350px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.news-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
	opacity: 0.5;
}

.news-banner .banner-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 3rem;
	font-weight: bold;
	text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
	text-align: center;
	width: 100%;
	padding: 0 20px;
	letter-spacing: 2px;
}

.banner-subtitle {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	text-align: center;
	width: 100%;
	padding: 0 20px;
	margin-top: 20px;
	font-weight: 300;
}

/* 资讯中心主要内容 */
.news-container {
	padding: 60px 0;
	min-height: 600px;
}

.news-content {
	display: flex;
	gap: 40px;
	margin-top: 0px;
}

/* 右侧资讯列表 */
.news-list {
	flex: 1;
}

.news-list-title {
	font-size: 1.8rem;
	color: var(--primary-color);
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 3px solid var(--light-color);
	display: flex;
	align-items: center;
}

.news-list-title i {
	margin-right: 12px;
	background: var(--primary-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 资讯列表项 - 保持原有样式 */
.news-item {
	display: flex;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(23, 55, 130, 0.08);
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid rgba(23, 55, 130, 0.08);
}

.news-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(23, 55, 130, 0.2);
	border-color: rgba(23, 55, 130, 0.15);
}

/* 图片区域 */
.news-image {
	flex: 0 0 320px;
	overflow: hidden;
	position: relative;
}

.news-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.news-item:hover .news-image img {
	transform: scale(1.08);
}

/* 图片上的标签 */
.news-tag {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--accent-color);
	color: white;
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: bold;
	z-index: 2;
	box-shadow: 0 3px 10px rgba(219, 37, 30, 0.3);
}

/* 资讯内容区域 */
.news-info {
	flex: 1;
	padding: 30px 35px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--dark-color);
	margin-bottom: 18px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: all 0.3s ease;
}

.news-title a:hover {
	color: var(--primary-color);
}

.news-excerpt {
	font-size: 1.05rem;
	color: var(--light-text);
	line-height: 1.7;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95rem;
	color: #888;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

.news-date {
	display: flex;
	align-items: center;
}

.news-date i {
	margin-right: 8px;
	color: var(--primary-color);
}

.news-readmore {
	color: var(--primary-color);
	font-weight: 600;
	display: flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 6px;
	background: var(--light-color);
	transition: all 0.3s ease;
}

.news-readmore:hover {
	background: var(--primary-color);
	color: white;
	transform: translateX(5px);
}

.news-readmore i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.news-readmore:hover i {
	transform: translateX(5px);
}

/* 分页器 */
.news-pagination {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.pagination-list {
	display: flex;
	list-style: none;
	gap: 8px;
	align-items: center;
}

.pagination-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 8px;
	background: white;
	color: var(--text-color);
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(23, 55, 130, 0.1);
	padding: 0 15px;
}

.pagination-item a:hover {
	background: var(--light-color);
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(23, 55, 130, 0.2);
}

.pagination-item.active a {
	background: var(--primary-color);
	color: white;
	box-shadow: 0 5px 15px rgba(23, 55, 130, 0.3);
}

.pagination-item.prev a,
.pagination-item.next a {
	padding: 0 20px;
}

.pagination-item.prev a i,
.pagination-item.next a i {
	transition: transform 0.3s ease;
}

.pagination-item.prev a:hover i {
	transform: translateX(-3px);
}

.pagination-item.next a:hover i {
	transform: translateX(3px);
}

/* 移动端分类筛选器 - 共用产品的样式 */
.news-category {
	flex: 0 0 250px;
	background: white;
	border-radius: 12px;
	box-shadow: var(--card-shadow);
	padding: 25px;
	height: fit-content;
	border-top: 5px solid var(--primary-color);
}

.news-category-title {
	font-size: 1.5rem;
	color: var(--primary-color);
	font-weight: bold;
	padding-bottom: 20px;
	margin-bottom: 25px;
	border-bottom: 2px solid var(--light-color);
	display: flex;
	align-items: center;
}

.news-category-title i {
	margin-right: 12px;
	background: var(--primary-color);
	color: white;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

/* 移动端新闻列表适配 */
@media (max-width: 1200px) {
	.news-banner {
		height: 300px;
	}

	.news-banner .banner-title {
		font-size: 2.5rem;
	}

	.news-content {
		gap: 30px;
	}

	.news-image {
		flex: 0 0 280px;
	}
}

@media (max-width: 992px) {
	/* Banner响应式 */
	.news-banner {
		height: 250px;
	}

	.news-banner .banner-title {
		font-size: 2.2rem;
	}

	.banner-subtitle {
		font-size: 1rem;
		margin-top: 15px;
	}

	/* 内容响应式 */
	.news-container {
		padding: 10px 0 40px 0;
	}

	.news-content {
		flex-direction: column;
		gap: 20px;
	}

	/* 隐藏PC端分类，显示移动端分类筛选器 */
	.news-category {
		display: none;
	}

	/* 移动端分类筛选器 - 使用产品的样式 */
	.category-filter-mobile {
		display: block;
	}

	/* 新闻列表在移动端调整 */
	.news-item {
		flex-direction: column;
	}

	.news-image {
		flex: none;
		height: 220px;
	}

	.news-tag {
		top: 15px;
		left: 15px;
		font-size: 0.8rem;
		padding: 5px 12px;
	}

	.news-info {
		padding: 25px;
	}

	.news-title {
		font-size: 1.3rem;
	}

	.news-list-title {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.news-banner {
		height: 200px;
	}

	.news-banner .banner-title {
		font-size: 1.8rem;
	}

	.banner-subtitle {
		font-size: 0.9rem;
		margin-top: 10px;
	}

	.news-category-title,
	.news-list-title {
		font-size: 1.4rem;
	}

	.news-list-title i {
		width: 36px;
		height: 36px;
		font-size: 0.9rem;
	}

	.news-image {
		height: 200px;
	}

	.news-excerpt {
		-webkit-line-clamp: 2;
	}

	.news-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.news-readmore {
		align-self: flex-start;
	}
}

@media (max-width: 480px) {
	.news-banner {
		height: 180px;
	}

	.news-banner .banner-title {
		font-size: 1.6rem;
	}

	.banner-subtitle {
		display: none;
	}

	.news-image {
		height: 180px;
	}

	.news-title {
		font-size: 1.2rem;
	}

	.news-excerpt {
		font-size: 1rem;
	}

	.news-info {
		padding: 20px;
	}

	.pagination-item a {
		min-width: 38px;
		height: 38px;
		line-height: 38px;
		font-size: 0.9rem;
		padding: 0 10px;
	}
}

@media (max-width: 360px) {
	.news-banner .banner-title {
		font-size: 1.4rem;
	}

	.news-image {
		height: 160px;
	}
}