/* 现代CSS重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	text-align: center;
	background: #f5f5f5;
}

body {
	width: 100%;
	text-align: left;
	margin: 0;
	background: #f5f5f5;
	font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #333;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 2px 16px rgba(0,0,0,0.08);
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

/* 确保所有内容区域居中 */
.main-content,
.topics-section {
	width: 100%;
	margin: 0 auto;
}

/* 主内容区域 */
.main-content {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.left-content {
	flex: 1;
	margin-right: 20px;
}

.right-sidebar {
	width: 350px;
	flex-shrink: 0;
}

/* 专题区域 */
.topics-section {
	display: flex;
	justify-content: space-between;
	padding: 0 20px 20px;
}

.topic-card {
	flex: 1;
	margin: 0 10px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 200, 83, 0.1);
}

.topic-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	border-color: rgba(0, 200, 83, 0.3);
}

.topic-card:first-child {
	margin-left: 0;
}

.topic-card:last-child {
	margin-right: 0;
}

.topic-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #007bff;
}

.topic-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topic-list li {
	padding: 8px 0;
	border-bottom: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.topic-list li:hover {
	padding-left: 10px;
	color: #007bff;
}

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

/* 推荐资讯区域 */
.recommended-section {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	width: 100%;
	box-sizing: border-box;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.section-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #007bff;
}

/* 轮播图区域 */
.featured-section {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

td {
	font: 14px/1.6 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
	color: #333;
}

input {
	font: 14px 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
	outline: none;
	transition: all 0.3s ease;
}

input:focus {
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

p,ul,ol,li,form {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* 全局链接样式 */
a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #0056b3;
	text-decoration: none;
}



/* 确保非导航栏链接在白色背景上正常显示 */
.container a {
	color: #333333 !important;
	text-decoration: none;
	transition: color 0.3s ease;
}

.container a:hover {
	color: #ff0000 !important;
	text-decoration: none;
}

.content {
}

.sider {
	width: 300px;
}

.homepage .sider {
	width: 230px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	body {
		max-width: 100%;
		box-shadow: none;
	}
	
	.sider,
	.homepage .sider {
		width: 100%;
	}
}

/** 页头区 **/
.top {
	border-bottom: 1px solid #00c853;
	background: #00c853;
}

.top td {
	background: #00c853;
}

.top table td {
	padding: 8px 15px;
}

.top .inputText {
	height: 36px;
	border: 1px solid #00a040;
	border-radius: 4px;
	padding: 0 10px;
	font-size: 14px;
	background-color: #00a040;
	color: #ffffff;
}

.top .inputSub {
	height: 36px;
	background: #00a040;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 0 15px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s ease;
}

.top .inputSub:hover {
	background: #008030;
}

/** 导航 **/
.nav {
	background: #007bff;
	border-radius: 0;
}

/* 导航栏样式 */
.main-nav {
	background: linear-gradient(135deg, #00c853 0%, #00a040 100%);
	padding: 0;
	margin: 0;
	width: 100%;
	display: block;
	clear: both;
	float: none;
	position: relative;
	z-index: 9999;
	visibility: visible;
	opacity: 1;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
	min-height: 48px;
}

.main-nav .container {
	max-width: 1200px;
	margin: 0 auto !important;
	padding: 0 20px;
	float: none;
	background-color: transparent;
	box-shadow: none !important;
	display: flex;
	align-items: stretch;
	width: 100%;
}

.main-nav .nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	float: none;
	visibility: visible;
	opacity: 1;
	flex-wrap: wrap;
}

/* 所有导航列表项的样式 */
.main-nav .nav-list li,
.nav-item {
	margin: 0 5px;
	padding: 0;
	float: none;
	display: inline-block;
	visibility: visible;
	opacity: 1;
	position: relative;
}

/* 所有导航链接的样式 */
.main-nav .nav-list li a,
.nav-item a {
	color: #ffffff !important;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 12px 20px;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	float: none;
	visibility: visible;
	opacity: 1;
	position: relative;
	z-index: 9999;
	white-space: nowrap;
	background-color: transparent;
	height: 100%;
	box-sizing: border-box;
}

/* 导航链接悬停效果 */
.main-nav .nav-list li a:hover,
.nav-item a:hover {
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	border-radius: 4px;
}

/* 激活状态的导航链接 */
.main-nav .nav-list li.curr a,
.nav-item.curr a {
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.2);
	font-weight: 700;
	border-radius: 4px;
}

/* 激活状态的导航链接下划线 */
.main-nav .nav-list li.curr a::after,
.nav-item.curr a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 2px;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.nav .nav_global {
}

.nav .nav_global ul {
	padding: 0 15px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.nav .nav_global li {
	cursor: pointer;
	float: left;
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	line-height: 50px;
	font-weight: 600;
	color: #FFF;
	background: none;
	padding-right: 0;
	margin-right: 2px;
	transition: all 0.3s ease;
}

.nav .nav_global li:hover {
	background: rgba(255,255,255,0.1);
}

.nav .nav_global li a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 0 20px;
	transition: all 0.3s ease;
}

.nav .nav_global li a:hover {
	color: #fff!important;
	text-decoration: none;
}

.nav .nav_global li.curr {
	background: rgba(255,255,255,0.2);
}

.nav .nav_global li.curr a {
	color: #fff;
	background: none;
}

.nav_sub {
	padding: 10px 15px;
	background: #f8f9fa;
	border-bottom: 1px solid #e0e0e0;
}

.nav_sub a {
	padding: 0 8px;
	font-size: 13px;
	color: #666;
}

.nav_sub a:hover {
	color: #007bff;
}

/* 子栏目导航菜单距离调整 */
#tabnav_div_1 {
}

#tabnav_div_2 {
	padding-left: 100px;
}

