.content {
	width:76%;
	margin: 0 auto;
}

/* ========== 首页三栏模块 ========== */
.home-news-module {
	display: flex;
	gap: 3.5%;
	padding: 1.875rem 0;
}


/* 左侧和右侧列样式（相同） */
.news-col-left,
.news-col-right {
	width: 21%;

}

/* 中间列更宽 */
.news-col-center {
	width: 51%;
}

/* 选项卡 */
.news-tabs {
	display: flex;
	margin-bottom: 10px;
}

.news-tab {
	position: relative;
	font-family: 'syhtB';
	font-size: 1.5rem;
	line-height: 3.125rem;
	color: #666;
	cursor: pointer;
	padding-right: 2.2rem;
	transition: color 0.25s;
	user-select: none;

}



.news-tab:hover {
	color: #175ddd;
}

.news-tab.active {
	color: #175ddd;
}



/* 选项卡面板 */
.news-tab-content {
	position: relative;
}

.news-panel {
	display: none;
}

.news-panel.active {
	display: block;
}

/* 顶部大图 */
.featured-img {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 0.25rem;
	overflow: hidden;
	text-decoration: none;
	margin-bottom: 1rem;
}

.featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

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




/* 纯文字新闻列表 */
.news-text-list {
	list-style: none;
	padding: 0;
	margin: 0;
}


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

.news-text-list li a {
	display: inline-block;
	padding-bottom: 0.8rem;
	text-decoration: none;
	color: #333;
	font-size: 1.125rem;
	line-height: 1.75rem;
	transition: color 0.2s;
	overflow: hidden;
}

.news-text-list li a::before {
	content: '';
	flex-shrink: 0;
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: #175ddd;
}

.news-text-list li a:hover {
	color: #175ddd;
}

.news-text-list li a:hover::before {
	background: #1856C7;
}

.news-text-list li a .news-date {
	width:113px;
	height: 24px;
	background: url(../images/timeBg.png)no-repeat;
	background-size: 113px 24;
	display: inline-block;
	width: 100%;
	font-size: 1rem;
	line-height: 24px;
	color: #fff;
	font-weight: normal;
	white-space: nowrap;
	padding-left: 10px;
	margin-top: 8px;
}

/* 中间轮播 */
.news-swiper-wrap {
	width: 100%;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}


.newsSwiper {
	width: 100%;
	border-radius: 0.25rem;
	overflow: hidden;
}



.slide-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.slide-info {
	padding: 1.25rem 1.5rem 3rem;

}

.slide-title {
	font-family: 'syhtB';
	font-size: 1.375rem;
	color: #111111;
	line-height: 1.4;
	margin: 0 0 0.75rem;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-align: center;
}

