.h-search {
	display: block;
	width: 46px;
	height: 46px;
	border: 1px solid #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	border-radius: 50%;
	transition: .3s;
}

.header-section1 {
	background: linear-gradient(to bottom, rgba(15, 73, 158, 0.9) 20%, rgba(15, 73, 158, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1030;
	padding: 0 0 20px 0;
}

/* ===== 左侧边栏样式 ===== */
.sidebar-card {
	text-align: center;
}

.sidebar-header {
	background-color: #004b97;
	padding: 12px;
}

.sidebar-title {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
	margin: 0;
	letter-spacing: 1px;
}

.sidebar-item .zswork {
	background-color: #DADADA;
}

.sidebar-item.active .sidebar-link {
	color: #004b97;
	display: block;
	padding: 12px;
	font-weight: 500;
	transition: all 0.2s;
	font-size: 0.95rem;
	margin-top: 2px;
	text-decoration: none;
}

.sidebar-link:hover {
	background-color: #DADADA;
}

.list-title {
	border-bottom: #0472CF solid;
}

.list-title a:hover {
	color: #004b97;
}

/* 文章列表（无图标） */
.news-list .news-items {
	padding: 12px 10px;
	border-bottom: 1px dashed #999;
	transition: all 0.3s ease;
	background-color: transparent;
	list-style: none;
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* 添加蓝色圆点 */
.news-list .news-items::before {
	content: "●";
	color: #0472CF;
	/* 蓝色圆点 */
	font-size: 0.75rem;
	margin-right: 12px;
	flex-shrink: 0;
	line-height: 1;
}

.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.news-list .news-items a {
	text-decoration: none;
	flex: 1;
	min-width: 0;
}

.news-list .news-items a h5 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0;
	transition: color 0.2s;
	font-weight: normal;
	color: #333;
	font-size: 1rem;
}

.news-list .news-items a:hover h5 {
	color: #004b97 !important;
	text-decoration: underline;
}

.news-list .news-items span {
	color: #999;
	font-size: 0.8rem;
	white-space: nowrap;
	margin-left: 20px;
	flex-shrink: 0;
}

/* 分页（无图标） */

.pagination a {
	display: inline-block;
	padding: 2px 10px;
	font-size: 13px;
	color: #555;
	text-decoration: none;
	border: 2px solid #ddd;
	background-color: #fff;
	transition: all 0.2s;
}

.page-item1 a {
	color: darkgray;
}

.pagination a:hover {
	background-color: #0472CF;
	color: #fff;
	border: 0px solid #ddd;
}

.pagination .prev,
.pagination .next {
	padding: 5px 14px;
}

.pagination .active {
	background-color: #0472CF;
	color: #fff;
}

.page-link {
	border-radius: 0 !important;
}

/* 响应式 */
@media (max-width: 767.98px) {
	.list-title {
		display: flex;
		flex-direction: column;
	}

	.list-title>div {
		font-size: 0.8rem;
		padding-top: 15px;
	}

	.news-list .news-items a h5 {
		font-size: 0.8rem;
	}

	.news-list .news-items {
		flex-wrap: nowrap;
		/* 禁止换行 */
	}

	.news-list .news-items span {
		flex-shrink: 0;
		/* 日期固定宽度，不压缩 */
		white-space: nowrap;
		margin-left: 8px;
		font-size: 0.7rem;
	}
}