#tabnav_div_3 {
	padding-left: 200px;
}

#tabnav_div_4 {
	padding-left: 300px;
}

#tabnav_div_5 {
	padding-left: 400px;
}

#tabnav_div_6 {
	padding-left: 500px;
}

#tabnav_div_7 {
	padding-left: 600px;
}

#tabnav_div_8 {
	padding-right: 40px;
	text-align: right;
}

/* 页尾区 */
.links {
	margin-top: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-top: 1px solid #e0e0e0;
}

.links hr {
	color: #e0e0e0;
	margin: 15px 0;
}

.search {
	background: #007bff;
	color: #fff;
	padding: 20px;
	border-radius: 4px;
	margin: 20px 0;
}

.search td, .search a {
	color: #fff;
}

.search a:hover {
	color: #f8f9fa!important;
	text-decoration: underline;
}

.copyright {
	margin: 20px 0;
	text-align: center;
	color: #666;
	font-size: 13px;
	padding: 20px;
	background: #f8f9fa;
	border-top: 1px solid #e0e0e0;
}

/* 页头样式 */
.site-header {
	width: 100%;
}

.header-container {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	background-color: #00c853;
}

/* 确保容器类始终居中 */
.container {
	max-width: 1200px;
	margin: 0 auto !important;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	width: 100%;
}