.slide-desc {
	font-size: 16px;
	color: #666;
	line-height: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

/* 轮播箭头 */
.newsSwiper .swiper-button-prev,
.newsSwiper .swiper-button-next {
	width: 2.375rem;
	height: 1.625rem;
	bottom: 0;
	top: initial;
	transition: all 0.25s;
	z-index: 99;
	background: url(../images/news-jt.png)no-repeat;
	background-size: 100% 100%;
	opacity: 0.5;
}

.newsSwiper .swiper-button-next {
	transform: rotate(180deg);
}

.newsSwiper .swiper-button-prev:hover,
.newsSwiper .swiper-button-next:hover {
	opacity: 1;
}

.newsSwiper .swiper-button-prev::after,
.newsSwiper .swiper-button-next::after {
	display: none;
}

.newsSwiper .swiper-button-prev {
	left: 0.75rem;
}

.newsSwiper .swiper-button-next {
	right: 0.75rem;
}

.newsSwiper .swiper-pagination {
	bottom: 0.5rem;
}

.newsSwiper .swiper-pagination-bullet {
	width: 2rem;
	height: 5px;
	background: #ccc;
	border-radius: 50px;
	opacity: 1;
}

.newsSwiper .swiper-pagination-bullet-active {
	background: #175ddd;
}


@media (max-width: 1366px) {
	.content{width: 80%;}
	.home-news-module {
		padding: 24px 0;
	}

	.news-col-left,
	.news-col-right {
		max-width: 360px;
	}

	.news-tab {
		font-size: 18px;
	}

	.featured-img {
		margin-bottom: 16px;
		border-radius: 4px;
	}

	.featured-title {
		padding: 30px 14px 10px;
		font-size: 14px;
	}

	.news-text-list li a {
		font-size: 16px;
		padding: 10px 0;
		line-height: 26px;
	}
	.hot-label, .hot-label a{font-size: 15px;}
.hot-tag{font-size: 15px;}
	.news-text-list li a .news-date {
		font-size: 15px;
	}

	.slide-info {
		padding: 20px 24px 48px;
	}

	.slide-title {
		font-size: 18px;
		line-height: 1.45;
		margin-bottom: 12px;
	}

	.slide-desc {
		font-size: 13px;
		line-height: 1.75;
	}

	.newsSwiper .swiper-button-prev,
	.newsSwiper .swiper-button-next {
		width: 38px;
		height: 26px;
	}

	.newsSwiper .swiper-button-prev::after,
	.newsSwiper .swiper-button-next::after {
		font-size: 14px;
	}

	.newsSwiper .swiper-button-prev {
		left: 12px;
	}

	.newsSwiper .swiper-button-next {
		right: 12px;
	}

	.newsSwiper .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
}


@media (max-width: 768px) {


	.home-news-module {
		flex-direction: column;
		padding: 0 0 16px 0;
	}

	.news-col-left,
	.news-col-right {
		max-width: 100%;
	}

	.news-col {
		width: 100%;
	}

	.news-tab {
		font-size: 20px;
		line-height: 34px;
	}

	.featured-img {
		margin-bottom: 12px;
	}

	.featured-title {
		padding: 24px 12px 8px;
		font-size: 17px;
	}

	.news-text-list li a {
		font-size: 17px;
		line-height: 26px;
	}

	.news-text-list li a .news-date {
		font-size: 15px;
		line-height: 26px;
	}

	.slide-info {
		padding: 14px 16px 40px;
	}

	.slide-title {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 8px;
	}

	.slide-desc {
		font-size: 16px;
		line-height: 26px;
	}


}

/* ========== 便民服务模块 ========== */
.convenient_services {
	padding: 1.875rem 0 3.125rem;
}

/* 标题区域 */
.services-title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2.5rem;
	gap: 1.25rem;
}

.services-title .title-bg-left,
.services-title .title-bg-right {
	height: 2.5rem;
	width: auto;
	object-fit: contain;
}

.services-title .title-bg-right {
	transform: scaleX(-1);
}

.services-title h2 {
	margin: 0;
	font-family: 'syhtB';
	font-size: 2rem;
	line-height: 1;
	color: #333;
	letter-spacing: 0.125rem;
}

.services-title h2 span {
	color: #175ddd;
}

/* 服务列表 */
.services-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.125rem;
}

