* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	color: #1e2a3e;
	font-family: 'Segoe UI', 'Roboto', 'Microsoft Yahei', 'PingFang SC', sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
html {
	scroll-behavior: smooth;
}
a{color:#666; text-decoration:none}
.top-banner {
	max-width: 1280px;
	margin: 0 auto;
}
.top-banner img {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.nav-wrapper {
	border-bottom: 3px solid #c81623;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	width: 100%;
}
.nav {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	min-height: 56px;
}
.nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	padding: 0;
	margin: 0;
}
.nav li {
	margin: 0 46px 0 0;
}
.nav a {
	text-decoration: none;
	color: #333;
	font-size: 18px;
	font-weight: 600;
	transition: color 0.2s ease;
	white-space: nowrap;
}
.nav a:hover {
	color: #c81623;
}
.search-container {
	position: relative;
}
.search-icon {
	cursor: pointer;
	font-size: 18px;
	color: #5a6874;
	background: #f0f2f5;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s;
}
.search-icon:hover {
	background: #c81623;
	color: #fff;
}
 .search-dropdown {
	position: absolute;
	top: 48px;
	right: 0;
	width: 280px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	padding: 12px;
	z-index: 200;
	display: none;
	border: 1px solid #eef2f8;
}
.search-dropdown.active {
	display: block;
}
.search-dropdown input {
	width: calc(100% - 80px);
	padding: 7.5px 12px;
	border: 1px solid #dce5ef;
	border-radius: 10px 0px 0px 10px;
	font-size: 14px;
	outline: none;
	float: left;
}
.search-dropdown input:focus {
	border-color: #c81623;
}
.search-dropdown button {
	width: 80px;
	background: #c81623;
	border: none;
	padding: 8px;
	color: white;
	border-radius: 0px 10px 10px 0px;
	cursor: pointer;
	font-weight: 600;
	float: right;
}
.container {
	max-width: 1280px;
	margin: 20px auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
}
/* 轮播图 */
.swiper {
	grid-column: 1 / 9;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
	position: relative;
	background: #eef2f5;
}
.swiper-slide {
	position: relative;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 16px;
	min-height: 80px;
	box-sizing: border-box;
}
.slide-caption span {
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	line-height: 1.3;
	max-width: 90%;
}
.swiper-button-prev, .swiper-button-next {
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	color: white;
	transition: all 0.2s;
	margin-top: -20px;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
	background: #c81623;
}
.swiper-button-prev:after, .swiper-button-next:after {
	font-size: 18px;
	font-weight: bold;
}
.swiper-pagination-bullet-active {
	background-color: #c81623 !important;
}
.news-headline .card-header .more-btn {
	display: none;
}
.news-headline {
	grid-column: 9 / 13;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	padding: 8px 16px 16px;
	border: 1px solid #eef2f8;
}
.news-tabs {
	display: flex;
	border-bottom: 1px solid #e9ecef;
	margin-bottom: 14px;
	width:100%;
}
.news-tabs span {
	padding: 10px 0 8px;
	margin-right: 28px;
	cursor: pointer;
	font-weight: 500;
	font-size: 20px;
	color: #333;
	position: relative;
}
.news-tabs .active {
	color: #c81623;
}
 .news-tabs .active::after {
 content: '';
 position: absolute;
 bottom: -1px;
 left: 0;
 width: 100%;
 height: 2px;
 background: #c81623;
}
.news-list {
	list-style: none;
	display:none;
}
.news-list.active {
	display:block;
}
.news-list li {
	padding: 10px 0;
	border-bottom: 1px solid #f0f4fa;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}
.news-list a {
	text-decoration: none;
	color: #1f2d3d;
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.2s;
}
.news-list a:hover {
	color: #c81623;
	text-decoration: underline;
}
.news-list .date {
	color: #bbb;
	font-size: 12px;
	flex-shrink: 0;
}
/* 中部三列新闻区域 */
        .news-section {
	grid-column: 1 / 13;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.news-card {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #edf2f7;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
	padding:12px 16px 18px;
}
.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0px 8px 0px;
	border-bottom: 1px solid #f0f4f9;
	margin-bottom: 20px;
}
.news-headline .card-header {
	border-bottom: 0;
	padding:0;
	margin-bottom:0;
}
.card-header h3 {
	font-size: 20px;
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	gap: 6px;
}
 .card-header h3::before {
 content: "▌";
 color: #c81623;
 font-size: 18px;
}
.more-btn {
	text-decoration: none;
	color: #5e7a93;
	font-size: 13px;
	font-weight: 500;
	background: #f4f6fa;
	padding: 5px 12px;
	border-radius: 30px;
	transition: 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.more-btn i {
	font-size: 12px;
}
.more-btn:hover {
	background: #c81623;
	color: #fff;
}
/* 滚动新闻仅最新消息模块 */
        .scroll-news {
	height: 290px;
	overflow: hidden;
	position: relative;
	padding: 0 16px 8px;
}
.scroll-news ul {
	list-style: none;
	animation: scrollUp 24s linear infinite;
}
.scroll-news:hover ul {
	animation-play-state: paused;
}
.scroll-news li, .normal-news li {
	padding: 7px 0;
	border-bottom: 1px dashed #eef2f8;
	display: flex;
	justify-content: space-between;
	gap: 8px;
	align-items: center;
}
.scroll-news a, .normal-news a {
	text-decoration: none;
	color: #666;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
}
.scroll-news a:hover, .normal-news a:hover {
	color: #c81623;
}
.scroll-news .date, .normal-news .date {
	color: #bbb;
	font-size: 12px;
	flex-shrink: 0;
}
.normal-news {
	padding: 0 16px 12px;
}
 .middle-banner {
	grid-column: 1 / 13;
	border-radius:10px;
	overflow: hidden;
	margin: 4px 0;
}
.middle-banner img {
	width: 100%;
	display: block;
}
 .content-section {
	grid-column: 1 / 13;
	display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.content-card {
	background: #fff;
	border-radius: 14px;
	border: 1px solid #eef2f8;
	padding: 12px 16px 18px;
	transition: 0.2s;
}
.img-card {
	width: 100%;
	height: 190px;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 16px;
	cursor: pointer;
}
.img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
/* 遮罩层：默认高度30px，底部对齐，文字居中，背景默认渐变 */
        .img-card .overlay-mask {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 12px;
	color: white;
	transition: height 0.3s ease, background 0.3s ease, padding 0.3s ease;
	overflow: hidden;
	white-space: nowrap;
}
.img-card .overlay-mask .img-title {
	font-size: 14px;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.img-card .overlay-mask .img-desc {
	font-size: 12px;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	max-width: 100%;
	margin-top: 6px;
	white-space: normal;
	display: none;
}
/* 鼠标经过：遮罩全屏，显示描述，颜色保持默认（不变红色）使用更深的黑色渐变 */
        .img-card:hover .overlay-mask {
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.92) 100%);
	justify-content: center;
	padding: 20px;
	white-space: normal;
}
.img-card:hover .overlay-mask .img-title {
	font-size: 18px;
	white-space: normal;
	margin-bottom: 4px;
}
.img-card:hover .overlay-mask .img-desc {
	opacity: 1;
	transform: translateY(0);
	display: block;
}
.img-card:hover img {
	transform: scale(1.03);
}
/* 修复 content-card ul li a 宽度自适应 */
        .content-card ul {
	list-style: none;
	margin-top: 4px;
}
.content-card ul li {
	padding: 7px 0;
	border-bottom: 1px dashed #ecf3f9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}
.content-card ul li a {
	text-decoration: none;
	color: #666;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	min-width: 0;
}
.content-card ul li span {
	color: #bbb;
	font-size: 12px;
	flex-shrink: 0;
}
.content-card ul li a:hover {
	color: #c81623;
}
/* 友情链接 - 去掉更多按钮 */
        .friend-link .card-header .more-btn {
	display: none;
}
.friend-link {
	grid-column: 1 / 13;
	background: #fff;
	border-radius: 14px;
	padding: 12px 20px;
	border: 1px solid #edf2f7;
}
.links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding:20px;
	margin-top: 12px;
}
.links a {
	text-decoration: none;
	color: #3a5670;
	transition: 0.2s;
}
.links a:hover {
	color: #c81623;
}
.footer {
	background: #f1f1f1;
	margin-top: 50px;
	padding: 32px 20px;
	text-align: center;
}
.footer p {
	font-size: 13px;
	color: #666;
	margin: 8px 0;
}
.back-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 46px;
	height: 46px;
	background: #c81623;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: 0.2s;
	z-index: 99;
}
.back-top:hover {
	background: #a0131a;
	transform: translateY(-3px);
}
 @keyframes scrollUp {
 0% {
transform: translateY(0);
}
 100% {
transform: translateY(-52%);
}
}


.container2 {
	max-width: 1280px;
	margin: 30px auto;
	padding: 0 20px;
}
.breadcrumb {
	margin-bottom: 20px;
	font-size: 18px;
	color: #666;
	font-weight:normal;
}
.breadcrumb a {
	color: #c81623;
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb span {
	margin: 0 6px;
}
 .list-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	border-bottom: 2px solid #e0e6ed;
	padding-bottom: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.list-header h1 {
	font-size: 26px;
	font-weight: 700;
	color: #1e2f3e;
	position: relative;
	padding-left: 12px;
	border-left: 5px solid #c81623;
}
.total-count {
	color: #7e8c9e;
	font-size: 14px;
}
/* 文章列表样式 */
        .article-list {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	margin-bottom: 32px;
}
.article-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid #edf2f7;
	transition: background 0.2s;
}
.article-item:hover {
	background: #fafcff;
}
.article-info {
	flex: 1;
	padding-right: 20px;
}
.article-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
}
.article-title a {
	text-decoration: none;
	color: #333;
	transition: color 0.2s;
}
.article-title a:hover {
	color: #c81623;
	text-decoration: underline;
}
.article-summary {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.article-meta {
	display: flex;
	gap: 20px;
	font-size: 13px;
	color: #999;
}
.article-meta i {
	margin-right: 4px;
	font-size: 12px;
}
.article-img {
	width: 160px;
	height: 100px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	background: #eef2f5;
}
.article-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s;
}
.article-img:hover img {
	transform: scale(1.03);
}
 .pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	flex-wrap: wrap;
}
.pagination a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	
	height: 30px;
	padding: 0 12px;
	background: #fff;
	border-radius: 6px;
	text-decoration: none;
	margin-right:10px;
	color: #2c3e50;
	font-weight: 500;
	transition: all 0.2s;
	border: 1px solid #e2e8f0;
}

