
/* 防止横向滚动条 */
body {
	overflow-x: hidden;
	max-width: 100%;
}

/* list.html */
.list-header {
	background: url(/images/sben3.jpg) no-repeat center bottom;
	background-size: 100% auto;
	position: relative;
	overflow: visible;
	width: 100%;
	max-width: 100%;
/*	animation: backgroundZoom 20s ease-in-out infinite alternate;*/
}

/* 背景动效 */
@keyframes backgroundZoom {
	0% {
		background-size: 100% auto;
		transform: scale(1);
	}
	100% {
		background-size: 110% auto;
		transform: scale(1.02);
	}
}

/* 添加渐变遮罩动效 */
.list-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, 
		rgba(30, 105, 202, 0.1) 0%, 
		rgba(30, 105, 202, 0.05) 25%, 
		transparent 50%, 
		rgba(30, 105, 202, 0.05) 75%, 
		rgba(30, 105, 202, 0.1) 100%);
	animation: gradientShift 15s ease-in-out infinite;
	pointer-events: none;
}

@keyframes gradientShift {
	0%, 100% {
		opacity: 0.3;
		transform: translateX(0);
	}
	50% {
		opacity: 0.6;
		transform: translateX(10px);
	}
}
.list-header .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 200px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
.list-header .header-tools {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	height: 100px;
	gap: 15px;
    padding-bottom: 50px;
	flex-shrink: 0;
	min-width: 0;
}

.list-header .header-tools .links {
	display: flex;
	align-items: center;
    margin-right: 20px;
}

.list-header .header-tools .links ul {
	display: flex;
	align-items: center; 
}

.list-header .header-tools .links ul li {
	list-style: none;
	padding: 0 10px;
	border-right: 1px solid #8e8e8e99;
}

.list-header .header-tools .links ul li:last-child {
	border-right: none;
}

.list-header .header-tools .links ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 14px;
	transition: color 0.3s ease;
}

.list-header .header-tools .links ul li a:hover {
	color: #ffffff;
}

/* 搜索框样式 */
.list-header .search-box {
	width: 100%;
	max-width: 350px;
    margin-top: 20px;
	flex-shrink: 0;
}

.list-header .search {
	position: relative;
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 3px 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	height: 40px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.list-header .search-icon {
	color: #999;
	font-size: 12px;
	margin-right: 6px;
}

.list-header .search-input {
	border: none;
	outline: none;
	background: transparent;
	flex: 1;
	font-size: 12px;
	color: #333;
	padding: 2px 0;
	height: 26px;
	line-height: 26px;
	min-width: 0;
	max-width: 100%;
}

.list-header .search-input::placeholder {
	color: #999;
	font-size: 12px;
}

.list-header .search-btn {
	background-color: #1e69ca;
	color: #ffffff;
	border: none;
	border-radius: 12px;
	padding: 4px 10px;
	font-size: 11px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-left: 6px;
	height: 24px;
	line-height: 16px;
	white-space: nowrap;
	flex-shrink: 0;
}

.list-header .search-btn:hover {
	background-color: #155a9e;
}
.list-header .top-nav {
	background-color: #1e69cadf;
	overflow: visible;
	position: relative;
	z-index: 1000;
}
.list-header .top-nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	width: 100%;
	max-width: 100%;
	overflow: visible;
	flex-wrap: wrap;
}
.list-header .top-nav ul li {
	list-style: none;
	height: 69px;
	line-height: 68px;
	padding: 0 10px;
	position: relative;
	flex-shrink: 0;
	min-width: 0;
	white-space: nowrap;
	overflow: visible;
}
.list-header .top-nav ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
}
.list-header .top-nav ul li.active {
	border-bottom: 3px solid #ffffff;
}
.list-header .top-nav ul li a:hover {
	text-decoration: none;
}

/* bread-crumb */
.bread-crumb {
	background-color: #ffffff;
	margin-top: 10px;
	border-radius: 5px;
}
.bread-crumb ul {
	display: flex;
	justify-content: left;
	align-items: center; 
	margin-left: 20px;
}
.bread-crumb ul li {
	list-style: none;
	height: 60px;
	line-height: 60px;
	padding: 0 20px;
	font-size: 16px;
	color: #3d3d3d;
	position: relative;
}
.bread-crumb ul li:first-child {
	padding-left: 5px;
    padding-right: 0;
}
.bread-crumb ul li:not(:last-child):not(:first-child)::after {
	content: ">";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-weight: bold;
}
.bread-crumb ul li a {
	text-decoration: none;
	color: #3d3d3d;
}

