/* 业务能力模块样式 */
.yewu-benefits {
  padding: 60px 0;
  background: #F7F9FB;
  width: 100%;

  box-sizing: border-box;
}

.yewu-benefits .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.yewu-advantages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	font-family: 'AlibabaPuHuiTi';
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
}
@media (max-width: 768px) {
	.yewu-advantages {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		min-width: 0;
	}
}
.advantage-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px 24px;
	text-align: center;
	position: relative;
	transition: all 1s cubic-bezier(.4,0,.2,1);
	will-change: transform;
	border: 1px solid transparent;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.advantage-card:hover {
	
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
	border: 1px solid #2538FF !important;
}
.advantage-card:hover .advantage-title {
	color: #006FFB;
}
.advantage-icon {
	width: 80px;
	height: 80px;
	margin: 10px auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
}

.advantage-icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.advantage-title {
	font-size: 20px;
	font-weight: bold;
	color: #1A2233;
	margin: 0 0 20px 0;
}

.advantage-desc {
	margin-bottom: 30px;
	color: rgba(21, 24, 28, 0.7)

}

.advantage-desc p {
	font-size: 14px !important;
	color: rgba(21, 24, 28, 0.7);
	line-height: 1.8;
	text-align: center;
	height: 122px;
	margin: 0;
	overflow: hidden;
	overflow-y: hidden;
}
.consult-btn {
	display: inline-block;
	width: 132px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #006FFB;
	border: 1px solid #006FFB;
	border-radius: 25px;
	background: #fff;
   
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.consult-btn:hover {
	background: #006FFB;
	color: #fff !important;
	-webkit-text-fill-color: aliceblue;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgb(146 148 241);
}
.consult-btn :visited{
	color: #fff;
}
.benefits-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: all 1s cubic-bezier(.4,0,.2,1);
  -ms-transition: all 1s cubic-bezier(.4,0,.2,1);
  -moz-transition: all 1s cubic-bezier(.4,0,.2,1);
  -o-transition: all 1s cubic-bezier(.4,0,.2,1);
  transition: all 1s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  min-height: 400px;
  cursor: pointer;
  will-change: transform;
}

.benefit-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #2538FF !important;
}

.benefit-icon {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
  transition: border-color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  border-bottom-color: #2538FF;
}

.benefit-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon img {
  transform: scale(1.1);
}

.benefit-title {
  font-size: 24px;
  font-weight: 600;
  color: #15181C;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
	color: #006FFB;
}

.benefit-desc {
  font-size: 16px;
  color: #1A2233;
  line-height: 32px;
  flex: 1;
  padding:8px;
  border-radius: 8px;
  background: #e5f2fb;
}

.benefit-subsection {
  /* margin-bottom: 15px; */
  line-height: 1.4;
}

.benefit-subsection:last-child {
  margin-bottom: 0;
}

.benefit-subsection strong {
  color: #1A2233;
  font-weight: 600;

}

.highlight-down {
	color: #006FFB;
  font-weight: 600;
}

.highlight-up {
  color: #28a745;
  font-weight: 600;
}