/* 单个服务项 */
.service-item {
	display: flex;
	align-items: center;
	padding: 1.25rem 1rem 1.25rem 1.6rem;
	background: linear-gradient(#f2f9fe, #feffff);
	border: 1px solid #e6edf7;
	border-radius: 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(23, 93, 221, 0.12);
}

.service-item:hover {
	transform: translateY(-3px);

	border-color: #c5d8f5;
}

/* 服务图标 */
.service-icon {
	width: 3.875rem;
	margin-right: 1.125rem;
}



.service-icon img {
	width: 100%;
	display: block;
}

/* 服务名称 */
.service-name {
	font-family: 'syhtB';
	font-size: 1.4rem;
	color: #333;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.service-item:hover .service-name {
	color: #175ddd;
}

@media (max-width: 1440px) {
	.content {
		width: 80%;
	}
}

/* 响应式：1366px */
@media (max-width: 1366px) {


	.convenient_services {
		padding: 24px 0 40px;
	}

	.services-title {
		margin-bottom: 32px;
		gap: 16px;
	}

	.services-title .title-bg-left,
	.services-title .title-bg-right {
		height: 32px;
	}

	.services-title h2 {
		font-size: 24px;
	}

	.services-list {
		gap: 16px;
	}

	.service-item {
		padding: 16px 20px;
	}

	.service-icon {
		width: 56px;
		height: 56px;
		margin-right: 16px;
		border-radius: 12px;
	}

	.service-icon::before {
		width: 18px;
		height: 18px;
	}

	.service-name {
		font-size: 17px;
	}

}

/* 响应式：<768px 移动端 */
@media (max-width: 768px) {
	.convenient_services {
		padding: 16px 0 24px;
	}

	.services-title {
		margin-bottom: 20px;
		gap: 8px;
	}

	.services-title .title-bg-left,
	.services-title .title-bg-right {
		height: 10px;
	}

	.services-title h2 {
		font-size: 22px;
		letter-spacing: 0px;
	}

	.services-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.service-item {
		padding: 12px 8px;
		flex-direction: column;
		text-align: center;
		border-radius: 10px;
	}

	.service-icon {
		width: 48px;
		height: 48px;
		margin-right: 0;
		margin-bottom: 8px;
		border-radius: 10px;
	}

	.service-icon::before {
		width: 14px;
		height: 14px;
		top: -2px;
		left: -2px;
	}



	.service-name {
		font-size: 17.5px;
	}
}

/* ========== 双模块板块 ========== */
.knowledge_section {
	display: flex;
	gap: 5%;
	padding: 1.875rem 0 3.125rem;
}

/* 单个模块 */
.module {
	width:47.5% ;
}

/* 模块头部 */
.module-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid #e6edf7;
}

.module-title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.module-title h2 {
	margin: 0;
	font-family: 'syhtB';
	font-size: 1.75rem;
	color: #175ddd;
	line-height: 30px;
}

.module-title .title-bg {
	height: 1.25rem;
	width: auto;
	object-fit: contain;
}

.module-more {
	font-size: 1rem;
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
}

.module-more:hover {
	color: #175ddd;
}

/* 选项卡栏 */
.module-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem 2rem;
	align-items: center;
}

.module-tab {
	position: relative;
	font-family: 'syhtB';
	font-size: 1.4rem;
	color: #333;
	cursor: pointer;
	line-height: 3rem;
	transition: color 0.25s;
	user-select: none;
	white-space: nowrap;
}

.module-tab:hover {
	color: #175ddd;
}

.module-tab.active {
	color: #175ddd;
}

.module-tab.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: #175ddd;
	border-radius: 1px;
}

/* 选项卡面板 */
.module-panel {
	display: none;
}

.module-panel.active {
	display: block;
	animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 模块主体 */
.module-body {
	width: 100%;
}

/* ===== 左侧模块 - 特色新闻 ===== */
.feature-news {
	width: 100%;
	padding: 1.25rem 1rem;
	display: flex;
	gap: 1.25rem;
	text-decoration: none;
	margin-bottom: 1.25rem;
	transition: opacity 0.3s;
	background: #f2f8ff;
}

.feature-news:hover {
	opacity: 0.85;
}

.feature-img {
	flex-shrink: 0;
	width: 45%;
	aspect-ratio: 4 / 3;
	border-radius: 0.5rem;
	overflow: hidden;
}

.feature-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.feature-news:hover .feature-img img {
	transform: scale(1.05);
}

.feature-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.feature-title {
	font-size: 1.25rem;
	color: #111;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.feature-desc {
	font-size: 1rem;
	color: #777;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.feature-date {
	font-size: 1rem;
	color: #175ddd;
}

/* ===== 左侧模块 - 新闻列表 ===== */
.news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-list li {
	padding: 1rem 0;
	border-bottom: 1px solid #e6edf7;
}


.news-list li a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	font-size: 1.25rem;
	line-height: 1.75rem;
	transition: color 0.3s;
}

.news-list li a::before {
	content: '•';
	color: #175ddd;
	font-size: 1.25rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
	transition-duration: .5s;
}
.news-list li:hover a::before{margin-right: 1rem;}
.news-list li a:hover {
	color: #175ddd;
}

.news-list li a .list-date {
	width: 113px;
	height: 24px;
	line-height: 24px;
	background: url(../images/timeBg.png)no-repeat;
	background-size: 100% 100%;
	margin-left: auto;
	color: #fff;
	font-size: 1rem;
	flex-shrink: 0;
	padding-left: 8px;
}