/* 新闻列表页面样式 */
.news-layout {
	margin-top: 40px;
	margin-bottom: 40px;
}

/* 左侧导航菜单 */
.news-sidebar {
	background-color: #ffffff;
	border-radius: 0px;
	overflow: hidden;
}

.sidebar-header {
	background-color: #1e69ca;
	color: #ffffff;
	padding: 25px 20px;
	text-align: center;
}

.sidebar-header h3 {
	margin: 0;
	font-size: 22px;
	font-weight: bold;
}

.sidebar-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-menu ul li {
	border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu ul li:last-child {
	border-bottom: none;
}

.sidebar-menu ul li a {
	display: block;
	padding: 22px 20px;
	text-decoration: none;
	color: #333;
	font-size: 18px;
	transition: all 0.3s ease;
}

.sidebar-menu ul li a:hover {
	background-color: #f8f9fa;
	color: #1e69ca;
}

.sidebar-menu ul li.active a {
	background-color: #e3f2fd;
	color: #1e69ca;
	font-weight: bold;
}

/* 右侧新闻内容 */
.news-content {
	background-color: #ffffff;
	border-radius: 5px;
	padding: 20px;
	margin-left: 20px;
}

.content-header {
	border-bottom: 2px solid #1e69ca;
	padding-bottom: 10px;
	margin-bottom: 20px;
	line-height: 18px;
}

.content-header h2 {
	margin: 0;
	font-size: 20px;
	color: #333;
	font-weight: bold;
    padding: 10px 0;
}
.content-header h3 {
	margin: 0;
	font-size: 20px;
	color: #333;
	font-weight: bold;
    padding: 10px 0;
}
.content-header span.more {
	font-size: 16px;
	color: #999;
	font-weight: normal;
	float: right;
}
.news-list {
	padding:0 20px;
}
.news-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-list ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
}

.news-list ul li:last-child {
	border-bottom: none;
}

.news-list ul li::before {
	content: "●";
	color: #1e69ca;
	font-size: 12px;
	margin-right: 10px;
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.news-title {
	flex: 1;
	color: #333;
	font-size: 18px;
	line-height: 1.5;
	cursor: pointer;
	transition: color 0.3s ease;
	text-decoration: none;
	display: block;
}

.news-title:hover {
	color: #1e69ca;
	text-decoration: none;
}

.news-date {
	color: #999;
	font-size: 14px;
	white-space: nowrap;
	margin-left: 20px;
}
.pagination {   
	padding: 30px 0; 
	text-align: center;
}
.pagination li{
	display: inline-block;
	padding: 0 3px;
}
.pagination a {
	text-decoration: none;
	color: #666;
	font-size: 14px;
	display: inline-block;
	padding: 8px 12px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background-color: #ffffff;
	transition: all 0.3s ease;
	min-width: 40px;
	text-align: center;
}
 

.pagination a:hover {
	color: #1e69ca;
	border-color: #1e69ca;
	background-color: #f8f9fa;
}

.pagination a.prev,
.pagination a.next {
	color: #333;
	font-weight: 500;
	padding: 8px 16px;
}

.pagination a.prev:hover,
.pagination a.next:hover {
	background-color: #1e69ca;
	color: #ffffff;
	border-color: #1e69ca;
}

.pagination a.page-num.active {
	background-color: #1e69ca;
	color: #ffffff;
	border-color: #1e69ca;
	font-weight: bold;
}

.pagination a.page-num.active:hover {
	background-color: #155a9e;
	border-color: #155a9e;
}

/* 文章内容页面样式 */
.article-layout {
	margin-top: 40px;
	margin-bottom: 40px;
}

.article-content {
	background-color: #ffffff;
	border-radius: 5px;
	padding: 30px; 
}

/* 文章标题区域 */
.article-header {
	border-bottom: 2px solid #1e69ca;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.article-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	line-height: 1.4;
	margin: 0 0 20px 0;
}

.article-meta {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.meta-item {
	color: #666;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.meta-item i {
	color: #1e69ca;
	font-size: 14px;
}

/* 文章正文区域 */
.article-body {
	margin-bottom: 40px;
}

.article-summary {
	background-color: #f8f9fa;
	border-left: 4px solid #1e69ca;
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 0 5px 5px 0;
}

.article-summary p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.article-text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}
.article-text img {
	display: inline-block !important;
}

.article-text p {
	margin-bottom: 20px;
	text-indent: 2em;
}

.article-text p:last-child {
	margin-bottom: 0;
}

.article-text strong {
	color: #1e69ca;
	font-weight: bold;
}

/* 文章底部区域 */
.article-footer {
	border-top: 1px solid #e0e0e0;
	padding-top: 30px;
}

.article-tags {
	margin-bottom: 30px;
}

.tag-label {
	color: #666;
	font-size: 14px;
	margin-right: 10px;
}

.tag {
	display: inline-block;
	background-color: #f0f0f0;
	color: #666;
	padding: 4px 12px;
	border-radius: 15px;
	text-decoration: none;
	font-size: 12px;
	margin-right: 8px;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}

.tag:hover {
	background-color: #1e69ca;
	color: #ffffff;
	text-decoration: none;
}

/* 文章导航 */
.article-navigation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.nav-item {
	flex: 1;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 5px;
	border: 1px solid #e0e0e0;
}

.nav-item.prev {
	text-align: left;
}

.nav-item.next {
	text-align: right;
}

.nav-label {
	color: #666;
	font-size: 14px;
	display: block;
	margin-bottom: 8px;
}

.nav-item a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.nav-item a:hover {
	color: #1e69ca;
	text-decoration: none;
}

/* 导航下拉菜单样式 - 高优先级 */
.list-header .top-nav ul li .dropdown {
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	background: rgba(255, 255, 255, 0.95) !important;
	min-width: 200px !important;
	height: auto !important;
	border-radius: 6px !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-10px) !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
	z-index: 999999 !important;
	padding: 8px 0 !important;
	display: block !important;
	width: auto !important;
	overflow: visible !important;
	max-width: none !important;
}