.pagination a:hover,.pagination .page-num-current {
	background: #eee;
	color: #222;
	cursor: default;
}
.page-status{ display:none}
.pagination .disabled {
	color: #b9c3d0;
	pointer-events: none;
	background: #f8fafc;
}

 .article-detail {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 32px 40px;
            margin-bottom: 30px;
        }
        /* 文章标题 */
        .article-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
            margin-bottom: 20px;
            text-align: left;
        }
        /* 文章元信息行 */
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            padding-bottom: 18px;
            border-bottom: 1px solid #eef2f8;
            margin-bottom: 24px;
            font-size: 14px;
            color: #999;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 2px;
        }
        .article-meta i {
            width: 16px;
            color: #999;
        }
        /* 正文样式 */
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 32px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
		.article-content img{ max-width:100%}
        .article-content h2 {
            font-size: 22px;
            margin: 24px 0 12px;
            color: #1e2f3e;
        }
        .article-content h3 {
            font-size: 18px;
            margin: 20px 0 10px;
            color: #2c3e50;
        }
        .article-content strong {
            color: #c81623;
        }
        /* 上下翻页区域 */
        .pagination-article {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eef2f8;
        }
        .prev-article, .next-article {
            flex: 1;
            background: #f8fafc;
            border-radius: 16px;
            padding: 16px 20px;
            transition: all 0.2s;
            text-decoration: none;
            color: #999;
            border: 1px solid #eef2f8;
        }
        .nav-label {
            font-size: 13px;
            color: #8a99ae;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-title {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .next-article {
            text-align: right;
        }
        .next-article .nav-label {
            justify-content: flex-end;
        }
        .disabled-nav {
            opacity: 0.5;
            pointer-events: none;
            background: #f8fafc;
        }