.highlight-sub-red {
	color: #006FFB;
  font-weight: 600;
}



		/* 团队实力模块样式 */
		.team-strength {
			padding: 60px 0 20px 0;
			background: #F7F9FB;
		}

		.team-strength .container {
			max-width: 1200px;
			margin: 0 auto;
		}

		.team-photos {
			margin-top: 50px;
			background: #F0F0FB;
    padding: 8px;
	border-radius: 12px;
		}

		.main-photo {
			margin-bottom: 20px;
			border-radius: 12px;
			overflow: hidden;
			box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
		}

		.main-photo img {
			width: 100%;
			height: auto;
			display: block;
			transition: transform 0.3s ease;
		}

		.main-photo:hover img {
			transform: scale(1.02);
		}

		.sub-photos {
			display: flex;
			gap: 18px;
			justify-content: space-between;
		}

		.sub-photo {
		
			border-radius: 8px;
			overflow: hidden;
			box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		
			will-change: transform;
		}
		.big-photo{
			width:640px;
		}

		.sub-photo:hover {
			transform: translateY(-10px) !important;
			box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
		}

		.sub-photo img {
			width: 100%;
			height: 100%;
			display: block;
			transition: transform 0.3s ease;
		}

				.sub-photo:hover img {
			transform: scale(1.05);
		}
		.last-photo{
			display: none;
		}

		
		/* 行业权威认可模块样式 */
		.industry-recognition {
			padding: 40px 0;
			background: #F7F9FB;
		}

		.industry-recognition .container {
			max-width: 1200px;
			margin: 0 auto;
			
		}

		.recognition-tabs {
			margin-top: -20px;
		}

		.recognition-tabs .tab-nav {
			display: flex;
			justify-content: center;
			gap: 360px;
			margin-bottom: 40px;
			position: relative;
		}

		.recognition-tabs .tab-nav::after {
			content: '';
			position: absolute;
			bottom: -20px;
			left: 0;
			right: 0;
			height: 1px;
			background: #e5e7eb;
		}

		.recognition-tabs .tab-btn {
			background: none;
			border: none;
			padding: 0px 24px;
			font-size: 24px;
			font-weight: bold;
			color: #1A2233;
			cursor: pointer;
			position: relative;
			transition: all 0.3s ease;
			font-weight: 500;
		}

		.recognition-tabs .tab-btn:hover {
			color: #006FFB;
		}

		.recognition-tabs .tab-btn.active {
			color: #006FFB;
			font-weight: 600;
		}

		.recognition-tabs .tab-btn.active::after {
			content: '';
			position: absolute;
			bottom: -21px;
			left: 50%;
			transform: translateX(-50%);
			width: 80px;
			height: 3px;
			background: #006FFB;
			border-radius: 2px;
			z-index: 1;
		}

		.recognition-tabs .tab-content {
			position: relative;
			margin-top: 40px;
		}

		.recognition-tabs .tab-panel {
			display: none;
			opacity: 0;
			transform: translateY(20px);
			transition: opacity 0.4s ease, transform 0.4s ease;
		}

		.recognition-tabs .tab-panel.active {
			display: block;
			opacity: 1;
			transform: translateY(0);
		}

		.certificates-grid {
			display: flex;
			flex-wrap: wrap;
			gap: 20px;
			justify-content: center;
		}

		.certificate-item {
			background: #F0F6FF;
			width: 18%;
			margin-bottom: 20px;
			display: flex;
			justify-content: center;
			align-items: center;
			flex-direction: column;
			padding: 20px 0;
			box-sizing: border-box;
			-webkit-transition: all 1s cubic-bezier(.4,0,.2,1);
			-ms-transition: all 1s cubic-bezier(.4,0,.2,1);
			-moz-transition: all 1s cubic-bezier(.4,0,.2,1);
			-o-transition: all 1s cubic-bezier(.4,0,.2,1);
		transition: all 1s cubic-bezier(.4,0,.2,1);
		text-align: center;
		height: 250px;
		overflow: hidden;
		overflow-y: hidden;
		will-change: transform;
	}

		.certificate-item:hover {
			transform: translateY(-10px) !important;
			box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
			border: 1px solid #006FFB  !important;
		}

		.certificate-image {
			width: 100%;
			height: 154px;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 12px;
			padding: 0 10px;
			box-sizing: border-box;
		}

		.certificate-image img {
			max-width: 100%;
			max-height: 100%;
			width: auto;
			height: auto;
			object-fit: contain;
			display: block;
			transition: transform 0.3s ease;
		}

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

		.certificate-label {
			font-size: 14px;
			color: #1A2233;
			line-height: 1.4;
			font-weight: 500;
			padding:  10px;
			
			box-sizing: border-box;
		}

		/* 响应式设计 */
		@media (max-width: 1024px) {
			/* 业务能力模块响应式 */
			.yewu-benefits {
				padding: 60px 0;
			}

			.benefits-cards {
				gap: 20px;
			}

			.benefit-card {
				flex: 0 0 calc(33.333% - 13.33px);
				padding: 30px 20px;
				min-height: 350px;
			}

			.benefit-icon {
				margin-bottom: 20px;
				padding-bottom: 15px;
			}

			.benefit-icon img {
				width: 45px;
				height: 45px;
			}

			.benefit-title {
				font-size: 18px;
			}

			.benefit-desc {
				font-size: 13px;
			}

			
			

			/* 团队实力模块响应式 - 桌面端 */
			.team-strength {
				padding: 60px 0;
			}

			.team-photos {
				margin-top: 40px;
			}

			.main-photo {
				margin-bottom: 25px;
			}

			.sub-photos {
				gap: 15px;
			}

			
			/* 行业权威认可模块响应式 - 桌面端 */
			.industry-recognition {
				padding: 60px 0;
			}

			.recognition-tabs {
				margin-top: 40px;
			}

			.recognition-tabs .tab-nav {
				gap: 30px;
				margin-bottom: 35px;
			}

			.recognition-tabs .tab-btn {
				padding: 10px 20px;
				font-size: 16px;
			}

			

			
		}

		@media (max-width: 768px) {
			/* 业务能力模块响应式 - 平板 */
			.yewu-benefits {
				padding: 50px 0;
			}

			.benefits-cards {
				flex-direction: column;
				gap: 20px;
			}

			.benefit-card {
				flex: 0 0 100%;
				min-height: auto;
			}

			.benefit-icon {
				margin-bottom: 20px;
				padding-bottom: 15px;
			}

			.benefit-icon img {
				width: 45px;
				height: 45px;
			}

			.benefit-title {
				font-size: 18px;
			}

			.benefit-desc {
				font-size: 14px;
			}

			
			

			/* 团队实力模块响应式 - 平板 */
			.team-strength {
				padding: 30px 0;
			}
			
			.team-photos {
				margin-top: 35px;
			}

			.main-photo {
				margin-bottom: 20px;
			}

			.sub-photos {
				display: flex;
				flex-wrap: wrap;
				
				gap: 12px;
			}
			.last-photo{
				display: block;
			}

			

			/* 行业权威认可模块响应式 - 平板 */
			.industry-recognition {
				padding: 30px 0;
			}

			.recognition-tabs {
				margin-top: 35px;
			}

			.recognition-tabs .tab-nav {
				gap: 100px;
				margin-bottom: 30px;
			}

			.recognition-tabs .tab-btn {
				padding: 9px 18px;
				font-size: 16px;
				font-weight: 600;
			}

			.certificates-grid {
				padding: 0 16px;
				gap: 0px;
				justify-content: space-between;
			}

			.certificate-item {
				width: calc(50% - 8px);
				margin-bottom: 16px;
				height: 220px;
			}
			.certificate-image {
				margin-bottom: 0px;
				height: 160px !important;
			}
			.certificate-image img{
				max-height: 100%
			}
			
			/* IT人力外包资讯模块响应式 - 平板 */
			.it-news {
				padding: 50px 0;
			}

			.news-content {
				flex-direction: column;
				gap: 20px;
			}

			.latest-news {
				width: 100% !important
			}

			.news-item {
				gap: 15px;
			}

			.news-image {
				width: 100px;
				height: 70px;
			}

			

			/* IT人力外包资讯模块响应式 - 桌面端 */
			.it-news {
				padding: 60px 0;
			}

			.news-content {
				gap: 25px;
			}

			.hot-news {
				padding: 25px;
			}

			.latest-news {
				width: 280px;
				padding: 25px;
			}

			
		}

		@media (max-width: 480px) {
			/* 业务能力模块响应式 - 手机 */
			.yewu-benefits {
				padding: 40px 0;
				width: 100%;
				overflow-x: hidden;
				box-sizing: border-box;
			}

			.benefits-cards {
				gap: 15px;
			}

			.benefit-card {
				padding: 20px 15px;
				/* 移动端触摸优化 */
				-webkit-tap-highlight-color: transparent;
				touch-action: manipulation;
			}

			/* 移动端hover效果优化 */
			.benefit-card:active {
				transform: translateY(-4px);
				box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
			}

			.benefit-icon {
				margin-bottom: 10px;
				padding-bottom: 12px;
				
				align-items: flex-start;
				gap: 10px;
			}

			.benefit-icon img {
				width: 40px;
				height: 40px;
			}

			.benefit-title {
				font-size: 16px;
				margin-top: 6px;
			}

			.benefit-desc {
				font-size: 13px;
			}

			.benefit-subsection {
				margin-bottom: 12px;
				
			}

			.benefit-subsection strong {
				font-size: 13px;
			}

			

			/* 团队实力模块响应式 - 手机 */
			.team-strength {
				padding: 30px 0;
			}

			.team-photos {
				margin-top: 30px;
			}

			.main-photo {
				margin-bottom: 7px;
			}

			.sub-photos {
				flex-direction: row !important;
				flex-wrap: wrap !important;
				gap: 7px !important;
			}

			.sub-photo {
				width: calc(50% - 4px) !important;
				flex: 0 0 calc(50% - 4px) !important;
				max-width: calc(50% - 4px) !important;
				min-width: calc(50% - 4px) !important;
			}

			.last-photo{
				display: block;
			}

			/* 行业权威认可模块响应式 - 手机 */
			.industry-recognition {
				padding: 30px 0;
			}

			.recognition-tabs {
				margin-top: 30px;
			}

			.recognition-tabs .tab-nav {
				gap: 100px;
				margin-bottom: 25px;
			}

			.recognition-tabs .tab-btn {
				padding: 8px 16px;
				font-size: 16px;
				font-weight: 600;
				
			}
			.certificates-grid {
				padding: 0 16px;
				gap: 0px;
				justify-content: space-between;
			}

			.certificate-item {
				width: calc(50% - 8px);
				margin-bottom: 16px;
				height: 220px;
			}
			.certificate-image {
				width: 100%;
				margin-bottom: 0px;
				height: 160px !important;
			}
			.certificate-image img{
				max-height: 100%
			}
		
			.certificate-label {
				font-size: 12px;
			}

			/* IT人力外包资讯模块响应式 - 手机 */
			.it-news {
				padding: 40px 0;
			}

			.news-content {
				flex-direction: column;
				gap: 20px;
			}

			.latest-news {
				width: 100%;
				padding: 20px;
			}

			.news-item {
				
				gap: 15px;
				padding: 15px;
				border-radius: 8px;
			}

			.news-item:hover {
				border: 1px solid #006FFB;
				background: rgba(79, 70, 229, 0.02);
			}

			.news-image {
				width: 100%;
				height: 150px;
			}

			.news-title {
				font-size: 15px;
			}

			.news-desc {
				font-size: 13px;
			}

			.latest-news-item {
				padding: 10px 0;
			}

			.latest-title {
				font-size: 13px;
			}

			.latest-date {
				font-size: 11px;
			}

			
		}


	

	/* IT人力外包资讯模块样式 */
	.it-news {
		padding: 60px 0;
		background: url(/template/pc/skin/images/it-bg.png) no-repeat center center;
		background-size: cover;
	}

	.it-news .container {
		max-width: 1200px;
		margin: 0 auto;
		
	}

	.news-content {
		display: flex;
		gap: 30px;
		margin-top: 50px;
	}

	.hot-news {
		flex: 1;
		background: #fff;
		border-radius: 12px;
		padding: 30px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	}

	.latest-news {
		width: 300px;
		background: #fff;
		border-radius: 12px;
		padding: 30px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	}

	.news-header {
		display: flex;
		align-items: center;
		margin-bottom: 25px;
		
	}
	.news-header2 {
		display: flex;
		align-items: center;
		margin-bottom: 25px;
		justify-content: space-between;
	}
	.news-header2 .left {
		display: flex;
		align-items: center;
	}
	.more-header-btn {
		display: none;
	}
	.news-header img,.news-header2 img{
		
		margin-right: 6px;
	}
	.news-header h3 {
		font-size: 20px;
		font-weight: bold;
		color: #1A2233;
		margin: 0;
	}
	.news-header .news-icon,.news-header2 .news-icon {
		display: inline-block;
		width:16px;
		margin-left: 6px;
	}

	


	.news-list {
		margin-bottom: 25px;
	}

	.news-item {
		display: flex;
		gap: 20px;
		padding: 20px 10px;
		
		text-decoration: none;
		color: inherit;
		will-change: transform;
	}

	.news-item:hover {

		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
		border: 1px solid #006FFB !important;
		border-radius: 8px;

		background: rgba(79, 70, 229, 0.02);
	}

	.news-image {
		width: 120px;
		height: 80px;
		border-radius: 8px;
		overflow: hidden;
		flex-shrink: 0;
	}

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

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

	.news-info {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.news-title {
		font-size: 16px;
		font-weight: bold;
		color: #1A2233;
		margin: 0 0 10px 0;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.news-desc {
		font-size: 14px;
		color: #15181C;
		line-height: 1.6;
		margin: 0 0 10px 0;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		flex: 1;
	}

	.news-time {
		font-size: 12px;
		color: #999;
	}

	.news-divider {
		height: 1px;
		background: #e5e7eb;
		margin: 0;
	}

	.news-more {
		text-align: center;
	}

	.more-news-btn {
		display: inline-flex;
		align-items: center;
		padding: 12px 24px;
		background: #fff;
		border: 1px solid #006FFB;
		border-radius: 25px;
		color: #006FFB;
		text-decoration: none;
		font-size: 14px;
		font-weight: 500;
		transition: all 0.3s ease;
	}

	.more-news-btn:hover {
		background: #006FFB;;
		color: #fff;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
	}

	.latest-news-list {
		margin-top: 20px;
	}

	.latest-news-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px 0;
		-webkit-transition: all 1s cubic-bezier(.4,0,.2,1);
		-ms-transition: all 1s cubic-bezier(.4,0,.2,1);
		-moz-transition: all 1s cubic-bezier(.4,0,.2,1);
		-o-transition: all 1s cubic-bezier(.4,0,.2,1);
		transition: all 1s cubic-bezier(.4,0,.2,1);
		cursor: pointer;
		text-decoration: none;
		color: inherit;
		will-change: transform;
	}

	.latest-news-item:hover {
		transform: translateY(-5px) !important;
		
	}

	.latest-news-item:hover .latest-title {
		color: #006FFB;

	}

	.latest-title {
		font-size: 14px;
		color: #1A2233;
		flex: 1;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.latest-date {
		font-size: 12px;
		color: #999;
		margin-left: 10px;
	}

	

/* 为什么要用人力外包 */
.waibao-comparison {
	padding: 60px 0;
	background: #ECF7FF url('/template/pc/skin/images/banner-home-bg4.png') no-repeat center center;
	background-size: cover;
	position: relative;
}

.waibao-comparison .container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

/* 人力外包优势卡片布局 */
.outsourcing-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.benefit-item {
	background: #fff;
	border-radius: 12px;
	padding: 30px 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	border-color: #006FFB;
}

.benefit-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.benefit-title {
	font-size: 20px;
	font-weight: bold;
	color: #1A2233;
	margin: 0;
	line-height: 1.4;
	flex: 1;
}

.highlight-percent {
	color: #006FFB;
	font-weight: bold;
}

.benefit-desc {
	font-size: 14px;
	color: #15181C;
	line-height: 1.8;
	min-height: 142px;
	margin: 0;
	width: 100%;
}

.benefit-icon-right {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 16px;
}

.benefit-icon-right img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.outsourcing-benefits {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.more-header-btn {
		display: block
	}
	.waibao-comparison {
		padding: 40px 0;
	}

	.outsourcing-benefits {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.benefit-item {
		padding: 24px 20px;
	}

	.benefit-header {
		margin-bottom: 12px;
	}

	.benefit-title {
		font-size: 18px;
	}

	.benefit-desc {
		font-size: 13px;
		line-height: 1.6;
		min-height: 90px;
	}

	.benefit-icon-right {
		width: 50px;
		height: 50px;
		margin-left: 12px;
	}
}

@media (max-width: 480px) {
	.waibao-comparison {
		padding: 30px 0;
	}

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

	.benefit-header {
		margin-bottom: 12px;
	}

	.benefit-title {
		font-size: 16px;
	}

	.benefit-desc {
		font-size: 12px;
	}

	.benefit-icon-right {
		width: 40px;
		height: 40px;
		margin-left: 10px;
	}
}

.comparison-container {
	/* display: flex; */
	height: 496px;

	align-items: stretch;
	position: relative;
}

.comparison-card {
	position: absolute;

	width:620px;
	border-radius: 16px;
	padding: 20px;

}

.traditional-seo {
	left:0;
	background: url('/template/pc/skin/images/v_01.png') no-repeat ;
	background-size:cover;
	
}

.geo-seo {
	right:0;
	background: url('/template/pc/skin/images/v_02.png') no-repeat ;
	background-size:cover;
	
}



.vs-divider {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	z-index: 10;
}

.vs-divider img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card-header {
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.card-title {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.traditional-seo .card-title {
	justify-content: flex-start;
}

.geo-seo .card-title {
	justify-content: flex-end;
}

.title-icon {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.title-text1 {
	color: #3C63FD;
}
.title-text2 {
	color: #006FFB;
}
.title-sub-icon {
	margin-top: 2px;
}

.title-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card-title h3 {
	font-size: 22px;
	font-weight: bold;
	margin: 0;
}

.geo-seo .card-title h3 {
	font-size: 22px;
	font-weight: bold;
	margin: 0;
	text-align: right;
}



.platform-icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.traditional-seo .platform-icons {
	justify-content: flex-start;
}

.geo-seo .platform-icons {
	justify-content: flex-end;
}



.card-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 470px;
}
.geo-seo .card-content {
	justify-content: flex-end;
	text-align: right;
    margin-left: auto;
	max-width: 500px;
}
.content-section {
	width: 100%;
	padding: 12px;
	min-height: 110px;
	border-radius: 12px;
	opacity: 1;
	background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 98%);
}
.content-section h4 {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 10px 0;
	color: #15181C;
	position: relative;
}
.content-section h4::before{
	content: '';
	position: absolute;
	bottom: -4px;
	width: 64px;
	height: 1px;
	background: #ddd;
} 
.geo-seo .content-section h4::before{
	content: '';
	position: absolute;
	bottom: -4px;
	right: 0!important;
	width: 64px;
	height: 1px;
	background: #ddd;
} 

.content-section p {
	font-size: 12px;
	line-height: 18px;
	color: #15181C;
	margin: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.comparison-container {
		flex-direction: column;
		gap: 30px;
	}

	.vs-divider {
		position: static;
		transform: none;
		margin: 20px auto;
		width: 60px;
		height: 60px;
	}

	.comparison-card {
		padding: 30px 25px;
	}

	.card-content {
		width: 100% !important;
		margin-left: 0 !important;
	}

	.geo-seo .card-content {
		justify-content: flex-start !important;
		text-align: left !important;
		margin-left: 0 !important;
	}

	.content-section {
		width: 100% !important;
		height: auto !important;
		min-height: 128px;
	}

	.geo-seo .content-section h4::before {
		right: auto !important;
		left: 0 !important;
	}
}

@media (max-width: 768px) {
	.waibao-comparison {
		padding: 20px 0;
	}

	.comparison-container {
		display: flex
;
    align-items: stretch;
    position: relative;
		gap: 20px;
		height: auto;
	}

	.comparison-card {
		position: static;
		padding: 16px;
		background: #fff !important;
		max-width: 100%;
	}

	.traditional-seo {
		background: #f0f8ff !important;
	}

	.geo-seo {
		background: #fff5f5 !important;
	}

	.card-title {
		flex-direction: row;
		text-align: left;
		gap: 8px;
		justify-content: flex-start !important;
	}

	.geo-seo .card-title {
		justify-content: flex-start !important;
		text-align: left;
		/* 重新排序：图标在左，文本在右 */
		flex-direction: row-reverse;
	}

	.title-icon {
		width: 60px;
		height: 60px;
		margin: 0;
		/* 确保图标不收缩 */
		flex-shrink: 0;
	}

	.title-text1,
	.title-text2 {
		text-align: left;
		flex: 1;
	}

	.geo-seo .title-text2 {
		text-align: left;
		/* 确保文本部分占据剩余空间 */
		flex: 1;
	}

	.title-text1 h3,
	.title-text2 h3 {
		font-size: 18px;
		margin: 0;
		text-align: left !important;
	}

	.geo-seo .title-text2 h3 {
		text-align: left !important;
	}

	.title-sub-icon {
		margin: 10px 0 0;
		display: block;
		width: 90px;
		height: auto;
	}

	.geo-seo .title-sub-icon {
		margin: 10px 0 0 0;
		width: 150px;
		height: auto;
	}

	.card-content {
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
	}

	.geo-seo .card-content {
		justify-content: flex-start !important;
		text-align: left !important;
		margin-left: 0 !important;
	}

	.content-section {
		width: 100% !important;
		height: auto !important;
		min-height: 100px;
		padding: 15px;
		background: rgba(255, 255, 255, 0.8);
		border-radius: 8px;
		margin-bottom: 10px;
	}

	.content-section h4 {
		font-size: 16px;
		text-align: left;
	}

	.geo-seo .content-section h4 {
		text-align: left !important;
	}

	.geo-seo .content-section h4::before {
		right: auto !important;
		left: 0 !important;
	}

	.content-section p {
		font-size: 13px;
		text-align: left;
	}

	.geo-seo .content-section p {
		text-align: left !important;
	}

	.vs-divider {
		position: absolute;
        top: 42.6%;
        left: 44%;
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 480px) {
	.waibao-comparison {
		padding: 20px 0;
	}

	.comparison-container {
		gap: 15px;
	}

	.comparison-card {
		padding: 16px;
		background: #fff !important;
		transition: none !important;
		border: none !important;
		max-width: 100%;
	}

	.comparison-card:hover {
		transform: none !important;
		box-shadow: none !important;
		border: none !important;
	}

	.traditional-seo {
		background: #f0f8ff !important;
	}

	.geo-seo {
		background: #fff5f5 !important;
	}

	.card-title {
		flex-direction: row;
		text-align: left;
		gap: 8px;
		justify-content: flex-start !important;
	}

	.geo-seo .card-title {
		justify-content: flex-start !important;
		text-align: left;
		/* 重新排序：图标在左，文本在右 */
		flex-direction: row-reverse;
	}

	.title-icon {
		width: 50px;
		height: 50px;
		margin: 0;
		/* 确保图标不收缩 */
		flex-shrink: 0;
	}

	.title-text1,
	.title-text2 {
		text-align: left;
		flex: 1;
	}

	.geo-seo .title-text2 {
		text-align: left;
		/* 确保文本部分占据剩余空间 */
		flex: 1;
	}

	.title-text1 h3,
	.title-text2 h3 {
		font-size: 16px;
		margin: 0;
		text-align: left !important;
	}

	.geo-seo .title-text2 h3 {
		text-align: left !important;
	}

	.title-sub-icon {
		margin: 0;
		display: block;
		width: 90px;
		height: auto;
	}

	.geo-seo .title-sub-icon {
		margin: 0px 0 0 0;
		width: 150px;
		height: auto;
	}

	.card-content {
		width: 100% !important;
		margin-left: 0 !important;
	}

	.geo-seo .card-content {
		justify-content: flex-start !important;
		text-align: left !important;
		margin-left: 0 !important;
	}

	.content-section {
		width: 100% !important;
		height: auto !important;
		min-height: 80px;
		padding: 12px;
		background: rgba(255, 255, 255, 0.8);
		border-radius: 6px;
		margin-bottom: 8px;
	}

	.content-section h4 {
		font-size: 14px;
		text-align: left;
	}

	.geo-seo .content-section h4 {
		text-align: left !important;
	}

	.geo-seo .content-section h4::before {
		right: auto !important;
		left: 0 !important;
		width: 40px;
	}

	.content-section p {
		font-size: 12px;
		text-align: left;
		line-height: 1.5;
	}

	.geo-seo .content-section p {
		text-align: left !important;
	}

	.vs-divider {
		width: 40px;
		height: 40px;
		position: absolute;
        top: 43%;
        left: 44%;
		
	}
}



/* 人力外包岗位模块 begin */
.job-yiqipai {
	padding: 60px 0 80px 0;
	background: #F7F9FB;
	width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

.job-yiqipai .container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.job-yiqipai .service-title {
	text-align: center;
	margin-bottom: 40px;
}

.job-yiqipai .service-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #006FFB;
	margin-bottom: 20px;
}

.job-yiqipai .service-title p {
	font-size: 16px;
	color: #15181C;
	line-height: 1.6;
	max-width: 640px;
}

.job-yiqipai-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap: 16px;
	font-family: 'AlibabaPuHuiTi';
	box-sizing: border-box;	
	
}

.job-yiqipai-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	padding: 10px;
}
.job-yiqipai-item2 {
	
}
.job-yiqipai-item img {
	width:90px
}
.job-yiqipai-item:hover {
	
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
	border: 1px solid #2538FF !important;
}

/* 易企派优势模块 begin */
.youshi-yiqipai {
	padding: 60px 0;
	background: #E8F4FF;
}




.youshi-yiqipai .container {
	max-width: 1200px;
	margin: 0 auto;
}

.youshi-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	position: relative;
}

.youshi-title h2 {
	font-size: 40px;
	font-weight: bold;
	color: #006FFB;
	margin: 0;
	position: relative;
	margin-bottom: 20px;
}

.youshi-title-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.youshi-title-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.youshi-title-icon.left-icon {
	transform: scaleX(-1);
}

.youshi-subtitle {
	text-align: center;
	font-size: 16px;
	color: #666;
	margin-bottom: 50px;
	line-height: 1.6;
}

.youshi-cards {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.youshi-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	flex: 0 0 calc((100% - 80px) / 5);
	max-width: 220px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.youshi-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.youshi-card-icon {
	margin-bottom: 10px;
}

.youshi-card-icon .icon-bg {
	width: 80px;
	height: 80px;
	
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.youshi-card-icon .icon-circle {


	display: flex;
	align-items: center;
	justify-content: center;
}

.youshi-card-icon .icon-circle img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	
}

.youshi-card-title {
	font-size: 20px;
	font-weight: bold;
	color: #1A2233;
	margin: 0 0 15px 0;
	line-height: 1.4;

}
.youshi-card-title .highlight-number {
	color: #006FFB;
	font-size: 18px;
	
}
.youshi-card-line {
	height: 1px;
	background: #ddd;
	margin: 0 auto;
	width: 100%;
}

.youshi-card-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin-top: 15px;
	
	text-align: center;
	flex: 1;
}

/* 客户案例模块 begin */
.anli-yiqipai {
	padding: 60px 0 10px 0 ;
	background: #f7fbfe;
	overflow: hidden;
}

.anli-yiqipai .container {
	max-width: 1200px;
	margin: 0 auto;
}

.anli-yiqipai .youshi-title {
	margin-bottom: 30px;
}

.anli-title-icon {
	text-align: center;
	margin-bottom: 40px;
}

.anli-title-icon img {
	max-width: 100%;
	height: auto;
}

.anli-swiper-container {
	margin-top: 20px;
}

.anli-swiper-row {
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}

.anli-swiper-row .swiper-wrapper {
	display: flex;
	align-items: center;
}

.anli-swiper-row .swiper-slide {
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.anli-logo-item {
	width: 166px;
	height: 80px;
	background: #fff;
	border-radius: 8px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	overflow-y: hidden;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.anli-logo-item:hover {
	
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.anli-logo-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.yiqipai-advantages {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.job-yiqipai {
		padding: 60px 0;
		width: 100%;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	.job-yiqipai .service-title h2 {
		font-size: 28px;
	}

	.job-yiqipai .service-title p {
		font-size: 14px;
	}

	.job-yiqipai-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.advantage-card {
		padding: 16px;
	}

	.advantage-title {
		font-size: 18px;
	}
	.advantage-desc {
		margin-bottom: 10px;
	}
	.advantage-desc p {
		font-size: 13px !important;
		text-align: center;
		line-height: 1.6;
	}

	.consult-btn {
		
		font-size: 13px;
	}

	/* 易企派优势模块响应式 - 平板 */
	.youshi-yiqipai {
		padding: 50px 0;
	}

	.youshi-title h2 {
		font-size: 32px;
	}

	.youshi-title-icon {
		width: 30px;
		height: 30px;
	}

	.youshi-subtitle {
		font-size: 14px;
		margin-bottom: 40px;
	}

	.youshi-cards {
		justify-content: center;
		gap: 16px;
		padding:16px;
	}

	.youshi-card {
		flex: 0 0 calc(50% - 8px);
		min-width: 0;
		max-width: 280px;
	}

	.youshi-card-title {
		font-size: 18px;
	}

	.youshi-card-desc {
		font-size: 13px;
	}
	.job-yiqipai-item img {
		width:80px;
		scale: 1.2;
		margin-bottom: -10px;
	}
	/* 客户案例模块响应式 - 平板 */
	.anli-yiqipai {
		padding: 50px 0;
	}

	.anli-logo-item {
		width: 166px;
		height: 80px;
		padding: 15px;
	}

	.anli-swiper-row {
		margin-bottom: 15px;
	}
	.xgwztj{margin-bottom: 20rem;}
	.xgwztj h3{line-height: 20rem;font-size: 16rem;    background: url(../images/ns_08.png) no-repeat 0;background-size: 20rem;color: #1A2233;margin-bottom: 16rem;}
	.xgwztj ul li{margin-bottom: 5.7rem;padding-bottom: 5.9rem}
	.xgwztj ul li a{line-height: 20rem;height: 20rem;font-size: 12rem;}
	
	.xgwztj ul li a span{font-size:12rem;width: calc(100% - 125rem)}
	.xgwztj ul li a em{font-size:13rem;width: 100rem;}
}

@media (max-width: 480px) {
	.job-yiqipai {
		padding: 40px 0;
		width: 100%;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	.job-yiqipai .service-title h2 {
		font-size: 24px;
	}

	.job-yiqipai .service-title p {
		font-size: 13px;
	}

	.job-yiqipai-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		padding-left: 8px;
		padding-right: 8px;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.job-yiqipai-item {
		width: 100%;
		max-width: 100%;
		height: 130px;
		font-size: 12px;
		text-align: center;
		min-width: 0;
		box-sizing: border-box;
	}
	.job-yiqipai-item2 {
		margin-left:50px !important;
	}
	.advantage-card {
		padding: 16px;
		min-width: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	.yewu-advantages {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		width: 100%;
		min-width: 0;
		overflow: hidden;
	}

	/* 客户案例模块响应式 - 手机 */
	.anli-yiqipai {
		padding: 40px 0;
	}

	.anli-yiqipai .youshi-title {
		margin-bottom: 20px;
	}

	.anli-title-icon {
		margin-bottom: 30px;
	}

	.anli-swiper-container {
		margin-top: 30px;
	}

	.anli-logo-item {
		width: 166px;
		height: 80px;
		padding: 12px;
	}

	.anli-swiper-row {
		margin-bottom: 12px;
	}

	/* 易企派优势模块响应式 - 手机 */
	.youshi-yiqipai {
		padding: 40px 0;
	}

	.youshi-title {
		gap: 10px;
	}

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

	.youshi-title-icon {
		width: 24px;
		height: 24px;
	}

	.youshi-subtitle {
		font-size: 13px;
		margin-bottom: 30px;
		padding: 0 15px;
	}

	.youshi-cards {
		gap: 12px;
		justify-content: center;
		
	}

	.youshi-card {
		flex: 0 0 calc(50% - 6px);
		max-width: calc(50% - 6px);
		padding: 24px 20px;
	}

	.youshi-card-icon .icon-bg {
		width: 70px;
		height: 70px;
	}

	.youshi-card-icon .icon-circle {
		width: 50px;
		height: 50px;
	}

	.youshi-card-icon .icon-circle img {
		width: 58px;
		height: 58px;
		scale: 1.6;
	}

	.youshi-card-title {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.youshi-card-desc {
		font-size: 12px;
		line-height: 1.6;
	}
}

	.advantage-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 0px;
	}

	.advantage-icon img {
		width: 60px;
		height: 60px;
	}

	.advantage-title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.advantage-desc {
		margin-bottom: 10px;
	}
	.advantage-desc p {
		font-size: 16px !important;
		text-align: center;
		line-height: 1.6;
	}

	.highlight-number {
		font-size: 14px;
	}

	.consult-btn {
		
		font-size: 12px;
	}

/* 为什么选择易企派模块 end */

/* 案例模块 begin */
.geo-cases {
	padding: 60px 0;
	background: #fff;
}

.geo-cases .container {
	max-width: 1200px;
	margin: 0 auto;

}

.geo-cases .service-title {
	text-align: center;
	margin-bottom: 60px;
}

.geo-cases .service-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #1A2233;
	margin-bottom: 20px;
}

.geo-cases .service-title p {
	font-size: 16px;
	color: #15181C;
	line-height: 1.6;
}

.cases-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}

.case-item {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 1s cubic-bezier(.4,0,.2,1);
	will-change: transform;
	border: 1px solid transparent;
	overflow: hidden;
	overflow-y: hidden;
}

.case-item:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
	border: 1px solid #2538FF !important;
}

.case-logo {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.case-logo img {
	max-width: 240px;
	max-height: 120px;
	object-fit: contain;
}

.case-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
}

.case-item:hover .case-overlay {
	opacity: 1;
	visibility: visible;
}

.overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	background: rgba(187, 188, 249, 0.6);
}

.case-action {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.view-case-btn {
	display: inline-block;
	padding: 12px 24px;
	background: #fff;
	color: #2538FF;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 25px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.view-case-btn:hover {
	background: #fff;
	transform: translateY(-2px);
	color: #2538FF;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.case-highlight {
	background: #006FFB;
	color: #fff;
}

.case-highlight .case-logo img {
	filter: brightness(0) invert(1);
}

.case-label {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.9);
	color: #2538FF;
	padding: 8px 16px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

.cases-actions {
	text-align: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.more-cases-btn {
	display: inline-block;
	width:200px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #006FFB;
	border: 1px solid #006FFB;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.more-cases-btn:hover {
	background: #0553b3;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgb(146 148 241);
}
.more-cases-btn img {
	width: 20px;
	height: 20px;
	
	vertical-align: sub;
}

.consult-now-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #006FFB;;
	border: 1px solid #2538FF;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.consult-now-btn:hover {
	background: #006FFB;;
	border-color: #2538FF;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(121, 114, 248, 0.4);
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.cases-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 25px;
	}
}

@media (max-width: 992px) {
	.cases-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.geo-cases {
		padding: 60px 0;
	}

	.geo-cases .service-title h2 {
		font-size: 28px;
	}

	.geo-cases .service-title p {
		font-size: 14px;
	}

	.cases-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		margin-bottom: 40px;
	}

	.case-item {
		padding: 20px 15px;
	}
	.case-item:nth-child(n+9) {
		display: none;
	}

	.case-logo {
		height: 60px;
		margin-bottom: 15px;
	}

	.case-logo img {
		max-width: 100px;
		max-height: 50px;
	}

	.cases-actions {
		flex-direction: column;
		gap: 15px;
	}

	.more-cases-btn,
	.consult-now-btn {
		width:160px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-size: 14px;
	}

	.view-case-btn {
		padding: 10px 20px;
		font-size: 13px;
	}

	.case-label {
		font-size: 11px;
		padding: 6px 12px;
	}
}

@media (max-width: 480px) {
	.geo-cases {
		padding: 40px 0;
	}

	.geo-cases .service-title h2 {
		font-size: 24px;
	}

	.geo-cases .service-title p {
		font-size: 13px;
	}

	.cases-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
		margin-bottom: 30px;
	}

	.case-item {
		padding: 15px 10px;
	}
	.case-item:nth-child(n+9) {
		display: none;
	}

	.case-logo {
		height: 50px;
		margin-bottom: 10px;
	}

	.case-logo img {
		max-width: 80px;
		max-height: 40px;
	}

	.more-cases-btn,
	.consult-now-btn {
		width:160px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-size: 14px;
	}

	.view-case-btn {
		padding: 8px 16px;
		font-size: 12px;
	}

	.case-label {
		font-size: 10px;
		padding: 5px 10px;
	}
}
/* GEO（AI SEO）优化案例模块 end */



/* 关于易企派模块 begin */
.about-yiqipai {
	padding: 60px 0 40px 0;
	background: #f7fbfe;
}

.about-yiqipai .container {
	max-width: 900px;
	margin: 0 auto;

}

.about-yiqipai .service-title {
	text-align: center;
	margin-bottom: 40px;
}

.about-yiqipai .service-title h2 {
	font-size: 40px;
	font-weight: bold;
	color: #006FFB;
	margin-bottom: 20px;
}

.about-content {

	
}

.about-left {
	flex: 0 0 44%;
}

.about-image {
	width: 100%;

	margin-top: 30px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.about-right {
	flex: 1;
	width:660px
}

.about-subtitle {
	font-size: 32px;
	font-weight: bold;
	color: #15181C;
	margin: 0 0 30px 0;
}

.about-desc {
	font-size: 16px;
	color: rgba(21, 24, 28, 0.7);
	line-height: 1.8;
	margin: 0 0 30px 0;
	text-align: justify;
}

.highlight-year,
.highlight-code,
.highlight-service,
.highlight-number {
	color: #006FFB;
	font-weight: bold;
}

.about-stats {
	display: flex;
	gap: 20px;
	
}

.stat-item {
	text-align: center;
	flex: 1;

	padding:40px 16px;
	border-radius: 12px;
	
	transition: all 0.3s ease;
}

.stat-number {
	font-size: 20px;
	font-weight: bold;
	color: #006FFB;
	margin-bottom: 10px;
	line-height: 1;
	text-align: center;
}

.count-number {
	display: inline-block;
}

.stat-label {
	font-size: 22px;
	color: #000C17;
	line-height: 1.4;
	text-align: center;
}

/* 数字滚动动画 */
@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.count-number.animate {
	animation: countUp 0.6s ease-out;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.about-content {
		gap: 40px;
	}

	.about-stats {
		gap: 10px;
		
	}
}

@media (max-width: 768px) {
	.about-yiqipai {
		padding: 20px 0;
	}

	.about-yiqipai .service-title h2 {
		font-size: 28px;
	}

	.about-content {
		flex-direction: column;
		gap: 0px;
	}

	.about-left {
		flex: none;
		width: 100%;
	}
	.about-image {
		width: 100%;
		height: auto;
		padding: 20px 0;
		border-radius: 16px;
		height:140px;
		overflow: hidden;
		box-shadow: none
	}
	.about-right {
		
		width:100%
	}

	.about-subtitle {
		font-size: 24px;
		text-align: left;
		margin-top: 10px;
	}

	.about-desc {
		font-size: 15px;
		text-align: left;
	}

	.about-stats {
		display: flex;
		gap: 10px;
		margin-top: 30px;
	}

	.stat-item {
		padding:20px 0px;
       width:33%
	}
	.stat-number {

		font-size: 18px;
		text-align: center;
        
	}

	.stat-label {
		font-size: 16px;
		font-weight: 500;
		text-align: center;
        margin-bottom: 10px
	}
	.team-strength .container {
		padding: 0 16px;
	}
	.main-photo img {
		width: 100%;
		height: 130px;
		
	}
	.about-image img {
		height: 200px;
	}
}

@media (max-width: 480px) {
	.about-yiqipai {
		padding: 20px 0;
	}

	.about-yiqipai .service-title h2 {
		font-size: 24px;
	}

	.about-content {
		gap: 0px;
	}

	.about-subtitle {
		font-size: 20px;
		margin-bottom: 20px;
		margin-top: 10px;
		text-align: left;
	}

	.about-desc {
		font-size: 14px;
		margin-bottom: 0px;
	}

	.about-stats {
	
		gap: 10px;
		margin-top: 30px;
	}
	
	.stat-item {
		
		justify-content: start;
        align-items: center;
	}

	.stat-number {
		font-size: 18px;
		text-align: center;
        
	}

	.stat-label {
		font-size: 16px;
		font-weight: 500;
		text-align: center;
        margin-bottom: 10px
	}
	.team-strength .container {
		padding: 0 16px;
	}
	.main-photo img {
		width: 100%;
		height: 130px;
	}
}
/* 关于易企派模块 end */


/* 统一容器响应式处理 */
@media (max-width: 1240px) {
	.yewu-benefits .container,
	.waibao-comparison .container,
	.ai-brand-recommendation .container,
	.why-choose-feiyou .container,
	.geo-cases .container,
	.geo-cooperation-process .container,
	.about-yiqipai .container {
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.yewu-benefits .container, 
	.waibao-comparison .container,
	.ai-brand-recommendation .container,
	.why-choose-feiyou .container,
	.geo-cases .container,
	.geo-cooperation-process .container,
	.about-yiqipai .container {
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.yewu-benefits .container,
	.waibao-comparison .container,
	.ai-brand-recommendation .container,
	.why-choose-feiyou .container,
	.geo-cases .container,
	.geo-cooperation-process .container,
	.about-yiqipai .container {
		padding: 0 15px;
	}
}

/* 问答模块 begin */
.it-faq {
	padding: 60px 0;
	background: #F7F9FB;
}

.it-faq .container {
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 60px;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
	margin-bottom: 40px;
  }
  
  .faq-item {
	border-radius: 8px;
	padding: 20px;
	box-shadow: none;
	transition: all 0.3s ease;
	background: #fff;
	border-radius: 8px;
	
  }
  
  .faq-item:hover {
	transform: none;
	box-shadow: none;
	border: 1px solid #006FFB;

	background: #f8fafc;
  }
  
  .faq-question {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
  }
  
  .faq-answer {
	display: flex;
	align-items: flex-start;
	gap: 10px;
  }
  
  .faq-icon {
	width: 26px;
	height: 26px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	flex-shrink: 0;
	
  }
  
  .q-icon {
	/* 渐变 */
	background: #006FFB;
	background: url(../images/qa2.png) no-repeat center center;
	background-size: 56px;
  }
  
  .a-icon {
	background: url(../images/qa1.png) no-repeat center center;
	background-size: 56px;
  }
  
  .faq-text {
	font-size: 13px;
	line-height: 1.4;
	flex: 1;
  }
  
  .faq-question .faq-text {
	font-size: 16px;
	font-weight: 600;
	color: #15181C;
  }
  
  .faq-answer .faq-text {
	color: #6b7280;
	font-size: 16px;
	line-height: 1.5;
  }
  
  .faq-more {
	text-align: center;
	margin-top: 50px;
  }

  @media (max-width: 768px) {
	
  
	/* IT人力外包热门问答模块响应式 - 平板 */
	.it-faq {
	  padding: 50px 0 0 0;
	}
  
	.faq-grid {
	  grid-template-columns: 1fr;
	  gap: 18px;
	}
  
	.faq-item {
	  padding: 18px;
	  margin:0 8px;
	}
  
	.faq-icon {
	  width: 20px;
	  height: 20px;
	  font-size: 12px;
	}
  
	.more-btn {
	  padding: 0;
	  font-size: 14px;
	}
  
	.more-icon {
	  width: 17px;
	  height: 17px;
	  margin-left: 9px;
	}
  
	/* IT人力外包资讯模块响应式 - 桌面端 */
	.it-news {
	  padding: 60px 0 40px 0;
	}
  
	.news-content {
	  gap: 25px;
	}
  
	.hot-news {
	  padding: 16px !important;
	}
  
	.latest-news {
	  width: 280px;
	  padding: 25px;
	}
  
	/* IT人力外包热门问答模块响应式 - 桌面端 */
	.it-faq {
	  padding: 60px 0 0 0;
	}
  
	.faq-grid {
	  gap: 25px;
	}
  
	.faq-item {
	  padding: 20px;
	}
  
	
  }