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

.list-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;
}

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

.list-banner .banner-text {
	color: #1e2f3f;
	padding: 20px 0;
}

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

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

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

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

.list-banner .banner-text h1 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 1px;
}

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

.list-banner .banner-text .sub-title {
	font-size: 16px;
	color: #1e2f3f;
	line-height: 1.8;
	max-width: 560px;
	margin-top: 4px;
}

/* ============================================================
   列表主区域
   ============================================================ */
.list-main {
	padding: 50px 0 60px;
	background: #f5f7fa;
	flex: 1;
}

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

/* ===== 左侧：文章列表 ===== */
.list-articles {
	flex: 2;
	min-width: 0;
}

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

.list-articles .list-header .total {
	font-size: 14px;
	color: #7f8c9b;
}

.list-articles .list-header .total strong {
	color: #0a2e4a;
}

.list-articles .list-header .filter-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #5a6f82;
}

.list-articles .list-header .filter-sort select {
	padding: 6px 14px;
	border-radius: 8px;
	border: 1px solid #e9edf2;
	background: #ffffff;
	font-size: 13px;
	color: #2c3e50;
	outline: none;
	cursor: pointer;
	transition: border-color 0.2s;
}

.list-articles .list-header .filter-sort select:hover,
.list-articles .list-header .filter-sort select:focus {
	border-color: #e67e22;
}

/* 文章条目 */
.article-item {
	display: flex;
	gap: 24px;
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 24px 20px 20px;
	margin-bottom: 18px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	border: 1px solid #eef2f6;
	transition: all 0.35s;
	cursor: pointer;
}

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

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

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

.article-item .article-thumb .thumb-icon {
	font-size: 52px;
	color: #1a4a6a;
	opacity: 0.3;
}

.article-item .article-thumb .thumb-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #e67e22;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 14px;
	border-radius: 20px;
}

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

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

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

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

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

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

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

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

/* ===== 分页 ===== */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #2c3e50;
	background: #ffffff;
	border: 1px solid #e9edf2;
	text-decoration: none;
	transition: all 0.25s;
}

.pagination a:hover {
	background: #e67e22;
	color: #fff;
	border-color: #e67e22;
}

.pagination .active {
	background: #e67e22;
	color: #fff;
	border-color: #e67e22;
}

.pagination .disabled {
	opacity: 0.4;
	pointer-events: none;
}

/* ===== 右侧边栏（跟随滑动） ===== */
.list-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;
}

/* 分类筛选 - 数字改为箭头 */
.category-list .cat-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f0f4f9;
	text-decoration: none;
	color: #2c3e50;
	font-size: 14px;
	transition: all 0.2s;
}

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

.category-list .cat-item:hover {
	color: #e67e22;
	padding-left: 6px;
}

.category-list .cat-item .arrow {
	color: #b0bcc8;
	font-size: 13px;
	transition: transform 0.2s, color 0.2s;
}

.category-list .cat-item:hover .arrow {
	color: #e67e22;
	transform: translateX(4px);
}

.category-list .cat-item.active {
	color: #e67e22;
	font-weight: 600;
}

.category-list .cat-item.active .arrow {
	color: #e67e22;
	transform: translateX(4px);
}

/* 热门文章 */
.hot-list .hot-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f4f9;
}

.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;
}

.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;
}

/* 标签云 */
.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;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
	.list-main .container {
		flex-direction: column;
	}

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

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

@media (max-width: 920px) {
	.list-banner {
		min-height: 220px;
		padding: 30px 0 24px;
	}

	.list-banner .banner-text h1 {
		font-size: 28px;
	}

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

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

	.list-articles .list-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.article-item {
		flex-direction: column;
		padding: 16px;
		gap: 14px;
	}

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

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

	.list-sidebar {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

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

	.list-banner {
		min-height: 180px;
		padding: 20px 0 16px;
	}

	.list-banner .banner-text h1 {
		font-size: 22px;
	}

	.list-banner .banner-text .sub-title {
		font-size: 13px;
	}

	.list-main {
		padding: 20px 0 30px;
	}

	.article-item {
		padding: 14px;
		gap: 10px;
	}

	.article-item .article-thumb {
		height: 140px;
	}

	.article-item .article-info .article-title {
		font-size: 15px;
	}

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

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

	.pagination a,
	.pagination span {
		min-width: 36px;
		height: 36px;
		font-size: 13px;
		padding: 0 10px;
	}

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

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

	.list-sidebar {
		grid-template-columns: 1fr;
		gap: 16px;
	}

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