/* 确保组合类也居中 */
.container.header-container {
	max-width: 1200px;
	margin: 0 auto !important;
	width: 100%;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo-section {
	flex-shrink: 0;
}

.info-section {
	flex-grow: 1;
	text-align: right;
}







/* 底部样式 */
.footer {
	background: linear-gradient(135deg, #00c853 0%, #00a040 100%);
	padding: 30px 0;
	margin-top: 30px;
	width: 100%;
	box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.3) 100%);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.footer-qrcodes {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.qrcode-item {
	text-align: center;
	margin: 0 30px;
}

.qrcode-img {
	width: 120px;
	height: 120px;
	background-color: #fff;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.qrcode-img:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.qrcode-text {
	color: #fff;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 500;
}

.footer-copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-copyright a {
	color: #fff;
	text-decoration: none;
	margin: 0 10px;
	transition: color 0.3s ease;
}

.footer-copyright a:hover {
	color: #f8f9fa;
	text-decoration: underline;
}

.gongan-img {
	width: 20px;
	height: 20px;
	margin: 0 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.footer-qrcodes {
		flex-direction: column;
	}
	
	.qrcode-item {
		margin: 15px 0;
	}
	
	.footer-copyright {
		flex-direction: column;
		text-align: center;
		padding: 20px 10px;
	}
	
	.footer-copyright a {
		margin: 5px 0;
	}
	
	.gongan-img {
		margin: 10px 0;
	}
}

/** 公共定义 **/
.title {
	background: #f8f9fa;
	color: #333;
	border: 1px solid #e0e0e0;
	border-bottom: none;
	border-radius: 4px 4px 0 0;
}

.title td {
	font-size: 16px;
	line-height: 40px;
	color: #333;
	padding: 0px 15px;
	font-weight: 600;
}

.box {
	border: 1px solid #e0e0e0;
	border-width: 0 1px 1px 1px;
	border-radius: 0 0 4px 4px;
	padding: 15px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.box ul {
	list-style: none;
	padding: 0;
}

.box ul li {
	background: none;
	line-height: 1.8;
	padding: 6px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

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

.box ul li:hover {
	padding-left: 10px;
	background: #f8f9fa;
	border-radius: 4px;
}

.no_doc ul li {
	background: none;
	padding-left: 0px;
}

.no_doc ul li:hover {
	padding-left: 10px;
}

.box ul li p {
	margin: 0 0 8px;
	padding: 0 0 8px;
	color: #666;
	border-bottom: 1px dashed #e0e0e0;
}

.box ul li strong {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}

.rank {
	margin: 0px;
	padding: 15px;
}

.rank li {
	padding-left: 25px;
	line-height: 30px;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.rank li:hover {
	padding-left: 30px;
	background: #f8f9fa;
}

.rank li.no1 {
	background: #f8f9fa url(../images/1.gif) no-repeat 8px center;
}

.rank li.no2 {
	background: #f8f9fa url(../images/2.gif) no-repeat 8px center;
}

.rank li.no3 {
	background: #f8f9fa url(../images/3.gif) no-repeat 8px center;
}

.rank li.no4 {
	background: #f8f9fa url(../images/4.gif) no-repeat 8px center;
}

.rank li.no5 {
	background: #f8f9fa url(../images/5.gif) no-repeat 8px center;
}

.rank li.no6 {
	background: #f8f9fa url(../images/6.gif) no-repeat 8px center;
}

.rank li.no7 {
	background: #f8f9fa url(../images/7.gif) no-repeat 8px center;
}

.rank li.no8 {
	background: #f8f9fa url(../images/8.gif) no-repeat 8px center;
}

.rank li.no9 {
	background: #f8f9fa url(../images/9.gif) no-repeat 8px center;
}

.rank li.no10 {
	background: #f8f9fa url(../images/10.gif) no-repeat 8px center;
}

.news_title {
	margin-top: 15px;
}

.news_title strong {
	background: #f8f9fa;
	display: block;
	padding-left: 20px;
	line-height: 40px;
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	border-radius: 4px;
	border-left: 4px solid #007bff;
}

.news_title p {
	margin: 10px 0;
	padding: 10px;
	color: #666;
	border-bottom: 1px dashed #e0e0e0;
	background: #f8f9fa;
	border-radius: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 推荐资讯简介样式 */
.recommended-list li p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 5px 0 0;
	font-size: 14px;
	color: #666;
}

/* 推荐资讯标签样式 */
.recommended-list li {
	margin-bottom: 15px;
	position: relative;
	display: flex;
	align-items: center;
	line-height: 1.6;
}

.recommended-list li.no1 p, 
.recommended-list li.no2 p, 
.recommended-list li.no3 p, 
.recommended-list li.no4 p, 
.recommended-list li.no5 p {
	display: inline-block;
	padding: 4px 12px;
	margin-right: 15px;
	border-radius: 4px;
	font-size: 13px;
	color: #fff;
	font-weight: 700;
	margin: 0;
	flex-shrink: 0;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.recommended-list li.no1 p {
	background-color: #9c27b0;
}

.recommended-list li.no2 p {
	background-color: #2196f3;
}

.recommended-list li.no3 p {
	background-color: #f44336;
}

.recommended-list li.no4 p {
	background-color: #ff9800;
}

.recommended-list li.no5 p {
	background-color: #ff9800;
}

.recommended-list li a {
	color: #333;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	transition: color 0.3s ease, transform 0.3s ease;
	flex: 1;
	line-height: 1.4;
}

.recommended-list li a:hover {
	color: #ff0000;
	transform: translateX(2px);
}

.focus {
	margin-top: 20px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.focus strong {
	font-size: 18px;
	line-height: 50px;
	margin-bottom: 0;
	text-align: center;
	display: block;
	border-bottom: 1px solid #e0e0e0;
	background: #f8f9fa;
	color: #333;
	font-weight: 600;
}

.margin_top {
	margin-top: 20px;
}

.inputText {
	border: 1px solid #ced4da;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.inputText:focus {
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.banner_ad {
	padding: 15px;
}

.picText {
	margin-bottom: 20px;
	background: #f8f9fa;
	padding: 15px;
	border-radius: 4px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.picText:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.picText strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.picList {
	padding: 15px 0;
}

.picList table td img {
	margin-bottom: 10px;
	border-radius: 4px;
	transition: transform 0.3s ease;
}

.picList table td img:hover {
	transform: scale(1.02);
}

.tprice span {
	text-decoration: line-through;
	color: #999;
}

.price {
	color: #dc3545;
	font-weight: 600;
	font-size: 18px;
}

/* tab选项卡 */
.tbtncon {
	height: 40px;
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-bottom: none;
	border-radius: 4px 4px 0 0;
	display: flex;
	align-items: center;
}

.tbtn1 {
	font-size: 14px;
	font-weight: normal;
	height: 40px;
	border: 1px solid #e0e0e0;
	border-radius: 4px 4px 0 0;
}

.tbtncon li {
	border: none;
	color: #666;
	cursor: pointer;
	display: block;
	float: left;
	text-align: center;
	text-decoration: none;
	width: 100px;
	height: 39px;
	line-height: 39px;
	margin-right: 2px;
	border-radius: 4px 4px 0 0;
	transition: all 0.3s ease;
}

.tbtncon li:hover {
	text-decoration: none;
	background: rgba(0,123,255,0.1);
	color: #007bff;
}

.tbtncon li.curr {
	background: #fff;
	border-bottom: 2px solid #007bff;
	cursor: default;
	color: #007bff;
	font-weight: 600;
}

/* 频道和列表页 */
.position {
	background: #f8f9fa;
	color: #333;
	border: 1px solid #e0e0e0;
	border-bottom: none;
	margin-bottom: 20px;
	border-radius: 4px 4px 0 0;
}

.position td {
	line-height: 40px;
	padding: 0px 15px;
	font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
	font-size: 14px;
}

.channle .box {
	margin-bottom: 20px;
}

.listpage .news_list .box {
	border-width: 1px;	
	padding: 15px;
	border-radius: 4px;
}

.listpage .list_content .box {
	border-width: 1px;	
	padding: 20px;
	border-radius: 4px;
}

.listpage .news_list .box ul {
	border-bottom: 1px dashed #e0e0e0;
	padding-bottom: 10px;
}

.news_list .box ul li {
	position: relative;
	clear: both;
	padding: 12px 0;
	line-height: 1.6;
	height: auto;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.news_list .box ul li:hover {
	background: #f8f9fa;
	padding-left: 10px;
	border-radius: 4px;
}

.news_list .box ul li:last-child {
	border-bottom: none;
}

.news_list .box ul li a {
	font-size: 15px;
	display: block;
	margin-right: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.news_list .box ul li a:hover {
	color: #007bff;
}

.news_list .box ul li span {
	font-size: 13px;
	position: absolute;
	right: 0;
	top: 12px;
	color: #999;
	white-space: nowrap;
}

.flash_list .line_bottom {
	color: #666;
	margin-bottom: 15px;
	border-bottom: 1px dashed #e0e0e0;
	padding-bottom: 10px;
}

.flash_list .flashsay {
	color: #666;
	line-height: 1.6;
}

.movie_list .line_bottom {
	color: #666;
	margin-bottom: 15px;
	border-bottom: 1px dashed #e0e0e0;
	padding-bottom: 10px;
}

.movie_list .titlepic img {
	border: 1px solid #e0e0e0;
	padding: 8px;
	border-radius: 4px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie_list .titlepic img:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shop_list .line_bottom {
	color: #666;
	margin: 15px 0;
	border-bottom: 1px dashed #e0e0e0;
	padding-bottom: 10px;
}

.shop_list .line_bottom table {
	margin-bottom: 15px;
}

.photo_list .line_bottom {
	color: #666;
	margin: 15px 0;
	border-bottom: 1px dashed #e0e0e0;
	padding-bottom: 10px;
}

.photo_list .line_bottom table {
	margin-bottom: 15px;
}

.info_list .line_bottom {
	color: #666;
	margin: 15px 0;
	border-bottom: 1px dashed #e0e0e0;
	padding-bottom: 10px;
}

.info_list .line_bottom .titlepic {
	width: 120px;
}

.info_list .titlepic img {
	border: 1px solid #e0e0e0;
	padding: 5px;
	border-radius: 4px;
	transition: transform 0.3s ease;
}

.info_list .titlepic img:hover {
	transform: scale(1.05);
}

.info_list .line_bottom .click {
	color: #dc3545;
	font-weight: 600;
}

.info_list .line_bottom .smalltext {
	color: #666;
	font-size: 13px;
}

/* 内容页 */
.showpage .main .box {
	border-width: 1px;
	border-radius: 4px;
	padding: 20px;
}

.news .main .box {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
}

.info .main .box {
	padding: 20px;
	border-radius: 4px;
}

.showpage .main .title_info {
	margin-top: 20px;
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 4px;
	margin-bottom: 20px;
}

.showpage .main .title_info h1 {
	font-size: 28px;
	line-height: 1.3;
	margin: 0 0 15px;
	padding: 0;
	color: #333;
	font-weight: 700;
}

.showpage .main .title_info .info_text {
	border-bottom: none;
	line-height: 1.6;
	padding-bottom: 0;
	color: #666;
	font-size: 14px;
}

.showpage .digg {
	background: #f8f9fa;
	width: 80px;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 10px;
	text-align: center;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.showpage .digg:hover {
	background: #e9ecef;
}

.showpage .digg td {
	text-align: center;
	padding: 5px;
}

.showpage .digg .diggnum {
	height: 40px;
	font-size: 18px;
	line-height: 40px;
	font-weight: bold;
	color: #007bff;
}

.showpage .digg .diggit {
	height: 36px;
	line-height: 36px;
	cursor: pointer;
	transition: color 0.3s ease;
}

.showpage .digg .diggit:hover {
	color: #007bff;
}

.showpage .main #text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	padding: 20px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
}

.showpage .main #text p {
	margin: 1.5em 0;
	text-align: justify;
}

.showpage #plpost {
	margin-top: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.showpage #plpost .title {
	border: 0px solid #e0e0e0;
	background: #f8f9fa;
	border-radius: 4px 4px 0 0;
}

.showpage #plpost .title span {
	color: #dc3545;
}

.showpage #plpost #saytext {
	display: block;
	margin: 20px;
	padding: 15px;
	height: 150px;
	width: calc(100% - 40px);
	border: 1px solid #ced4da;
	border-radius: 4px;
	font-size: 14px;
	resize: vertical;
	transition: all 0.3s ease;
}

.showpage #plpost #saytext:focus {
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* 系统文件表格样式 */
.header	{
	background: #f8f9fa;
	color: #333;
	border: 1px solid #e0e0e0;
	border-bottom: none;
	border-radius: 4px 4px 0 0;
}

.header a			{ color: #007bff }

.tableborder		{ background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 4px; }

/* 分页样式*/
.list_page {
	margin: 20px 0;
	text-align: center;
}

.pageLink a,
.list_page a,
.list_page b {
	padding: 8px 16px;
	border: 1px solid #dee2e6;
	background: #fff;
	text-align: center;
	display: inline-block;
	font-size: 14px;
	margin: 0 2px;
	border-radius: 4px;
	transition: all 0.3s ease;
	color: #007bff;
}

.pageLink a:hover,
.list_page a:hover {
	border: 1px solid #007bff;
	background: #007bff;
	color: white;
	text-align: center;
	font-weight: normal;
	text-decoration: none;
}

.list_page b {
	background: #007bff;
	color: white;
	border-color: #007bff;
}

/*分页样式2*/
.showpage .epages {
	text-align: center;
	margin: 20px 0;
	}

.epages {
	margin: 20px 0;
	font: 14px/1.6 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
}

.epages * {
	vertical-align: middle;
}

.epages a {
	padding: 8px 12px;
	border: 1px solid #dee2e6;
	margin: 0 4px;
	text-align: center;
	text-decoration: none;
	font: normal 14px/1.6 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
	border-radius: 4px;
	transition: all 0.3s ease;
	color: #007bff;
}

.epages a:hover {
	border: 1px solid #007bff;
	background: #007bff;
	text-decoration: none;
	color: white;
}

.epages input {
	margin-bottom: 0px;
	border: 1px solid #ced4da;
	height: 36px;
	font: bold 14px/36px 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
	padding: 0 10px;
	margin-right: 10px;
	color: #333;
	border-radius: 4px;
}

/*图片自动缩图*/
.photoresize {
	max-width: 100%;
	height: auto;
}

/* 评论样式 */
.ecomment {
	margin: 0;
	padding: 0;
}

.ecomment {
	margin-bottom: 15px;
	overflow: hidden;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.ecomment:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ecommentauthor {
	float: left;
	color: #007bff;
	font-weight: 600;
	margin-bottom: 10px;
}

.ecommenttext {
	clear: left;
	margin: 10px 0 0;
	padding: 10px;
	background: #fff;
	border-radius: 4px;
	color: #333;
	line-height: 1.6;
}

/* 动画效果 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.box,
.focus,
.picText,
.ecomment {
	animation: fadeIn 0.6s ease-out forwards;
}

.box:nth-child(1) {
	animation-delay: 0.1s;
}

.box:nth-child(2) {
	animation-delay: 0.2s;
}

.box:nth-child(3) {
	animation-delay: 0.3s;
}

/* 滚动条样式 */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}

/* 头部样式 */
.site-header {
	background-color: #fff;
	box-shadow: none;
	margin-bottom: 0;
}

.header-container {
	padding: 20px 20px;
	height: 65px;
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto !important;
	box-shadow: none !important;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	width: 100%;
	height: 100%;
}

.logo-section {
	flex: 0 0 auto;
	height: 65px;
	display: flex;
	align-items: center;
	box-shadow: none !important;
}

.logo-section a {
	display: flex;
	align-items: center;
	height: 100%;
	box-shadow: none !important;
}

.logo-section img {
	display: block;
	max-height: 100%;
	box-shadow: none !important;
}

.info-section {
	flex: 1;
	min-width: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* 倒计时样式 */
.countdown-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
}

.countdown-container {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 160, 64, 0.15) 100%);
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0, 200, 83, 0.2);
	height: 40px;
	border: 1px solid rgba(0, 200, 83, 0.3);
	transition: all 0.3s ease;
}

.countdown-container:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.countdown-icon {
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.countdown-icon svg {
	width: 20px;
	height: 20px;
}

.countdown-label {
	font-size: 14px;
	color: #333333;
	font-weight: 500;
	margin-right: 10px;
}

.countdown-number {
	font-size: 16px;
	font-weight: bold;
	color: #00c853;
	min-width: 40px;
	text-align: center;
	background-color: rgba(0, 200, 83, 0.1);
	padding: 4px 12px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	margin-right: 5px;
}

.countdown-unit {
	font-size: 14px;
	color: #333333;
	font-weight: 500;
}

/* 新的div布局样式 */
.container {
	max-width: 1200px;
	margin: 0 auto !important;
	padding: 0 20px;
}

.main-content {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	margin-bottom: 30px;
}

.left-content {
	flex: 1;
	min-width: 300px;
}

.right-sidebar {
	width: 350px;
	min-width: 350px;
	max-width: 350px;
	display: flex;
	flex-direction: column;
}



.module-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
	padding-bottom: 8px;
	border-bottom: 2px solid #28a745;
}

.customer-service {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.service-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background-color: #f8f9fa;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.service-item:hover {
	background-color: #e9ecef;
	transform: translateY(-2px);
}

.service-item img {
	border-radius: 4px;
}

.service-item span {
	font-size: 14px;
	color: #333;
}

.brand-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.brand-list li {
	margin-bottom: 10px;
	padding-left: 15px;
	position: relative;
	transition: padding-left 0.3s ease;
}

.brand-list li:hover {
	padding-left: 20px;
}

.brand-list li:before {
	content: "•";
	color: #28a745;
	font-weight: bold;
	position: absolute;
	left: 0;
}

.brand-list a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.brand-list a:hover {
	color: #28a745;
}

.qrcode-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 0;
}

.qrcode-container img {
	border: 1px solid #e0e0e0;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 10px;
}

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

.featured-section {
	width: 100%;
	background-color: #f8f9fa;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	margin-bottom: 20px;
	position: relative;
	text-align: center;
	height: 350px;
}

.featured-section img {
	width: 100%;
	height: auto;
	display: block;
}

.featured-section:not(#ehdplayBox) img {
	max-height: 350px;
	object-fit: cover;
}

/* 修复banner图显示问题 */
#ehdplayBox {
	width: 100% !important;
	height: 350px !important;
	min-height: 350px !important;
	max-height: 350px !important;
	margin: 0 !important;
	background: #f8f9fa !important;
	position: relative !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}

#ehdplayBox .ehdoUlplay {
	width: auto !important;
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	display: flex !important;
	height: 100% !important;
}

#ehdplayBox .ehdoUlplay li {
	float: none !important;
	width: 100% !important;
	height: 100% !important;
	flex-shrink: 0 !important;
	position: relative !important;
}

#ehdplayBox .ehdoUlplay li img {
	width: 100% !important;
	height: 100% !important;
	min-height: 350px !important;
	display: block !important;
	object-fit: cover !important;
}

#ehdplayBox .ehdpre,
#ehdplayBox .ehdnext {
	position: absolute !important;
	top: 50% !important;
	left: 10px !important;
	transform: translateY(-50%) !important;
	width: 40px !important;
	height: 40px !important;
	background: rgba(0, 0, 0, 0.5) !important;
	color: #fff !important;
	font-size: 20px !important;
	text-align: center !important;
	line-height: 40px !important;
	cursor: pointer !important;
	z-index: 10 !important;
	transition: all 0.3s ease !important;
	border-radius: 50% !important;
	background-image: none !important;
}

