.news-banner {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	align-items: center;
	background:#f6fffe url(../images/news.jpg)  no-repeat right;
	border-bottom: 4px solid #e67e22;
}

.news-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(230, 126, 34, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(230, 126, 34, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.news-banner::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
	bottom: -200px;
	right: -100px;
	z-index: 1;
}

.news-banner .banner-deco-ring {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(230, 126, 34, 0.08);
	pointer-events: none;
	z-index: 1;
	animation: spin 25s linear infinite;
}

.news-banner .banner-deco-ring:nth-of-type(1) {
	width: 350px;
	height: 350px;
	top: -80px;
	right: 5%;
	border-color: rgba(230, 126, 34, 0.05);
	animation-duration: 30s;
}

.news-banner .banner-deco-ring:nth-of-type(2) {
	width: 200px;
	height: 200px;
	bottom: -60px;
	left: 10%;
	border-color: rgba(255, 255, 255, 0.04);
	animation-duration: 20s;
	animation-direction: reverse;
}

.news-banner .banner-deco-ring:nth-of-type(3) {
	width: 120px;
	height: 120px;
	top: 20%;
	right: 20%;
	border-color: rgba(230, 126, 34, 0.06);
	animation-duration: 15s;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.news-banner .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.news-banner .banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 20px 0;
}

.news-banner .banner-text {
	color: #1e2f3f;
	flex: 1;
}

.news-banner .banner-text .breadcrumb {
	font-size: 14px;
	color: #1e2f3f;
	margin-bottom: 12px;
}

.news-banner .banner-text .breadcrumb a {
	color:#1e2f3f;
	text-decoration: none;
	transition: color 0.3s;
}

.news-banner .banner-text .breadcrumb a:hover {
	color: #e67e22;
}

.news-banner .banner-text .breadcrumb .sep {
	margin: 0 8px;
}

.news-banner .banner-text h1 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.news-banner .banner-text h1 .highlight {
	color: #e67e22;
}

.news-banner .banner-text .sub-title {
	font-size: 17px;
	color:#1e2f3f;
	line-height: 1.8;
	max-width: 560px;
}

/* ============================================================
   新闻主区域 - 左右结构
   ============================================================ */
.news-main {
	padding: 50px 0 60px;
	background: #f5f7fa;
}

.news-main .container {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

/* ===== 左侧：新闻列表 ===== */
.news-list-wrap {
	flex: 2;
	min-width: 0;
}

.news-list-wrap .section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.news-list-wrap .section-header h2 {
	font-size: 24px;
	font-weight: 700;
	color: #0a2e4a;
}

.news-list-wrap .section-header h2 .highlight {
	color: #e67e22;
}

.news-list-wrap .section-header .more-link {
	color: #7f8c9b;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
	display: flex;
	align-items: center;
	gap: 4px;
}

.news-list-wrap .section-header .more-link:hover {
	color: #e67e22;
}

/* 新闻条目 - 小图左 + 文字右 */
.news-item {
	display: flex;
	gap: 20px;
	background: #ffffff;
	border-radius: 16px;
	padding: 18px 20px 18px 18px;
	margin-bottom: 18px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	border: 1px solid #eef2f6;
	transition: all 0.35s;
	cursor: pointer;
}

.news-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
	border-color: #e67e22;
}

.news-item .news-thumb {
	flex-shrink: 0;
	width: 200px;
	height: 130px;
	border-radius: 12px;
	overflow: hidden;
	background: #dce4ed;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.news-item .news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-item .news-thumb .thumb-icon {
	font-size: 48px;
	color: #1a4a6a;
	opacity: 0.4;
}

.news-item .news-thumb .thumb-tag {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #e67e22;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 12px;
	border-radius: 20px;
}

.news-item .news-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
}

