	.content {
		width: 100%;
		position: relative;
		z-index: 10; /* 添加较低的z-index */
	}

	/* 增加导航栏子菜单的z-index确保其在其他元素上层 */
	.navBar .nav .sub {
		z-index: 1000 !important; 
	}

	.section-ywtab {
		width: 60%;
		min-width: 800px;
		margin: 0 auto;
		display: flex;
		flex-wrap: nowrap;
		position: relative;
		z-index: 5; /* 添加较低的z-index */
	}

	/* 3分之一 */
	.third-width {
		width: calc(33.33% - 5px);
		padding: 0 10px;
	}

	.third-2-width {
		width: calc(66.66% - 5px);
	}

	.txt-list {
		width: 100%;
	}

	.txt-list li {
		width: 100%;
	}

	/* 新闻咨询样式 */
	.news-container {
		width: 100%;
		margin: 0 auto;
		position: relative;
		z-index: 5;
	}

	.news-swiper {
		width: 100%;
		height: 100%;
	}

	.news-items {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding-top: 10px;
	}

	.news-item {
		width: 32%;
		height: 100%;
		margin-bottom: 5px;
		background-color: #fff;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
		border-radius: 4px;
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.news-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

	.news-img {
		width: 100%;
		height: 150px;
		/* overflow: hidden; */
		display: flex;
		align-items: center;
		justify-content: center;
		/* background-color: #f5f5f5; */
	}

	.news-img img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		transition: transform 0.3s ease;
	}

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

	.news-content {
		padding: 12px;
	}

	.news-title {
		font-size: 16px;
		color: #232184;
		margin-bottom: 8px;
		font-weight: bold;
		line-height: 1.3;
		height: 40px;
		overflow: hidden;
	}

	.news-date {
		font-size: 14px;
		color: #999;
		margin-bottom: 8px;
	}

	.news-summary {
		font-size: 14px;
		color: #666;
		line-height: 1.5;
		height: 42px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.news-more {
		text-align: right;
		font-size: 14px;
		margin-top: 5px;
	}

	.invisible {
		visibility: hidden;
	}

	/* 分页器样式 */
	.swiper-pagination {
		position: relative;
		margin-top: 10px;
	}

	.swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		background: #ccc;
		opacity: 1;
	}

	.swiper-pagination-bullet-active {
		background: #232184;
	}

	/* 标语区域样式 */
	.slogan-section {
		width: 100%;
		text-align: center;
	}

	.slogan-container {
		width: 60%;
		min-width: 800px;
		margin: 0 auto;
		overflow: hidden;
	}

	.slogan-swiper {
		width: 100%;
		height: 120px;
	}

	.slogan-img {
		width: 100%;
		max-height: 120px;
		object-fit: cover;
	}

	/* 标语轮播分页器样式 */
	.slogan-pagination {
		position: relative;
		margin-top: 5px;
	}

	.slogan-swiper .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		background: #ccc;
		opacity: 1;
	}

	.slogan-swiper .swiper-pagination-bullet-active {
		background: #232184;
	}