#ehdplayBox .ehdnext {
	left: auto !important;
	right: 10px !important;
}

#ehdplayBox .ehdpre:hover,
#ehdplayBox .ehdnext:hover {
	background: rgba(0, 0, 0, 0.7) !important;
	transform: translateY(-50%) scale(1.1) !important;
}

#ehdplayBox .ehdsmalltitle {
	width: 100% !important;
	height: 10px !important;
	position: absolute !important;
	bottom: 15px !important;
	z-index: 10 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
}

#ehdplayBox .ehdsmalltitle ul {
	width: auto !important;
	margin: 0 auto !important;
	display: flex !important;
}

#ehdplayBox .ehdsmalltitle li {
	width: 10px !important;
	height: 10px !important;
	border-radius: 50% !important;
	background-color: rgba(255, 255, 255, 0.5) !important;
	margin: 0 5px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	float: none !important;
	overflow: visible !important;
}

#ehdplayBox .ehdsmalltitle li.ehdthistitle {
	background-color: #69aaec !important;
	transform: scale(1.2) !important;
}

.featured-section img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.featured-section img:hover {
	transform: scale(1.02);
}

.content-section {
	width: 100%;
	margin-bottom: 30px;
}

.news-section {
	background-color: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

.section-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 2px solid #28a745;
	color: #333;
}