/* ===== 右侧模块 - 图文列表 ===== */
.image-news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.image-news-list li {
	background: #f2f8ff;
	margin-bottom: 1.3rem;
}

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

.image-news-item {
	display: flex;
	gap: 1rem;
	text-decoration: none;
	transition: opacity 0.3s;
}

.image-news-item:hover {
	opacity: 0.85;
}

.image-news-item .news-img {
	width: 10.625rem;
	overflow: hidden;
}

.image-news-item .news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.image-news-item:hover .news-img img {
	transform: scale(1.05);
}

.image-news-item .news-info {
	width: calc(98% - 10.625rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px 2.5rem 10px 0;
}

.image-news-item .news-title {
	margin: 0;
	font-size: 1.25rem;
	color: #333;
	line-height: 1.75rem;
	font-weight: normal;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
}

.image-news-item:hover .news-title {
	color: #175ddd;
}

.image-news-item .news-date {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 1rem;
	color: #175ddd;
	margin-top: 0.5rem;
}

/* 响应式：1366px */
@media (max-width: 1366px) {
	.knowledge_section {
		gap: 32px;
		padding: 24px 0 40px;
	}

	.module-header {
		margin-bottom: 20px;
		padding-bottom: 10px;
	}

	.module-tabs {
		gap: 4px 20px;
	}

	.module-tab {
		font-size: 18px;
	}

	.module-tab.active::after {
		bottom: -10px;
	}

	.module-more {
		font-size: 14px;
	}

	/* 左侧特色新闻 */
	.feature-news {
		gap: 16px;
		padding-bottom: 16px;
		margin-bottom: 16px;
	}

	.feature-title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.feature-desc {
		font-size: 13px;
		margin-bottom: 8px;
	}

	/* 左侧列表 */
	.news-list li {
		padding: 10px 0;
	}

	.news-list li a {
		font-size: 16px;
	}

	.news-list li a::before {
		font-size: 18px;
		margin-right: 10px;
	}

	.news-list li a .list-date {
		font-size: 13px;
	}



	.image-news-item {
		gap: 14px;
	}

	.image-news-item .news-title {
		font-size: 14px;
	}

	.image-news-item .news-date {
		font-size: 12px;
	}
}

/* 响应式：<768px 移动端 */
@media (max-width: 768px) {
	.knowledge_section {
		flex-direction: column;
		gap: 24px;
		padding: 16px 0 0;
	}

	.module-header {
		flex-wrap: wrap;
	}

	.module-tabs {
		overflow-x: auto;
		flex-wrap: nowrap;
		gap: 0 16px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.module-tabs::-webkit-scrollbar {
		display: none;
	}

	.module-tab {
		font-size: 16px;
		flex-shrink: 0;
	}

	.module-tab.active::after {
		bottom: -8px;
	}

	.module-more {
		font-size: 13px;
		flex-shrink: 0;
	}

	/* 左侧特色新闻 */
	.feature-news {
		flex-direction: column;
		gap: 12px;
	}

	.feature-img {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.feature-title {
		font-size: 17px;
		line-height: 28px;
	}

	.feature-desc {
		font-size: 16px;
		line-height: 26px;
	}

	.feature-date {
		font-size: 15px;
	}

	/* 左侧列表 */
	.news-list li {
		padding: 8px 0;
	}

	.news-list li a {
		font-size: 16px;
		line-height: 26px;
		flex-wrap: wrap;
		gap: 6px;
	}

	.news-list li a::before {
		font-size: 16px;
		margin-right: 0px;
	}

	.news-list li a .list-date {
		font-size: 12px;
	}

	/* 右侧图文列表 */

	.image-news-list li {
		margin-bottom: 15px;
	}

	.image-news-item {
		gap: 12px;
	}

	.image-news-item .news-img {
		width: 40%;
	}

	.image-news-item .news-info {
		padding: 7px;
	}

	.image-news-item .news-title {
		font-size: 16px;
		line-height: 26px;
	}

	.image-news-item .news-date {
		font-size: 15px;
		line-height: 26px;
	}
	.module {
	    width: 100%;
		margin-bottom: 20px;
	}
	.content {
		width: 94%;
	}
}