.logo {
	display:none !important
}
 @media (max-width: 1000px) {
 .container {
 width: 96%;
}
.nav {
	position: relative;
}
.search-container {
	position: absolute;
	padding-bottom: 5px;
	width: 100%;
	bottom: 0;
	right: 30px;
}
 .swiper, .news-headline {
grid-column: 1 / 13;
}
 .news-section, .content-section {
 grid-template-columns: repeat(1, minmax(0, 1fr));
}
 .nav ul {
 display:block;
}
.nav li {
 width: 25%;
 float: left;
 text-align: center;
 margin: 10px 0;
}
}
 @media (max-width: 768px) {
 .slide-caption span {
font-size: 14px;
}
 .slide-caption {
padding: 12px 12px;
}
 .banner {
display:none !important
}
 .logo {
display:block !important
}
 .search-icon {
margin-left: auto;
}

 .article-item {
 flex-direction: column;
 align-items: flex-start;
 padding: 16px;
}
 .article-img {
 width: 100%;
 height: 140px;
 margin-top: 12px;
}
 .article-info {
 padding-right: 0;
 width: 100%;
}
 .list-header h1 {
 font-size: 22px;
}
 .container2 {
 padding: 0 16px;
}
.page-index,.page-last,.page-pre,.page-next{ display:none;}
.back-top {
	right: 0;
}
 .article-detail {
                padding: 20px;
            }
            .article-title {
                font-size: 22px;
            }
            .article-meta {
                gap: 16px;
                font-size: 12px;
            }
            .pagination-article {
                flex-direction: column;
            }
            .prev-article, .next-article {
                text-align: left;
            }
            .next-article .nav-label {
                justify-content: flex-start;
            }


}