.news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-list li {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
	transition: padding-left 0.3s ease;
}

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

.news-list li {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
	transition: padding-left 0.3s ease;
	position: relative;
}

.news-list li:hover {
	padding-left: 10px;
}

.news-list a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	display: block;
	transition: color 0.3s ease;
	line-height: 1.4;
	padding-left: 50px;
}

.news-list a:hover {
	color: #28a745;
}

/* 标签样式 */
.tag {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 10px;
	color: #fff;
	font-weight: 500;
	margin-right: 8px;
}

.tag.recommend {
	background-color: #ff6b6b;
}

.tag.hot {
	background-color: #4ecdc4;
}

.tag.heat {
	background-color: #45b7d1;
}

.tag.excellent {
	background-color: #96ceb4;
}

.topics-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.topic-card {
	background-color: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.topic-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
	padding-bottom: 6px;
	border-bottom: 1px solid #eee;
}

.topic-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.topic-title a:hover {
	color: #28a745;
}

.topic-list {
	list-style: none;
}

.topic-list li {
	margin-bottom: 8px;
	padding-left: 12px;
	position: relative;
	transition: padding-left 0.3s ease;
}

.topic-list li:hover {
	padding-left: 16px;
}

.topic-list li:before {
	content: "•";
	color: #28a745;
	font-weight: bold;
	position: absolute;
	left: 0;
}