.news-item .news-info .news-title {
	font-size: 18px;
	font-weight: 600;
	color: #0a2e4a;
	margin-bottom: 6px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-item .news-info .news-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.news-item .news-info .news-title a:hover {
	color: #e67e22;
}

.news-item .news-info .news-summary {
	font-size: 14px;
	color: #6a7f92;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 8px;
}

.news-item .news-info .news-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 13px;
	color: #8a9aa8;
	flex-wrap: wrap;
}

.news-item .news-info .news-meta i {
	margin-right: 4px;
	color: #b0bcc8;
}

.news-item .news-info .news-meta .tag {
	background: #f0f4f9;
	padding: 2px 14px;
	border-radius: 20px;
	color: #1a4a6a;
	font-size: 12px;
	font-weight: 500;
}

/* ===== 右侧边栏 - sticky 跟随 ===== */
.news-sidebar {
	flex: 1;
	min-width: 280px;
	max-width: 360px;
	position: sticky;
	top: 20px;
	align-self: flex-start;
}

.sidebar-widget {
	background: #ffffff;
	border-radius: 16px;
	padding: 24px 22px;
	margin-bottom: 24px;
	border: 1px solid #eef2f6;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.sidebar-widget .widget-title {
	font-size: 18px;
	font-weight: 700;
	color: #0a2e4a;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f4f9;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sidebar-widget .widget-title i {
	color: #e67e22;
}

.sidebar-widget .widget-title .badge {
	background: #e67e22;
	color: #fff;
	font-size: 11px;
	padding: 1px 10px;
	border-radius: 20px;
	margin-left: auto;
}

/* 热点资讯 */
.hot-list .hot-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f4f9;
	transition: all 0.2s;
}

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

.hot-list .hot-item .hot-index {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: #f0f4f9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #8a9aa8;
	transition: all 0.2s;
}

.hot-list .hot-item:nth-child(1) .hot-index {
	background: #e67e22;
	color: #fff;
}
.hot-list .hot-item:nth-child(2) .hot-index {
	background: #e67e22;
	color: #fff;
	opacity: 0.8;
}
.hot-list .hot-item:nth-child(3) .hot-index {
	background: #e67e22;
	color: #fff;
	opacity: 0.6;
}

.hot-list .hot-item .hot-title {
	flex: 1;
	font-size: 14px;
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.2s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.5;
}

.hot-list .hot-item .hot-title:hover {
	color: #e67e22;
}

.hot-list .hot-item .hot-time {
	font-size: 12px;
	color: #b0bcc8;
	flex-shrink: 0;
}

/* 推荐资讯 */
.recommend-list .rec-item {
	display: flex;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f4f9;
	align-items: center;
}

.recommend-list .rec-item:last-child {
	border-bottom: none;
}

.recommend-list .rec-item .rec-thumb {
	flex-shrink: 0;
	width: 80px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
	background: #dce4ed;
	display: flex;
	align-items: center;
	justify-content: center;
}

.recommend-list .rec-item .rec-thumb img {
	display:block;
	width:100%;
	height:100%;
	object-fit: cover;
}

.recommend-list .rec-item .rec-info {
	flex: 1;
	min-width: 0;
}

.recommend-list .rec-item .rec-info .rec-title {
	font-size: 14px;
	font-weight: 500;
	color: #0a2e4a;
	text-decoration: none;
	transition: color 0.2s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
}

.recommend-list .rec-item .rec-info .rec-title:hover {
	color: #e67e22;
}

.recommend-list .rec-item .rec-info .rec-date {
	font-size: 12px;
	color: #b0bcc8;
	margin-top: 2px;
	display: block;
}

/* 分类标签 */
.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-cloud .tag-item {
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 13px;
	color: #2c3e50;
	background: #f0f4f9;
	text-decoration: none;
	transition: all 0.25s;
	border: 1px solid transparent;
}

.tag-cloud .tag-item:hover {
	background: #e67e22;
	color: #fff;
	border-color: #e67e22;
	transform: translateY(-2px);
}

.tag-cloud .tag-item .count {
	font-size: 11px;
	opacity: 0.6;
	margin-left: 4px;
}

