.fouct {
	width: 90%;
	display: block;
	overflow: hidden;
	float: right;
}

.fouct h1 {
	width: 100%;
	height: 90px;
	line-height: 90px;
	display: block;
	overflow: hidden;
	font-size: 40px;
	font-family: microsoft yahei;
	text-align: center;
	margin: 0 auto;
}

.fouct h1 a {
	color: #b51213;
	text-decoration: none;
}

.fouct h1 a:hover {
	color: #e00;
}

.fouct span {
	width: 100%;
	height: 60px;
	line-height: 30px;
	display: block;
	overflow: hidden;
	font-size: 16px;
	/* white-space: nowrap;text-overflow: ellipsis;*/
	text-align: left;
	margin: 0 auto;
}

.fouct span a {
	padding: 0 10px;
	color: #f00;
}

.fouct i.people {
	width: 120px;
	height: 40px;
	line-height: 40px;
	display: block;
	overflow: hidden;
	float: left;
	padding-left: 30px;
	color: #666;
	background: url(../images/ico-ren.png) left center no-repeat;
}

.fouct i.time {
	width: 120px;
	height: 40px;
	line-height: 40px;
	display: block;
	overflow: hidden;
	float: left;
	padding-left: 30px;
	color: #666;
	background: url(../images/ico-time.png) left center no-repeat;
}

/* ---------- 6. ---------- */
.news-list-card {
	list-style: none;
	padding: 110px 30px 90px;
	margin: 0;
	display: flex;
	gap: 20px;
	justify-content: space-between;

}

.news-list-card li {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
	transition: transform 0.2s, box-shadow 0.2s;
}

.news-list-card li:hover {
	transform: translateY(-4px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.news-list-card img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}

.news-list-card a {
	display: block;
	color: #212529;
	overflow: hidden;
	transition: color 0.2s;
}

.news-list-card a:hover {
	color: #0d6efd;
}

.news-list-card p {
	padding: 0 16px;
	font-size: 13px;
	color: #6c757d;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-list-card .source {
	display: block;
	padding: 6px 16px 12px;
	font-size: 12px;
	color: #adb5bd;
}

/* ---------- 5. ---------- */
.news-list-img {
	display: flex;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news-list-img li {
	width: calc(50% - 16px);
	display: flex;
	border-bottom: 1px solid #e9ecef;
	padding: 30px 0;
}




.news-list-img .info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.news-list-img .info h1 a {
	font-size: 22px;
	font-weight: 600;
	color: #212529;
	text-decoration: none;
	line-height: 1.6;
	display: -webkit-box;
	overflow: hidden;
	transition: color 0.2s;
}

.news-list-img .info a:hover {
	color: #900;
}

.news-list-img .info p {
	font-size: 16px;
	color: #6c757d;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-list-img .info p a {
	color: #ff9900;
}



/* ---------- 6. ---------- */
/* 滚动容器 ———— 核心 */
.b-b100 {
	overflow: hidden;
	/* 隐藏超出的内容 */
	border-radius: 18px;
	position: relative;
	width: 100%;
}

/* 滑动轨道 ———— 用 flex 布局实现横向排列 */  .news-list-card2 {
	display: flex;
	flex-wrap: nowrap;
	/* 不换行 */
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	width: max-content;
	/* 根据内容撑开，实现无缝滚动 */
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 每个卡片项 ———— 固定宽度，与图片比例协调 */ .news-list-card2 li {
	flex: 0 0 auto;
	width: 320px;
	/* 固定宽度，可根据需要调整 */
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-list-card2 li:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.news-list-card2 li a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.news-list-card2 li img {
	display: block;
	width: 100%;
	height: 400px;
	object-fit: cover;
	/* 保持比例裁剪 */
	background: #e9edf2;
	transition: transform 0.4s ease;
}

.news-list-card2 li:hover img {
	transform: scale(1.03);
}

/* ----- 控制按钮 (左右箭头) ----- */ .scroll-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 28px;
}

.scroll-btn {
	
	border: none;
	border-radius: 60px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #1f2a3a;
	cursor: pointer;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
	transition: all 0.2s ease;
	
	border: 1px solid #eef2f7;
}

.scroll-btn:hover {
	
	box-shadow: 0 10px 20px rgba(0, 20, 50, 0.08);
	transform: scale(1.04);
	border-color: #cbd5e1;
}

.scroll-btn:active {
	transform: scale(0.96);
}

.scroll-btn svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* 指示器 (小圆点) */ .dots-indicator {
	display: flex;
	gap: 10px;
	align-items: center;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 20px;
	background: #d0d9e6;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	padding: 0;
}

.dot.active {
	background: #2a3b57;
	width: 28px;
}

.dot:hover {
	background: #7f8fa3;
}


.swp2 {position: relative;padding: 0 51px;width: 1180px;box-sizing: border-box;margin: 0 auto;}
.swp2 .swiper-button-prev:after {display: none;}
.swp2 .swiper-button-next:after {display: none;}
.swp2 .swiper-button-next, .swp2 .swiper-button-prev {width: 32px;height: 59px;top: 200px;display: block;}
.swp2 .swiper-button-prev {background: url("../images/l_rr2.png") no-repeat;left: 0}
.swp2 .swiper-button-next {background: url("../images/r_rr2.png") no-repeat;right: 0}


#myswp2 .swiper-wrapper {width: 1180px;height: 460px;margin: 0 auto;}
#myswp2 .swiper-slide {width: auto;height: 460px;}
#myswp2 .swiper-slide .zp {width: 100%;display: block;box-sizing: border-box;}
#myswp2 .swiper-slide .zp img {width:320px;height: 400px;display: block;margin: 0 auto;transition: all .5s;}
#myswp2 .swiper-slide .zp span {width: 100%;height: 45px;line-height: 45px;color: #333;font-size: 16px;display: block;text-align: center;}
#myswp2 .swiper-slide a:hover {text-decoration: none;}
#myswp2 .swiper-slide a:hover img {transform: scale(1.05)}