.topic-list a {
	color: #666;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s ease;
}

.topic-list a:hover {
	color: #28a745;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
		width: 100% !important;
		box-sizing: border-box;
	}
	
	.header-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		text-align: center;
	}
	
	.logo-section {
		align-self: center;
		margin-bottom: 10px;
	}
	
	.nav-list {
		flex-direction: column;
		flex-wrap: wrap !important;
	}
	
	.nav-item {
		margin-right: 0;
		margin-bottom: 5px;
		flex: 1 0 auto !important;
		min-width: 80px !important;
		text-align: center !important;
	}
	
	.nav-item a {
		padding: 10px 15px;
	}
	
	.main-content {
		flex-direction: column;
		gap: 20px;
	}

	.featured-section {
		flex: 1 1 100%;
		height: auto !important;
	}
	
	.left-content, .right-sidebar {
		width: 100% !important;
		margin: 0 !important;
	}
	
	#ehdplayBox {
		width: 100% !important;
		height: 200px !important;
	}
	
	#ehdplayBox .ehdoUlplay li img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover;
	}
	
	#ehdplayBox .ehdpre,
	#ehdplayBox .ehdnext {
		width: 30px !important;
		height: 30px !important;
		font-size: 16px !important;
		line-height: 30px !important;
	}
	
	.recommended-section {
		flex: 1 1 300px;
		max-width: 300px;
		margin: 0 auto;
	}

	.topics-section {
		grid-template-columns: 1fr;
		gap: 20px;
		flex-direction: column !important;
	}
	
	.topic-card {
		width: 100% !important;
		margin-bottom: 15px !important;
	}
	
	.countdown-wrapper {
		flex-direction: column !important;
	}
	
	.countdown-container {
		margin: 5px 0 !important;
	}
	
	.footer-qrcodes {
		flex-direction: column !important;
		align-items: center !important;
	}
	
	.qrcode-item {
		margin: 10px 0 !important;
	}
}