/* ============================================================
   行业动态板块（图片+文字+介绍，5个一排，无分页）
   ============================================================ */
.industry-news {
	padding: 60px 0 70px;
	background: #ffffff;
	border-top: 1px solid #eef2f6;
	border-bottom: 1px solid #eef2f6;
}

.industry-news .section-header {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 44px;
}

.industry-news .section-header .section-tag {
	display: inline-block;
	background: rgba(230, 126, 34, 0.10);
	color: #e67e22;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 4px 18px;
	border-radius: 30px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.industry-news .section-header h2 {
	font-size: 34px;
	font-weight: 700;
	color: #0a2e4a;
	letter-spacing: 1px;
}

.industry-news .section-header h2 .highlight {
	color: #e67e22;
}

.industry-news .section-header .section-desc {
	font-size: 17px;
	color: #5a6f82;
	line-height: 1.8;
	margin-top: 10px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.industry-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.industry-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #eef2f6;
	overflow: hidden;
	transition: all 0.35s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
}

.industry-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	border-color: #e67e22;
}

.industry-card .card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.industry-card .card-image img {
	width: 70%;
	height: auto;
	object-fit: cover;
	transition: transform 0.4s;
	display:block;
	margin:0 auto;
}

.industry-card:hover .card-image img {
	transform: scale(1.03);
}

.industry-card .card-body {
	padding: 18px 18px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.industry-card .card-date {
	font-size: 12px;
	color: #b0bcc8;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.industry-card .card-date i {
	color: #8a9aa8;
}

.industry-card .card-title {
	font-size: 16px;
	font-weight: 600;
	color: #0a2e4a;
	margin-bottom: 6px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none;
	transition: color 0.2s;
}

.industry-card .card-title:hover {
	color: #e67e22;
}

.industry-card .card-desc {
	font-size: 14px;
	color: #6a7f92;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.industry-card .card-tag {
	margin-top: 14px;
	display: inline-block;
	align-self: flex-start;
	background: rgba(230, 126, 34, 0.08);
	color: #e67e22;
	font-size: 12px;
	font-weight: 500;
	padding: 2px 14px;
	border-radius: 20px;
}

/* ===== 查看全部按钮 ===== */
.view-all-wrapper {
	text-align: center;
	margin-top: 44px;
}

.view-all-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #0a2e4a;
	color: #fff;
	padding: 14px 44px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(10, 46, 74, 0.15);
	letter-spacing: 0.5px;
}

.view-all-btn:hover {
	background: #e67e22;
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(230, 126, 34, 0.30);
	color: #fff;
}

.view-all-btn i {
	transition: transform 0.25s;
}

.view-all-btn:hover i {
	transform: translateX(5px);
}

/* ============================================================
   FAQ 常见问答（优化版：平铺展开，清爽风格）
   ============================================================ */
.news-faq {
	padding: 60px 0 70px;
	background: #f8fafc;
	border-top: 1px solid #eef2f6;
}

.news-faq .section-header {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 44px;
}

.news-faq .section-header .section-tag {
	display: inline-block;
	background: rgba(230, 126, 34, 0.10);
	color: #e67e22;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 4px 18px;
	border-radius: 30px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.news-faq .section-header h2 {
	font-size: 34px;
	font-weight: 700;
	color: #0a2e4a;
	letter-spacing: 1px;
}

.news-faq .section-header h2 .highlight {
	color: #e67e22;
}

.news-faq .section-header .section-desc {
	font-size: 17px;
	color: #5a6f82;
	line-height: 1.8;
	margin-top: 10px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 30px;
	margin: 0 auto;
}

.faq-item {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px 24px 22px;
	border: 1px solid #eef2f6;
	transition: all 0.3s;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
	border-color: #e67e22;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-item .faq-question {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #0a2e4a;
	margin-bottom: 6px;
}

.faq-item .faq-question .q-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(230, 126, 34, 0.10);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e67e22;
	font-size: 14px;
	font-weight: 700;
	margin-top: 1px;
}