.list-header .top-nav ul li:hover .dropdown {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

.list-header .top-nav ul li .dropdown li {
	list-style: none !important;
	height: auto !important;
	line-height: normal !important;
	padding: 0 !important;
	margin: 0 !important;
	display: block !important;
	width: 100% !important;
	float: none !important;
	clear: both !important;
	position: relative !important;
}

.list-header .top-nav ul li .dropdown li a {
	display: block !important;
	padding: 10px 20px !important;
	color: #333 !important;
	font-size: 16px !important;
	font-weight: normal !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
	height: auto !important;
	line-height: normal !important;
}

.list-header .top-nav ul li .dropdown li:last-child a {
	border-bottom: none !important;
}

.list-header .top-nav ul li .dropdown li a:hover {
	background-color: #1e69ca !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

/* 响应式优化 */
@media (max-width: 768px) {
	.list-header .search-box {
		max-width: 280px;
	}
	
	.list-header .search-btn {
		padding: 4px 8px;
		font-size: 10px;
	}
	
	.list-header .search-input {
		font-size: 11px;
	}
	
	.list-header .search-input::placeholder {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.list-header .search-box {
		max-width: 100%;
		margin-top: 10px;
	}
	
	.list-header .search-btn {
		padding: 4px 6px;
		font-size: 9px;
	}
	
	.list-header .search-input {
		font-size: 10px;
	}
	
	.list-header .search-input::placeholder {
		font-size: 10px;
	}
	
	.list-header .top-nav ul {
		flex-wrap: wrap;
		height: auto;
		min-height: 70px;
	}
	
	.list-header .top-nav ul li {
		flex: 1;
		min-width: 120px;
		text-align: center;
	}
	
	.list-header .top-nav ul li a {
		font-size: 16px;
	}
}

/* 导航菜单响应式优化 */
@media (max-width: 768px) {
	.list-header .top-nav ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 5px;
	}
	
	.list-header .top-nav ul li {
		flex: 0 0 auto;
		min-width: 100px;
	}
	
	.list-header .top-nav ul li a {
		font-size: 18px;
		padding: 8px 12px;
	}
}

@media (max-width: 480px) {
	.list-header .top-nav ul li {
		min-width: 80px;
		padding: 0 5px;
	}
	
	.list-header .top-nav ul li a {
		font-size: 14px;
		padding: 6px 8px;
	}
	
	/* 确保在小屏幕上子菜单仍然可见 */
	.list-header .top-nav ul li .dropdown {
		position: absolute !important;
		top: 100% !important;
		left: 0 !important;
		z-index: 999999 !important;
		overflow: visible !important;
		max-width: none !important;
	}
}