@media (max-width: 480px) {
	.countdown-label {
		font-size: 12px !important;
	}
	
	.section-title {
		font-size: 16px !important;
	}
	
	.topic-title {
		font-size: 14px !important;
	}
	
	.nav-item a {
		padding: 8px 10px !important;
		font-size: 14px !important;
	}
}

/* 移动端导航菜单按钮 */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
}

@media screen and (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}
	
	.main-nav .nav-list {
		display: none;
		flex-direction: column;
		width: 100%;
	}
	
	.main-nav .nav-list.active {
		display: flex;
	}
	
	.main-nav .nav-item {
		width: 100%;
		border-bottom: 1px solid #eee;
	}
}

/* 面包屑导航 */
.breadcrumb {
	padding: 15px 20px;
	background: #f8f9fa;
	font-size: 14px;
	color: #666;
	border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
	color: #007bff !important;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: #0056b3 !important;
	text-decoration: underline;
}

.breadcrumb-arrow {
	margin: 0 8px;
	color: #999;
}

/* 列表页内容 */
.list-page-content {
	display: flex;
	padding: 20px;
	gap: 20px;
}

.list-main {
	flex: 1;
	min-width: 0;
}

.list-sidebar {
	width: 280px;
	flex-shrink: 0;
}

/* 新闻列表容器 */
.news-list-container {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	overflow: hidden;
}

.news-list {
	padding: 20px;
}

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

.news-list li {
	padding: 15px 0;
	border-bottom: 1px dashed #e0e0e0;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.news-list li:hover {
	background: #f8f9fa;
	padding-left: 10px;
}

.news-list li a {
	flex: 1;
	color: #333 !important;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 15px;
	line-height: 1.6;
}

.news-list li a:hover {
	color: #007bff !important;
}

.news-date {
	flex-shrink: 0;
	color: #999;
	font-size: 13px;
	margin-left: 15px;
	white-space: nowrap;
}

/* 分页区域 */
.pagination-top,
.pagination-bottom {
	padding: 20px;
	background: #f8f9fa;
	border-top: 1px solid #e0e0e0;
	text-align: center;
}

.pagination-bottom {
	border-top: none;
	border-bottom: 1px solid #e0e0e0;
}

.epages {
	text-align: center;
	font-size: 0;
}

.epages * {
	font-size: 14px;
	vertical-align: middle;
}

.epages a {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	min-width: 36px;
	padding: 0 14px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	color: #333 !important;
	text-decoration: none;
	margin: 0 4px;
	transition: all 0.3s ease;
}

.epages a:hover {
	background: #007bff;
	color: #fff !important;
	border-color: #007bff;
}

.epages span {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	min-width: 36px;
	padding: 0 14px;
	background: #00c853;
	border: 1px solid #00c853;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
	margin: 0 4px;
}

/* 侧边栏小部件 */
.sidebar-widget {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	margin-bottom: 20px;
	overflow: hidden;
}

.widget-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	padding: 15px 20px;
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 160, 64, 0.1) 100%);
	border-bottom: 2px solid #00c853;
	margin: 0;
}

.widget-content {
	padding: 15px 20px;
}

.widget-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-content li {
	padding: 10px 0;
	border-bottom: 1px dashed #e0e0e0;
	transition: all 0.3s ease;
}

.widget-content li:last-child {
	border-bottom: none;
}

.widget-content li:hover {
	padding-left: 8px;
}

.widget-content li a {
	color: #333 !important;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.widget-content li a:hover {
	color: #007bff !important;
}

/* 热门排行 */
.widget-content ol.rank {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: rank;
}