.faq-item .faq-question:hover{
    color:#e67e22;
}

.faq-item .faq-answer {
	padding-left: 40px;
	color: #5a6f82;
	font-size: 14px;
	line-height: 1.8;
	border-left: 2px solid rgba(230, 126, 34, 0.15);
	padding-left: 18px;
	margin-left: 10px;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
	.news-banner .banner-content {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}

	.news-banner .banner-text .sub-title {
		max-width: 100%;
	}

	.news-main .container {
		flex-direction: column;
	}

	.news-sidebar {
		max-width: 100%;
		width: 100%;
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.news-sidebar .sidebar-widget {
		margin-bottom: 0;
	}

	.industry-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.faq-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px 24px;
	}
}

@media (max-width: 920px) {
	.news-banner {
		min-height: 300px;
		padding: 40px 0 30px;
	}

	.news-banner .banner-text h1 {
		font-size: 30px;
	}

	.news-banner .banner-text .sub-title {
		font-size: 15px;
	}

	.news-banner .banner-deco-ring {
		display: none;
	}

	.news-item {
		flex-direction: column;
		padding: 16px;
	}

	.news-item .news-thumb {
		width: 100%;
		height: 180px;
	}

	.news-item .news-info .news-title {
		font-size: 17px;
	}

	.news-sidebar {
		grid-template-columns: 1fr;
		position: static;
	}

	.industry-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 500px) {
	.container {
		padding: 0 14px;
	}

	.news-banner {
		min-height: auto;
		padding: 14px 0 12px;
		background: #eff3f6 url(../images/news_phone.jpg) no-repeat bottom;
		background-size: 100%;
		padding-bottom: 75%;
	}

	.news-banner .banner-text h1 {
		font-size: 24px;
	}

	.news-banner .banner-text .sub-title {
		font-size: 14px;
	}

	.news-main {
		padding: 30px 0 40px;
	}

	.news-list-wrap .section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.news-list-wrap .section-header h2 {
		font-size: 20px;
	}

	.news-item {
		padding: 14px;
		gap: 12px;
	}

	.news-item .news-thumb {
		height: 150px;
	}

	.news-item .news-info .news-title {
		font-size: 16px;
	}

	.news-item .news-info .news-summary {
		font-size: 13px;
	}

	.news-item .news-info .news-meta {
		font-size: 12px;
		gap: 10px;
	}

	.sidebar-widget {
		padding: 18px 16px;
	}

	.sidebar-widget .widget-title {
		font-size: 16px;
	}

	.hot-list .hot-item {
		padding: 8px 0;
	}

	.hot-list .hot-item .hot-title {
		font-size: 13px;
	}

	.recommend-list .rec-item .rec-thumb {
		width: 64px;
		height: 48px;
	}

	.recommend-list .rec-item .rec-info .rec-title {
		font-size: 13px;
	}

	.industry-news {
		padding: 40px 0 50px;
	}

	.industry-news .section-header h2 {
		font-size: 24px;
	}

	.industry-news .section-header .section-desc {
		font-size: 14px;
	}

	.industry-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.industry-card .card-body {
		padding: 14px 14px 16px;
	}

	.industry-card .card-title {
		font-size: 14px;
	}

	.industry-card .card-desc {
		font-size: 13px;
	}
	
	.view-all-wrapper {
		margin-top: 32px;
	}

	.news-faq {
		padding: 40px 0 50px;
	}

	.news-faq .section-header h2 {
		font-size: 24px;
	}

	.news-faq .section-header .section-desc {
		font-size: 14px;
	}

	.faq-item {
		padding: 16px 18px;
	}

	.faq-item .faq-question {
		font-size: 14px;
		gap: 10px;
	}

	.faq-item .faq-answer {
		font-size: 13px;
		padding-left: 14px;
		margin-left: 8px;
	}

	/* 移动端侧边栏不sticky */
	.news-sidebar {
		position: static !important;
	}
}