* {
	margin: 0;padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
}

body {
	background-color: #f5f7fa;
	color: #333;
	line-height: 1.6;
}
a {
	color: #333333;
	text-decoration: none;
	transition: color 0.3s;
}
a:hover {
	color: #4dabf7;
}
ul{
	list-style: none;
}
ul li{
	transition: color 0.3s;
}
/* 全局容器 */
.container {
	width: 1200px; margin: 0 auto;
}
.site-main {
	background-color: #fff;
}

.site-main .container{
	padding-top: 10px;
}

/* Header部分样式 */
.site-header {
	background: #1a4a8f;
	box-shadow: 0 4px 12px rgba(0, 30, 84, 0.15);
	position: relative;
	/*position: sticky;
    top:0;*/
	z-index: 1000;
}

/* 第一行：会员登录、加入学会 */
.header-top {
	color: #e0e7ff;
	height: 36px;
	line-height: 36px;
	font-size: 14px;
}

.header-top .container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 40px;
}

.header-top a {
	margin-left: 25px;
	color:#e0e7ff;
}

.header-top a:hover {
	color: #e0e7ff;
}

/* 第二行：logo和搜索框 */
.header-middle {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-area {
	display: flex;
	align-items: center;
	justify-content: center;
	width:500px;
}

.logo {
	height: 80px;
	margin-right: 15px;
}

.site-title {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.site-subtitle {
	color: #a3c6ff;
	font-size: 16px;
	margin-top: 5px;
}

.search-area {
	float: right;
	display: flex;
	width:600px;
	align-items: center;
	justify-content: center;
	margin-top: -60px;
}

.search-box {
	display: flex;
	width: 400px;
}

.search-box input {
	flex: 1;
	padding: 10px 15px;
	border: none;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
}

.search-box button {
	padding: 10px 20px;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

/* 第三行：导航菜单 */
.header-bottom {
	background-color: #1a4a8f;
}
.main-nav {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.nav-item {
	flex: 1;
	text-align: center;
}
.nav-link {
	display: block;
	color: #e0e7ff;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
}
.nav-link:hover {
	color: #4dabf7;
	background-color: rgba(77, 171, 247, 0.1);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background-color: #4dabf7;
	transition: width 0.3s;
}

/* 下拉菜单 */
.dropdown-content {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: 1200px;
	height: 440px;
	background-color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	border-top: 3px solid #4dabf7;
	padding: 25px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.nav-item:hover .dropdown-content {
	display: flex;
}

.border-right {
	border-right: 1px solid #e8e8e8;
}
.item-space{
	padding: 0px 10px;
}

.dropdown-image {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.dropdown-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.dropdown-image:hover img {
	transform: scale(1.2);
	cursor: pointer;
}

.dropdown-image .image-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to bottom, #4dabf7,#0a628f);
	color: #fff;
	padding: 10px;
	font-size: 16px;
	font-weight: 300;
}

.news-section {
	margin-bottom: 20px;
}

.news-title {
	color: #0c1b33;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 2px solid #4dabf7;
}

/* 新闻列表样式 */
.feature-list {
	margin: 0;
	padding: 0;
	width: 100%;
}

.feature-list li {
	padding: 8px 0;
	border-bottom: 1px dashed #e8e8e8;
	transition: all 0.3s;
	position: relative;
//height: 32px; /* 固定高度防止跳动 */
	line-height: 24px;
	overflow: hidden;
	text-align: left;
}

.feature-list li:last-child {
	border-bottom: none;
}
.feature-list li:hover {
	background-color: #f8f9fa;
	padding-left: 8px;
	padding-right: 8px;
	border-radius: 4px;
}
.feature-list li:before {
	content: "▶";
	color: #4dabf7;
	margin-right: 10px;
	font-size: 12px;
	flex-shrink: 0;
}
.feature-list li a{
	color: #333;
}

.feature-list-simple{
	height:350px; overflow: auto;
}
.feature-list-simple li {
	padding: 6px 0;
}
.feature-list-simple li:before{
//content: "◆" !important;
	content: "" !important;
	padding-left: 0px;
}
.feature-list-simple li:hover {
	padding-left: 0px;
	padding-right: 0px;
}

.feature-list-simple a:hover {
	color: #4dabf7;
}

.feature-link {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-right: 10px;
	font-size: 14px;
	display: inline-block;
	max-width: 80%; /* 为日期留出空间 */
	vertical-align: middle;
}
.feature-list-simple .feature-link{
	max-width: 93% !important;
}

.feature-link:hover {
	color: #4dabf7;
}

.feature-date {
	color: #888;
	font-size: 13px;
	min-width: 65px;
	position: absolute;
	right: 10px;
	top: 8px;
	white-space: nowrap;
}

/**改善滚动条*/
.feature-list {
	scrollbar-width: thin;
	scrollbar-color: #4dabf7 transparent;
}
.feature-list::-webkit-scrollbar {
	width: 4px;
}
.feature-list::-webkit-scrollbar-track {
	background: transparent;
}
.feature-list::-webkit-scrollbar-thumb {
	background: #4dabf7;
	border-radius: 4px;
}
.feature-list::-webkit-scrollbar-thumb:hover {
	background: #4dabf7;
}

/* Slider部分 */
.site-slider {
	background: rgba(77, 171, 247, 0.1);
	padding: 20px 0;
	margin-top: -1px;
	position: relative;
	z-index: 1;
}

.slider-container {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.layui-carousel img{
	width:100%;
	height:400px;
	max-height: 400px;
	object-fit: cover;
	border-radius: 4px;
}

/* 栏目内容区域 */
.content-block {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 15px;
	margin-bottom: 30px;
	border-top: 4px solid #4dabf7;
}

.block-title {
	color: #0c1b33;
	font-size: 22px;
	font-weight: 600;

	padding-bottom: 10px;
	border-bottom: 1px solid #e8e8e8;
}
.blue{
	color: #4dabf7;
}

.block-content {
	color: #555;
	line-height: 1.8;
	padding-top: 10px;
}


/**分类切换tab***/
.category-tabs {
	display: flex;
	gap: 5px;
	justify-content: center ;
}
.category-tab {
	padding: 8px 24px;
	color: #666;
	border-radius: 4px;
	cursor: pointer;
	font-size: 22px;
	font-weight: 600;
	transition: all 0.3s;
}
.category-tab:hover {
	background-color: #e7f5ff;
	color: #339af0;
}
.category-tab.active {
	background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
	color: #fff;
	border-color: #4dabf7;
	box-shadow: 0 3px 8px rgba(77, 171, 247, 0.3);
}
.category-tab.active a{
	color: #fff;
}
.category-tab a{
	color: #666;
}


.category-content {
	display: none;
}
.category-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

/*service**/
/* 学会服务通栏展示 */
.services-section {
	margin: 10px 0px 20px 0px;
	width: 100%;
}

.services-title {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #0c1b33;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

.services-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, #0c1b33, #4dabf7, #0c1b33);
	border-radius: 2px;
}

.services-subtitle {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
/* service grid*/
/* 服务网格 - 兼容IE8版本 */
.services-grid {
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}
.service-grid-sml{
	width: 600px !important;
}


.service-item {
	background-color: #fff;
	border-radius: 10px;
	padding: 25px 10px;
	text-align: center;
	border: 1px solid #e8e8e8;
	float: left;
	width: 280px; /* (1200px - 20px*4) / 5 = 216px */
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 20px;
	position: relative;

	box-sizing: border-box;
}
.service-item-sml{
	width:130px !important;
	margin-bottom: 10px;
	overflow: hidden;
	padding: 15px 10px;
}

.service-item-banner{
	width:260px !important;
	margin-bottom: 10px;
	min-height: 190px;
	overflow: hidden;
	padding: 10px ;
}

/* 图标容器 */
.service-icon {
	width: 70px;
	height: 70px;
	/* IE8圆角 - 用方形或图片替代 */
	border-radius: 50px;
	margin: 0 auto 20px auto;
	font-size: 32px;
	color: #fff;
	position: relative;
	overflow: hidden;
	text-align: center;
	line-height: 70px;
}
.service-icon i{
	font-size: 36px;
}

.service-item-banner .service-icon{
	width: 60px;
	height: 60px;
	line-height: 60px;
	margin: 0 auto 10px auto !important; ;
}
/* 服务标题 */
.service-title {
	font-size: 18px;
	font-weight: bold;
	color: #0c1b33;
	margin-bottom: 10px;
	line-height: 50px;
	overflow: hidden;
}
.service-item-banner .service-title{
	line-height:30px !important; margin-bottom: 10px;
}
.service-item-sml .service-title{
	margin-bottom: 10px;
}

/* 让标题垂直居中（IE8兼容方式） */
.service-title span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1.4;
	max-width: 100%;
}

.service-title:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

/* 服务描述 */
.service-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 20px;
	overflow: hidden;
	min-height: 60px;

}
.service-subitem{
	display: block;
	text-align: center;
	width:100%;
	padding: 10px 0px;
	height: 80px;
	border-top: 1px dashed #e8e8e8;
}
.service-item-banner .service-subitem{
	height: 40px !important;padding: 0px;
}

.service-subitem li{
	display: inline-block; /* IE8支持 */
	*display: inline; /* IE6/7 hack，对IE8也有效 */
	zoom: 1; /* 触发IE的hasLayout */
	padding: 2px 5px;

}
.service-subitem li a{
	color: #666;
	font-size: 15px;
	padding: 2px 5px;
}
.service-item-banner .service-subitem li a{
	font-size: 14px; line-height: 28px;
}

.service-subitem li a:hover{
	color: #4dabf7;
	font-weight: 600;
}

/* 清除每行浮动的占位元素 */
.services-row-clear {
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}

/* IE8 hover效果 - 使用JavaScript或CSS表达式 */
.service-item:hover {
	border-color: #4dabf7;
	background-color: #f9fcff;
}




/* 不同服务的图标颜色 */
.service-icon-1 { background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%); }
.service-icon-2 { background: linear-gradient(135deg, #5c7cfa 0%, #4c6ef5 100%); }
.service-icon-3 { background: linear-gradient(135deg, #51cf66 0%, #40c057 100%); }
.service-icon-4 { background: linear-gradient(135deg, #20c997 0%, #12b886 100%); }
.service-icon-5 { background: linear-gradient(135deg, #ff922b 0%, #fd7e14 100%); }
.service-icon-6 { background: linear-gradient(135deg, #c59c00 0%, #c69900 100%); }
.service-icon-7 { background: linear-gradient(135deg, #ff6b6b 0%, #fa5252 100%); }
.service-icon-8 { background: linear-gradient(135deg, #cc5de8 0%, #be4bdb 100%); }

/****党建强会图片***/
.adHorImg {
	width: 100%;
	//height: 150px;
	margin: 10px auto;
	border-radius: 4px;
}
.adHorImg:hover {
	transform: scale(1.01);
	cursor: pointer;
}

/*********学会出版物*****************/
.journal-content {
	display: flex;
	gap: 10px;
	padding-top: 30px;
	padding-bottom: 30px;
	height: 240px;
	min-height: 240px;

}

.journal-content:hover {
	border-radius: 8px;
	border: 1px solid #4dabf7;
	background: #f9fcff;
	padding-top: 30px;
	padding-bottom: 30px;
}

.journal-image {
	flex: 0 0 120px;

}

.journal-image img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

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

.journal-info {
	flex: 1;
	padding-left: 10px;
}

.journal-details {
	list-style: none;
	font-size: 12px;
}

.journal-details li {
	padding: 3px 0;
	border-bottom: 1px dashed #e8e8e8;
	display: flex;
	color: #555;
	align-items: flex-start;
}

.journal-details li:last-child {
	border-bottom: none;
}



/* 单位会员logo展示 - 兼容IE8版本 */
.member-logos {
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	clear: both;
}

.member-logo-item {
	background-color: #fff;
	border-radius: 8px;
	padding: 10px;
	float: left;
	width: 135px; /* (1200px - 15px*7) / 8 = 135px */
	height: 70px;
	margin-right: 15px;
	margin-bottom: 15px;
	border: 1px solid #e8e8e8;
	text-align: center;
	box-sizing: border-box;
	position: relative;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFFFFFFF', GradientType=0); /* IE8渐变兼容 */
}

/* 每行第8个清除右边距 */
.member-logo-item:nth-child(8n) {
	//margin-right: 0;
}



/* 为了在HTML中手动添加清除浮动的元素 */
.member-logos:after {
	content: "";
	display: table;
	clear: both;
}

/* 图片容器 */

.member-logo-item img {
	max-width: 100%;
	max-height: 50px;
	width: auto;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}

/* IE8兼容的hover效果 */
.member-logo-item:hover {
	border-color: #4dabf7;
//margin-top: -5px; /* 替代transform: translateY(-5px) */
	margin-bottom: 5px; /* 保持总高度不变 */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	/* IE8阴影兼容 - 使用滤镜 */
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#333333', Direction=135, Strength=3);
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color='#333333', Direction=135, Strength=3)";
}

/* 页脚样式 */
.site-footer {
	background-color: #1A4A8F;
	color: #fff;
	padding: 30px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.footer-logo {
	flex: 1;
	min-width: 250px;
	padding-left: 20px;
}

.footer-logo img {
	height: 80px;
}

.footer-logo h3 {
	color: #fff;
	font-size: 20px;
	margin: 5px 0px;
	font-weight: 600;
}

.footer-logo p {
	color: #a0aec0;
	font-size: 14px;
	margin: 0;
}

/* 二维码区域 */
.footer-qrcodes {
	display: flex;
	gap: 30px;
	flex: 1;
	min-width: 200px;
	justify-content: center;
	padding-right: 20px;
}

.qrcode-item {
	text-align: center;
	flex: 0 0 auto;
}

.qrcode-item img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	border-radius: 8px;
	margin-bottom: 8px;
	padding: 3px;
	background: #fff;
	border: 1px solid #fff;
}

.qrcode-item p {
	color: #e2e8f0;
	font-size: 14px;
	margin: 0;
	text-align: center;
}

/* 联系信息 */
.footer-contact {
	flex: 2;
	min-width: 250px;
	padding-top: 20px;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #e2e8f0;
}

.contact-item i {
	margin-right: 10px;
	color: #4dabf7;
	font-size: 18px;
}

.contact-item span {
	font-size: 14px;
}

/* 底部版权 */
.footer-bottom {
	border-top: 1px solid #a0aec0;
	padding-top: 20px;
	text-align: center;
	color: #a0aec0;
	font-size: 14px;
}

.footer-bottom a {
	color: #a0aec0;
	text-decoration: none;
	margin: 0 10px;
}


/*************************二级页面样式********************************/


/* 面包屑导航 */
.breadcrumb {
	background-color: #f8f9fa;
	padding: 15px 0px 15px 50px;
	border-bottom: 1px solid #e8e8e8;
}
.breadcrumb .container {
	display: flex;
	align-items: center;
}

.breadcrumb a {
	color: #4dabf7;
}

.breadcrumb span {
	color: #666;
	margin: 0 8px;
}
.breadcrumb .current {
	color: #0c1b33;
	font-weight: 600;
}



/* 左侧新闻分类样式 */
.news-categories {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 25px;
	margin-bottom: 30px;
}

.categories-title {
	font-size: 20px;
	font-weight: 600;
	color: #0c1b33;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid #4dabf7;
	position: relative;
}

.categories-title:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background-color: #ff6b6b;
}

.categories-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.category-btn {
	padding: 14px 20px;
	background-color: #f8f9fa;
	color: #333;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	width:100%;
}
.category-btn:hover{
	background-color: #e7f5ff;
	color: #339af0;
	border-color: #d0e7ff;

}

.category-btn.active {
	background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
	color: #fff;
	border-color: #4dabf7;
	box-shadow: 0 4px 10px rgba(77, 171, 247, 0.2);
	justify-content: space-between;
}

.category-count {
	background-color: rgba(255, 255, 255, 0.2);
	color: inherit;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}
.category-btn.active .category-count {
	background-color: rgba(255, 255, 255, 0.3);
}

/* 右侧新闻列表样式 */
.news-list-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 30px;
	margin-bottom: 30px;
}

.news-list-title {
	font-size: 24px;
	font-weight: 600;
	color: #0c1b33;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 3px solid #4dabf7;
	position: relative;
}

.news-list-title:after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100px;
	height: 3px;
	background-color: #ff6b6b;
}

/* 新闻项样式 */
.news-item {
	display: flex;
	margin-bottom: 25px;
	padding: 15px;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s;
}

.news-item:hover {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 15px;
}

.news-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.news-date {
	background-color: #f0f7ff;
	color: #4dabf7;
	width: 70px;
	height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	margin-right: 20px;
	flex-shrink: 0;
}

.news-date .day {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 8px;
	border-bottom: 1px solid #4dabf7;
}

.news-date .month {
	font-size: 14px;
	margin-top: 5px;
}

.news-content {
	flex: 1;
}

.news-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.4;
}

.news-title a {
	color: #0c1b33;
	text-decoration: none;
	transition: color 0.3s;
}

.news-title a:hover {
	color: #4dabf7;
}

.news-meta {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 14px;
	color: #666;
}

.news-category {
	background-color: #e7f5ff;
	color: #339af0;
	padding: 4px 12px;
	border-radius: 12px;
	margin-right: 15px;
	font-size: 12px;
	font-weight: 500;
}

.news-source {
	display: flex;
	align-items: center;
}

.news-source i {
	margin-right: 5px;
	color: #555;
}

.news-excerpt {
	color: #555;
	line-height: 1.6;
	font-size: 15px;
	margin-bottom: 15px;
}

.news-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.news-tag {
	background-color: #f8f9fa;
	color: #666;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	border: 1px solid #e8e8e8;
	transition: all 0.3s;
}

.news-tag:hover {
	background-color: #e7f5ff;
	color: #339af0;
	border-color: #d0e7ff;
}

/* 分页样式 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px;
}

.pagination-list {
	display: flex;
	list-style: none;
	gap: 8px;
}

.pagination-item {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f8f9fa;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
	color: #666;
}

.pagination-item:hover {
	background-color: #e7f5ff;
	color: #339af0;
	transform: translateY(-5px);
}

.pagination-item.active {
	background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
	color: #fff;
	box-shadow: 0 3px 8px rgba(77, 171, 247, 0.3);
}

.pagination-prev, .pagination-next {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f8f9fa;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	margin: 0 10px;
}

.pagination-prev:hover, .pagination-next:hover {
	background-color: #e7f5ff;
	color: #339af0;

}

/* 回到顶部按钮 */
.back-to-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(77, 171, 247, 0.3);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(77, 171, 247, 0.4);
}


/***新闻详情页****/

/* 左侧新闻详情样式 */
.news-detail-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 35px;
}
.news-detail-container-wide {
	padding: 15px !important;
}

.news-detail-header {
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 2px solid #f0f0f0;
}

.news-detail-title {
	font-size: 28px;
	font-weight: 700;
	color: #0c1b33;
	margin-bottom: 25px;
	line-height: 1.4;
}

.news-detail-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	color: #666;
	font-size: 14px;
}

.news-detail-category {
	background-color: #e7f5ff;
	color: #339af0;
	padding: 6px 15px;
	border-radius: 15px;
	font-weight: 500;
	font-size: 13px;
}

.news-detail-views {
	display: flex;
	align-items: center;
}

.news-detail-views i {
	margin-right: 8px;
	color: #4dabf7;
}
.news-detail-views a{
	color:#666;
}

/* 简化的新闻内容样式 - 一大段图文混排 */
.news-detail-content {
	line-height: 1.8;
	color: #333;
	font-size: 16px;
	margin-bottom: 40px;

}

.news-detail-content p {
	margin-bottom: 25px;
	text-align: justify;
	line-height: 1.8;
	//text-indent: 2em;
        font-family: 宋体;
}
.news-detail-content table p {
	text-indent: 0 !important;
}
.news-detail-content p img {
	max-width: 90%;
	border-radius: 8px;
	margin: 15px auto;
}
.news-detail-content a{
	color:#4dabf7;
}
.quote-box {
	background-color: #f0f7ff;
	border-left: 4px solid #4dabf7;
	padding: 20px !important;
	margin: 30px 0;
	border-radius: 6px;
	font-size: 16px;
	line-height: 1.7;
	color: #555;
}



.news-detail-footer {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #f0f0f0;
}

.news-tags-container {
	padding-bottom: 20px;
	border-bottom: 1px solid #e8e8e8;
}

.news-tags-title {
	font-size: 16px;
	font-weight: 600;
	color: #0c1b33;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.news-tags-title i {
	color: #4dabf7;
	margin-right: 10px;
}

.news-tag-item {
	display: inline-block;
	background-color: #f0f7ff;
	color: #339af0;
	padding: 8px 18px;
	border-radius: 20px;
	margin-right: 12px;
	margin-bottom: 12px;
	font-size: 14px;
	transition: all 0.3s;
	text-decoration: none;
}

.news-tag-item:hover {
	background-color: #4dabf7;
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}

.news-navigation {
	display: flex;
	justify-content: space-between;
	padding-top: 25px;

}

.news-nav {
	display: flex;
	align-items: center;
	color: #4dabf7;
	text-decoration: none;
	transition: all 0.3s;
	max-width: 45%;
	padding: 12px 20px;
	border-radius: 8px;
	background-color: #f8f9fa;
}

.news-nav:hover{
	background-color: #e7f5ff;
	color: #339af0;
	transform: translateY(-2px);
}

.news-nav i {
	margin: 0px 15px;
	font-size: 18px;
}


.news-nav span{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 15px;
}

/* 右侧相关新闻样式 */
.related-news-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 30px;
}

.related-title {
	font-size: 22px;
	font-weight: 600;
	color: #0c1b33;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 3px solid #4dabf7;
	position: relative;
}

.related-title:after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100px;
	height: 3px;
	background-color: #ff6b6b;
}

.related-news-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.related-news-item {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	transition: all 0.3s;
	border: 1px solid #e8e8e8;
	margin-bottom: 10px;
}

.related-news-item:hover {
	background-color: #fff;
	border-color: #4dabf7;
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.related-news-category {
	background-color: #e7f5ff;
	color: #339af0;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}

.related-news-date {
	font-size: 13px;
	color: #888;
	display: flex;
	align-items: center;
}

.related-news-date i {
	color: #4dabf7;
	margin-right: 5px;
}

.related-news-title {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.4;
}

.related-news-title a {
	color: #0c1b33;
	text-decoration: none;
	transition: color 0.3s;
}

.related-news-title a:hover {
	color: #4dabf7;
}

.thumbImg{
	width:60px; height: 60px;   border-radius: 4px;
}

/***搜索突出关键字****/
.keyWord{
	font-size:1.2em; padding: 2px 5px; background-color:#FF6B6B;color:#fff;border-radius: 4px;margin: 0px 5px
}
