* {
	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;
}

.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;
}
.right-scroll-list {
	grid-column: 9 / 13;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	padding: 12px 16px;
	border: 1px solid #eef2f8;
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: 380px;
}
.right-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	border-bottom: 2px solid #c81623;
	padding-bottom: 8px;
	margin-bottom: 12px;
	flex-shrink: 0;
	position:relative;
}

.right-header::before {
 position:absolute;
 top:4px;
 content: "||";
 color: #cc0000;
 font-size:24px;
}



.right-header h3 {
	font-size: 24px;
	font-weight:500;
	color: #000;
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left:20px;
}

.more-link {
	text-decoration: none;
	color: #5e7a93;
	font-size: 13px;
	font-weight: 500;
	padding: 4px 12px;
	transition: 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.more-link:hover {
	color: #c81623;
	
}
.scroll-news-container {
	overflow: hidden;
	position: relative;
	height: 390px;
}
.scroll-news-list {
	list-style: none;
	animation: scrollNewsUp 20s linear infinite;
}
.scroll-news-container:hover .scroll-news-list {
	animation-play-state: paused;
}
.scroll-news-list li {
	padding: 12px 0;
	border-bottom: 1px solid #f0f4fa;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.scroll-news-list a {
	text-decoration: none;
	color: #666;
	font-weight: 500;
	font-size: 14px;
	transition: color 0.2s;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.scroll-news-list a:hover {
	color: #c81623;
	text-decoration: underline;
}
.scroll-news-list .date {
	color: #8a99ae;
	font-size: 12px;
	flex-shrink: 0;
}
        /* 滚动动画 - 优化高度计算 */
        @keyframes scrollNewsUp {
 0% {
transform: translateY(0);
}
 100% {
transform: translateY(-50%);
}
}
/* 中部新闻区域（三列，无滚动） */
        .news-section {
	grid-column: 1 / 13;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.news-card {
	background: #fff;
	border: 1px solid #edf2f7;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
	padding:12px 16px 18px;
}
.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0px 8px 0px;
	border-bottom: 1px solid rgba(221, 221, 221, 1);
	margin-bottom:10px;
	position:relative;
}
.card-header h3 {
	font-size: 24px;
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left:20px;
}
 .card-header::before {
 position:absolute;
 top:8px;
 content: "||";
 color: #cc0000;
 font-size:24px;
}
.more-btn {
	text-decoration: none;
	color: #ccc;
	font-size:24px;
	font-weight: 500;
	padding: 5px 12px;
	transition: 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.more-btn:hover {
	color: #c81623;

}
.normal-news {
	padding: 0 16px 12px;
}
.normal-news ul {
	list-style: none;
}
.normal-news li {
	padding: 10px 0;
	border-bottom: 1px dashed #eef2f8;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}
.normal-news a {
	text-decoration: none;
	color: #666666;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 280px;
	font-weight: 500;
}
.normal-news a:hover {
	color: #c81623;
}
.normal-news .date {
	color: #BBB;
	font-size: 12px;
	flex-shrink: 0;
}
/* 中部banner */
        .middle-banner {
	grid-column: 1 / 13;
	overflow: hidden;
	margin: 4px 0;
}
.middle-banner img {
	width: 100%;
	display: block;
}
/* 底部6卡片 */
        .content-section {
	grid-column: 1 / 13;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.content-card {
	background: #fff;
	border: 1px solid #eef2f8;
	padding: 12px 16px 18px;
}
.img-card {
	width: 100%;
	height: 190px;
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
	cursor: pointer;
}
.img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
 .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;
	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;
	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: 6px;
}
.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 {
	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: #666666;
	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 {
	grid-column: 1 / 13;
	background: #fff;
	padding: 12px 20px;
	border: 1px solid #edf2f7;
}
.links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding:20px 0;
	margin-top: 12px;
}
.links a {
	text-decoration: none;
	color: #3a5670;
	transition: 0.2s;
}
.links a:hover {
	color: #c81623;
}
/* 轮播图 */
.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;
}



 .article-detail {
	background: #fff;
	
	padding: 32px 40px;
	margin-bottom: 30px;
	border: 1px solid #eef2f8;
}
/* 标题区域：标题 + 右侧信息（日期在上，阅读次数在下） */
        .title-header {
	display: flex;
flex-direction: column;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	border-bottom: 1px solid #eef2f8;
	padding-bottom: 20px;
}
.article-title {
	font-size: 28px;
	font-weight: 700;
	color: #1e2f3e;
	line-height: 1.3;
	flex: 1;
}
.info-side {
	width: 100%;
	display: flex;
}
.article-date {
	font-size: 14px;
	color: #8a99ae;
	margin-bottom: 8px;
}
.article-views {
	font-size: 13px;
	color: #8a99ae;
}
.article-footer-meta {
	font-size: 14px;
	color: #8a99ae;
}
.article-footer-meta span {
	padding: 0px 14px;
}
/* 正文样式 */
        .article-content {
	font-size: 16px;
	line-height: 1.8;
	color: #2c3e50;
	margin: 24px 0 16px;
}

        .article-content a{
color: #2c3e50;
}

.article-content p {
	margin-bottom: 1.5em;
}
.article-content h2 {
	font-size: 22px;
	margin: 1.5em 0 0.8em;
	color: #1e2f3e;
}
.article-content h3 {
	font-size: 18px;
	margin: 1.2em 0 0.6em;
}

.article-content img { max-width:100%;}

.article-content strong {
	color: #c81623;
}
 .page-nav-vertical {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 28px;
	border-radius: 16px;
	padding: 8px 0;
}
.nav-item {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 8px 18px;
	transition: all 0.2s;
	text-decoration: none;
}
.nav-direction {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	min-width: 52px;
}
.nav-title {
	font-size: 14px;
	font-weight: 500;
	color: #666;
	line-height: 1.45;
	flex: 1;
}

.newslist.container2{ max-width:960px; margin:100px auto;}
        /* 文章列表主区域 */
        .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 {
           
          
            overflow: hidden;
            margin-bottom: 32px;
        }
        .article-list ul {
            list-style: none;
        }
        .article-list li {
            border-bottom: 1px solid #edf2f7;
            transition: background 0.2s;
        }
        .article-list li:last-child {
            border-bottom: none;
        }
        .article-list li:hover {
            background: #fafcff;
        }
        .article-list .article-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            text-decoration: none;
            color: inherit;
            gap: 20px;
        }
       .article-list  .article-title {
            font-size: 16px;
            font-weight: 500;
            color: #1f2d3d;
            transition: color 0.2s;
            flex: 1;
        }
       .article-list .article-link:hover .article-title {
            color: #c81623;
         
        }
       .article-list  .article-date {
            font-size: 13px;
            color: #8a99ae;
            flex-shrink: 0;
            white-space: nowrap;
        }
       .article-list  .article-date i {
            margin-right: 5px;
            font-size: 12px;
        }
		
		 .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;
	margin-right:10px;
	background: #fff;
	border-radius: 6px;
	text-decoration: none;
	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}
.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: 1fr;
}
 .nav ul {
 display:block;
}
.nav li {
 width: 25%;
 float: left;
 text-align: center;
 margin: 10px 0;
}
}
 @media (max-width: 768px) {
	 
	.swiper, .right-scroll-list {
	grid-column: 1 / 13;
} 
	 
	 
	  .right-scroll-list {
 min-height: auto;
}
 .scroll-news-container {
 height: 280px;
}
 .news-section, .content-section {
 grid-template-columns: repeat(1, minmax(0, 1fr));
 gap: 16px;
}
 .normal-news a {
 white-space: nowrap;
}
 .scroll-news-list a {
 white-space: normal;
 line-height: 1.4;
}
 .scroll-news-list li {
 align-items: flex-start;
}
 .slide-caption span {
font-size: 14px;
}
 .slide-caption {
padding: 12px 12px;
}
 .banner {
display:none !important
}


 .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;
}

 .logo {
display:block !important
}
 .search-icon {
margin-left: auto;
}
 .article-detail {
 padding: 24px 20px;
}
 .article-title {
 font-size: 18px;
}
 .title-header {
 flex-direction: column;
 align-items: flex-start;
}
 .container2 {
 padding: 0 16px;
}
.newslist.container2 {
	margin: 20px auto;
}
.page-index,.page-last,.page-pre,.page-next{ display:none;}
 .info-side {
 text-align: left;
}

            .article-date {
                white-space: normal;
            }
            .list-header h1 {
                font-size: 22px;
            }
}


.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-titles {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
            margin-bottom: 20px;
            text-align: left;
        }
.article-titles a {
	text-decoration: none;
	color: #333;
	transition: color 0.2s;
}
.article-titles 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;
}
.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;
}