.widget-content ol.rank li {
	position: relative;
	padding-left: 30px;
	counter-increment: rank;
}

.widget-content ol.rank li::before {
	content: counter(rank);
	position: absolute;
	left: 0;
	top: 10px;
	width: 20px;
	height: 20px;
	background: #f0f0f0;
	color: #666;
	font-size: 12px;
	text-align: center;
	line-height: 20px;
	border-radius: 50%;
}

.widget-content ol.rank li.no1::before {
	background: #ff4d4f;
	color: #fff;
}

.widget-content ol.rank li.no2::before {
	background: #ffa940;
	color: #fff;
}

.widget-content ol.rank li.no3::before {
	background: #73d13d;
	color: #fff;
}

/* 详情页内容 */
.showpage-content {
	display: flex;
	padding: 20px;
	gap: 20px;
}

.article-main {
	flex: 1;
	min-width: 0;
}

.showpage-sidebar {
	width: 280px;
	flex-shrink: 0;
}

/* 文章头部 */
.article-header {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	padding: 30px;
	margin-bottom: 20px;
}

.article-title {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	line-height: 1.4;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #00c853;
	text-align: center;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #666;
	font-size: 14px;
	gap: 10px;
}

.meta-item {
	display: flex;
	align-items: center;
}

.meta-divider {
	color: #ccc;
}

/* 文章内容 */
.article-content {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	padding: 30px;
	line-height: 1.8;
	font-size: 16px;
	color: #333;
}

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

.article-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 15px auto;
	border-radius: 4px;
}

.article-content a {
	color: #007bff !important;
	text-decoration: underline;
}

.article-content a:hover {
	color: #0056b3 !important;
}

/* 分页链接 */
.pageLink {
	text-align: center !important;
	padding: 20px 0 !important;
	border-top: 1px dashed #e0e0e0;
	margin-top: 20px !important;
}

.pageLink a {
	display: inline-block;
	padding: 8px 16px;
	margin: 0 5px;
	background: #f8f9fa;
	border-radius: 4px;
	color: #333 !important;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pageLink a:hover {
	background: #007bff;
	color: #fff !important;
}

.pageLink b {
	display: inline-block;
	padding: 8px 16px;
	margin: 0 5px;
	background: #00c853;
	color: #fff;
	border-radius: 4px;
	font-weight: 600;
}

/* 分页区域 */
.pagination-area {
	text-align: center;
	padding: 30px 0;
	margin-top: 20px;
	border-top: 1px dashed #e0e0e0;
}

.pageLink {
	text-align: center;
	font-size: 0;
}

.pageLink * {
	font-size: 14px;
	vertical-align: middle;
}

.pageLink a {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	min-width: 36px;
	padding: 0 14px;
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	color: #333 !important;
	text-decoration: none;
	margin: 0 4px;
	transition: all 0.3s ease;
}

.pageLink a:hover {
	background: #007bff;
	color: #fff !important;
	border-color: #007bff;
}

.pageLink b {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	min-width: 36px;
	padding: 0 14px;
	background: #00c853;
	border: 1px solid #00c853;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
	margin: 0 4px;
}

.pageLink span {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	padding: 0 6px;
	color: #999;
	margin: 0 2px;
}

@media (max-width: 768px) {
	.pagination-area {
		padding: 20px 15px;
	}
	
	.pageLink {
		gap: 6px;
	}
	
	.pageLink a,
	.pageLink b {
		min-width: 32px;
		height: 32px;
		padding: 0 8px;
		font-size: 13px;
	}
	
	.list-page-content,
	.showpage-content {
		flex-direction: column;
		padding: 10px;
		gap: 15px;
	}
	
	.list-sidebar,
	.showpage-sidebar {
		width: 100%;
	}
	
	.breadcrumb {
		padding: 12px 15px;
		font-size: 13px;
	}
	
	.news-list li {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.news-date {
		margin-left: 0;
	}
	
	.article-header {
		padding: 20px 15px;
	}
	
	.article-title {
		font-size: 20px;
	}
	
	.article-meta {
		flex-direction: column;
		gap: 8px;
	}
	
	.article-content {
		padding: 20px 15px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.article-title {
		font-size: 18px;
	}
	
	.news-list li a {
		font-size: 14px;
	}
	
	.widget-title {
		font-size: 15px;
	}
	
	.pageLink a {
		padding: 6px 12px;
		font-size: 13px;
	}
}
/* 修复 jhtiku.cn 轮播图黑屏 + 箭头不对称 */
#ehdplayBox{height:350px !important;background:transparent !important;overflow:hidden;position:relative}
#ehdplayBox .ehdoUlplay li img{width:100% !important;height:100% !important;display:block !important;object-fit:cover !important}
#ehdplayBox .ehdprev,#ehdplayBox .ehdnext{top:50% !important;transform:translateY(-50%) !important;width:40px !important;height:40px !important;line-height:40px !important;border-radius:50%}
#ehdplayBox .ehdprev{left:20px !important}
#ehdplayBox .ehdnext{right:20px !important}
