/* GEO模块样式 */
.geo-benefits {
	padding: 60px 0;
	background: #f7f9fb;
}

.geo-benefits .container {
	max-width: 1200px;
	margin: 0 auto;
}

.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(0.4, 0, 0.2, 1);
	-ms-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 1s cubic-bezier(0.4, 0, 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 {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.benefit-desc {
	font-size: 16px;
	color: #1a2233;
	line-height: 32px;
	flex: 1;
}

.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 {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: 600;
}

.highlight-up {
	color: #28a745;
	font-weight: 600;
}

.highlight-sub-red {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: 600;
}

/* 团队实力模块样式 */
.team-strength {
	padding: 60px 0;
	background: #f7f9fb;
}

.team-strength .container {
	max-width: 1200px;
	margin: 0 auto;
}

.team-card {
	margin-top: 50px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.team-main-photo {
	overflow: hidden;
}

.team-main-photo img {
	width: 100%;
	height: auto;
	display: block;
}

.team-main-text {
	padding: 40px 48px 48px;
	background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
	color: #444;
	font-size: 16px;
	line-height: 1.85;
}

.team-main-text p {
	margin: 0 0 20px;
	text-indent: 2em;
	text-align: justify;
}

.team-main-text p:last-child {
	margin-bottom: 0;
}

.team-coverage {
	text-align: center;
	padding: 28px 40px 22px;
}

.team-coverage-text {
	margin: 0;
	font-size: 20px;
	line-height: 1.4;
}

.team-coverage .coverage-text {
	color: #7b5fd6;
	font-weight: 500;
}

.team-coverage .highlight-city-count {
	margin: 0 4px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	vertical-align: baseline;
	background: linear-gradient(90deg, #6b4eff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.team-offices {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px 28px;
	padding: 8px 40px 40px;
}

.office-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.team-card {
	padding: 10px;
}

.office-city {
	flex-shrink: 0;
	display: inline-block;
	min-width: 52px;
	padding: 4px 12px;
	border-radius: 0 20px;
	background: linear-gradient(90deg, #8f00ff 0%, #2538ff 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.office-address {
	flex: 1;
	font-size: 13px;
	color: #333;
	line-height: 1.6;
}

/* 核心团队人员介绍模块样式 */
.team-core {
	padding: 60px 0;
	background: #fff;
}

.team-core .container {
	max-width: 1200px;
	margin: 0 auto;
}

.team-core .service-title {
	text-align: center;
	margin-bottom: 50px;
}

.team-core .service-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #1a2233;
	margin-bottom: 16px;
}

.team-core .service-title p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

.team-core-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.team-core-card {
	flex: 0 0 calc(33.333% - 20px);
	max-width: 360px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	-webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.team-core-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 40px rgba(37, 56, 255, 0.14);
	border-color: rgba(37, 56, 255, 0.2);
}

.team-core-image {
	width: 100%;
	background: #f7f9fb;
	overflow: hidden;
}

.team-core-image img {
	width: 100%;
	height: 100%;
	display: block;
	transition: transform 0.4s ease;
}

.team-core-card:hover .team-core-image img {
	transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 1024px) {
	/* GEO模块响应式 */
	.geo-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-card {
		margin-top: 40px;
	}

	/* 核心团队人员介绍模块响应式 - 桌面端 */
	.team-core {
		padding: 60px 0;
	}

	.team-core .service-title {
		margin-bottom: 40px;
	}

	.team-core .service-title h2 {
		font-size: 28px;
	}

	.team-core-grid {
		gap: 20px;
	}

	.team-core-card {
		flex: 0 0 calc(33.333% - 13.33px);
	}
}

@media (max-width: 768px) {
	/* GEO模块响应式 - 平板 */
	.geo-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-card {
		margin-top: 35px;
	}

	.team-offices {
		grid-template-columns: repeat(2, 1fr);
		padding: 8px 24px 32px;
		gap: 16px 20px;
	}

	.team-coverage {
		padding: 24px 24px 20px;
	}

	.team-main-text {
		padding: 32px;
		font-size: 15px;
	}

	.team-main-text p {
		margin-bottom: 16px;
	}

	/* 核心团队人员介绍模块响应式 - 平板 */
	.team-core {
		padding: 30px 0;
	}

	.team-core .service-title {
		margin-bottom: 30px;
	}

	.team-core .service-title h2 {
		font-size: 24px;
	}

	.team-core-grid {
		gap: 20px;
	}

	.team-core-card {
		flex: 0 0 calc(50% - 10px);
		max-width: none;
	}

	/* 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) {
	/* GEO模块响应式 - 手机 */
	.geo-benefits {
		padding: 40px 0;
	}

	.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-card {
		margin-top: 30px;
	}

	.team-coverage {
		padding: 20px 16px 16px;
	}

	.team-coverage p {
		font-size: 16px;
	}

	.team-main-text {
		padding: 24px 20px;
		font-size: 15px;
		line-height: 1.8;
	}

	.team-main-text p {
		margin-bottom: 14px;
		text-indent: 1.5em;
	}

	.team-coverage .highlight-city-count {
		font-size: 24px;
	}

	.team-offices {
		grid-template-columns: 1fr;
		padding: 8px 16px 24px;
		gap: 14px;
	}

	.office-address {
		font-size: 12px;
	}

	/* 核心团队人员介绍模块响应式 - 手机 */
	.team-core {
		padding: 30px 0;
	}

	.team-core .service-title {
		margin-bottom: 24px;
	}

	.team-core .service-title h2 {
		font-size: 22px;
	}

	.team-core-grid {
		gap: 16px;
	}

	.team-core-card {
		flex: 0 0 100%;
		max-width: 320px;
	}

	/* IT人力外包资讯模块响应式 - 手机 */
	.it-news {
		padding: 40px 0;
	}

	.news-content {
		flex-direction: column;
		gap: 20px;
	}

	.latest-news {
		width: 100%;
		padding: 20px;
	}

	.news-item {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
		border-radius: 8px;
	}

	.news-item:hover {
		border: 1px solid #2538ff;
		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: #f7f9fb !important;
}

.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-header img {
	margin-right: 6px;
}
.news-header h3 {
	font-size: 20px;
	font-weight: bold;
	color: #1a2233;
	margin: 0;
}
.news-header .news-icon {
	display: inline-block;
	width: 16px;
	margin-left: 6px;
}

.news-list {
	margin-bottom: 25px;
}

.news-item {
	display: flex;
	gap: 20px;
	padding: 20px 0;
	-webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	color: inherit;
	will-change: transform;
}

.news-item:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
	border: 1px solid #2538ff !important;
	border-radius: 8px;
	padding: 19px 15px;
	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 #2538ff;
	border-radius: 25px;
	color: #2538ff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.more-news-btn:hover {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	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(0.4, 0, 0.2, 1);
	-ms-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 1s cubic-bezier(0.4, 0, 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 {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.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;
}

/* 传统SEO和GEO（AI SEO）的区别模块样式 */
.seo-comparison {
	padding: 60px 0;
	background: #fff;
}

.seo-comparison .container {
	max-width: 1200px;
	margin: 0 auto;
}

.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("../images/v_01.png") no-repeat;
	background-size: cover;
}

.geo-seo {
	right: 0;
	background: url("../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 {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.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) {
	.seo-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) {
	.seo-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%;
	}
}

/* 让AI将你的品牌直接精准推荐给用户模块 begin */
.ai-brand-recommendation {
	padding: 60px 0;
	background: url("../images/banner-home-bg3.png") no-repeat center center;
	background-size: cover;
	position: relative;
	height: 770px;
}

.ai-brand-recommendation .container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
}

.ai-brand-recommendation .service-title {
	text-align: center;
	margin-bottom: 40px;
}

.ai-brand-recommendation .service-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #1a2233;
	margin-bottom: 20px;
}

.ai-brand-recommendation .service-title p {
	font-size: 16px;
	color: #15181c;
	line-height: 1.6;
}

.ai-platforms {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}
.ai-platforms img {
	width: 600px;
}

.platform-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.platform-item:hover {
	transform: translateY(-5px);
}

.platform-item img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: contain;
}

.platform-item span {
	font-size: 14px;
	color: #1a2233;
	font-weight: 500;
}

.chat-demo {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

.chat-container {
	padding: 40px 0px;
	margin-bottom: 40px;
	position: relative;
}

.chat-question {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
	background: #fff;
	padding: 16px;
	font-weight: bold;
	border-radius: 15px;
}

.question-icon {
	width: 40px;
	height: 40px;
	background: #2196f3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}

.question-text {
	flex: 1;
	font-size: 16px;
	color: #1a2233;
}

.ask-ai-btn {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ask-ai-btn:hover {
	background: #2538ff;
	transform: translateY(-2px);
}

.chat-answer {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #fff;
	padding: 16px;
	font-weight: bold;
	border-radius: 15px;
}

.answer-icon {
	width: 40px;
	height: 40px;
	background: #2538ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
}

.answer-text {
	flex: 1;
	font-size: 16px;
	color: #1a2233;
}

.ai-answer-btn {
	background: #2538ff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ai-answer-btn:hover {
	background: #2538ff;
	transform: translateY(-2px);
}

.surrounding-questions {
	position: relative;
	height: 0;
	overflow: visible;
}

.question-bubble {
	position: absolute;
	background: url("../images/v_13.png") no-repeat center center;
	background-size: contain;

	height: 46px;
	line-height: 46px;
	min-width: 280px;
	text-align: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.bubble-content {
	font-size: 13px;
	color: #1a2233;
	line-height: 1.4;
}

.top-left {
	top: 0px;
	left: -300px;
	width: 275px;
	height: 55px;
	line-height: 55px;
}

.top-right {
	top: 0;
	right: -280px;
}

.mid-left {
	top: 40%;
	left: -376px;
	width: 366px;
	height: 66px;
	line-height: 66px;
	font-size: 16px;
}

.mid-right {
	top: 40%;
	right: -320px;
	height: 50px;
	line-height: 50px;
	font-size: 15px;
}

.bottom-left {
	bottom: -50px;
	left: -210px;
	height: 74px;
	line-height: 74px;
	width: 376px;
	font-size: 18px;
}

.bottom-right {
	bottom: -40px;
	right: -140px;
	height: 56px;
	line-height: 56px;
	width: 300px;
	font-size: 16px;
}

.bottom-center {
	bottom: -126px;
	left: -75px;
	width: 294px;
	height: 58px;
	line-height: 58px;
	font-size: 14px;
}
.bottom-mid {
	bottom: -134px;
	right: -46px;
	height: 74px;
	line-height: 74px;
	width: 376px;
	font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.ai-platforms {
		gap: 20px;
	}

	.platform-item img {
		width: 50px;
		height: 50px;
	}

	.chat-container {
		padding: 30px;
	}

	.surrounding-questions {
		height: 0;
	}

	.question-bubble {
		min-width: 240px;
		height: 40px;
		line-height: 40px;
		font-size: 13px;
	}

	.top-left {
		top: 18px;
		left: -250px;
	}

	.top-right {
		top: 14px;
		right: -200px;
	}

	.mid-left {
		top: 40%;
		left: -260px;
		height: 44px;
		width: 275px;
		line-height: 44px;
		font-size: 13px;
	}

	.mid-right {
		top: 40%;
		right: -240px;
		height: 44px;
		line-height: 44px;
		font-size: 13px;
	}

	.bottom-left {
		bottom: -30px;
		left: -110px;
		height: 48px;
		line-height: 48px;
		width: 260px;
		font-size: 14px;
	}

	.bottom-right {
		bottom: -70px;
		right: -80px;
		height: 48px;
		line-height: 48px;
		width: 260px;
		font-size: 14px;
	}

	.bottom-center {
		bottom: -90px;
		left: 20px;
	}
}

@media (max-width: 768px) {
	.ai-brand-recommendation {
		padding: 50px 0;
		height: 610px;
		background-size: initial;
	}

	.ai-brand-recommendation .service-title h2 {
		font-size: 24px;
		line-height: 1.3;
	}

	.ai-brand-recommendation .service-title p {
		font-size: 14px;
	}

	.ai-platforms {
		gap: 15px;
		margin-bottom: 20px;
	}

	.ai-platforms img {
		width: 100%;
		height: auto;
	}

	.chat-demo {
		position: relative;
		max-width: 100%;
		margin: 0 auto;
		padding: 0px;
	}

	.chat-container {
		padding: 0px;
		margin: 0;
		position: relative;
	}

	.chat-question,
	.chat-answer {
		padding: 12px;
		border-radius: 12px;
	}
	.chat-answer-mobile {
		height: 200px;
	}

	.question-icon,
	.answer-icon {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.question-text,
	.answer-text {
		font-size: 13px;
	}

	.ask-ai-btn,
	.ai-answer-btn {
		padding: 6px 12px;
		font-size: 11px;
	}

	.surrounding-questions {
		height: auto;
		margin-top: 30px;
		display: flex;
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
		padding: 0 15px;
	}

	.question-bubble {
		position: static;
		min-width: 200px;
		max-width: none;
		width: auto;
		height: 40px;
		line-height: 40px;
		font-size: 12px;
		text-align: center;
		margin: 0;
		display: inline-block;
		padding: 0 20px;
	}

	/* 移动端只显示前4个问题气泡 */
	.top-left,
	.top-right,
	.mid-left,
	.mid-right {
		position: absolute;
		transform: none;
		height: 40px;
		line-height: 40px;
		font-size: 12px;
		display: inline-block;
		padding: 0 20px;
	}

	/* 隐藏多余的问题气泡 */
	.bottom-left,
	.bottom-right,
	.bottom-mid,
	.bottom-center {
		display: none;
	}
	.top-left {
		top: 120px;
		left: -64px;
		background-image: url("../images/v_30.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 270px;
		height: 440px;
		text-align: left;
	}
	.top-right {
		top: 180px;
		right: -66px;
		background-image: url("../images/v_31.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 270px;
		height: 440px;
		text-align: right;
	}
	.mid-left {
		top: 240px;
		left: -64px;
		background-image: url("../images/v_30.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 270px;
		height: 440px;
		text-align: left;
	}
	.mid-right {
		top: 300px;
		right: -66px;
		background-image: url("../images/v_31.png");
		background-size: contain;
		background-repeat: no-repeat;
		width: 270px;
		height: 440px;
		text-align: right;
	}
	.top-left,
	.mid-left {
		text-align: left;
		padding-left: 80px;
	}
	.top-right,
	.mid-right {
		text-align: right;
		padding-right: 80px;
	}
	.bottom-mid {
		display: none !important;
	}
}

@media (max-width: 480px) {
	.ai-brand-recommendation {
		padding: 30px 0;
	}

	.ai-brand-recommendation .service-title h2 {
		font-size: 20px;
		line-height: 1.4;
		margin-bottom: 15px;
	}

	.ai-brand-recommendation .service-title p {
		font-size: 13px;
	}

	.ai-platforms {
		gap: 10px;
		margin-bottom: 20px;
	}

	.ai-platforms img {
		width: 100%;
		height: auto;
	}

	.chat-demo {
		position: relative;
		max-width: 100%;
		margin: 0 auto;
		padding: 0px;
	}

	.chat-container {
		padding: 0px;
		margin: 0;
		position: relative;
	}

	.chat-question,
	.chat-answer {
		padding: 10px;
		border-radius: 10px;
	}
	.chat-answer-mobile {
		height: 200px;
	}
	.question-icon,
	.answer-icon {
		width: 28px;
		height: 28px;
		font-size: 11px;
	}

	.question-text,
	.answer-text {
		font-size: 12px;
	}

	.ask-ai-btn,
	.ai-answer-btn {
		padding: 5px 10px;
		font-size: 10px;
	}

	.surrounding-questions {
		height: auto;
		margin-top: 25px;
		display: flex;
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
		padding: 0 10px;
	}

	.question-bubble {
		position: static;
		min-width: 180px;
		max-width: none;
		width: auto;
		height: 36px;
		line-height: 36px;
		font-size: 11px;
		text-align: center;
		margin: 0;
		display: inline-block;
		padding: 0 15px;
	}

	/* 移动端只显示前4个问题气泡 */
	.top-left,
	.top-right,
	.mid-left,
	.mid-right {
		position: absolute;
		transform: none;

		width: 100%;
		background-size: auto;
		height: 46px;
		line-height: 46px;
		margin-top: 16px;
		font-size: 13px;
		display: inline-block;
		padding: 0 15px;
		font-weight: 400;
	}
	.top-left,
	.mid-left {
		text-align: left;
		padding-left: 90px;
	}
	.top-right,
	.mid-right {
		text-align: right;
		padding-right: 90px;
	}

	/* 隐藏多余的问题气泡 */
	.bottom-left,
	.bottom-right,
	.bottom-center {
		display: none;
	}
}
/* 让AI将你的品牌直接精准推荐给用户模块 end */

/* 为什么选择星琛模块 begin */
.why-choose-xingchen {
	padding: 60px 0 120px 0;
	background: #f7f9fb;
}

.why-choose-xingchen .container {
	max-width: 1200px;
	margin: 0 auto;
}

.why-choose-xingchen .service-title {
	text-align: center;
	margin-bottom: 40px;
}

.why-choose-xingchen .service-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #1a2233;
	margin-bottom: 20px;
}

.why-choose-xingchen .service-title p {
	font-size: 16px;
	color: #15181c;
	line-height: 1.6;
	max-width: 640px;
}

.xingchen-advantages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	font-family: "AlibabaPuHuiTi";
	box-sizing: border-box;
}

.advantage-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px 24px;
	text-align: center;
	position: relative;
	transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
	border: 1px solid transparent;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
	border: 1px solid #2538ff !important;
}

.advantage-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
}

.advantage-icon img {
	width: 40px;
	height: 40px;
	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;
	color: rgba(21, 24, 28, 0.7);
	line-height: 1.8;
	text-align: center;
	height: 180px;
	margin: 0;
}

.highlight-number {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: bold;
	font-size: 16px;
}

.advantage-action {
	margin-top: auto;
}

.consult-btn {
	display: inline-block;
	width: 132px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(26, 34, 51, 0.1);
	border-radius: 25px;
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.consult-btn:hover {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	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;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.xingchen-advantages {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.why-choose-xingchen {
		padding: 60px 0;
	}

	.why-choose-xingchen .service-title h2 {
		font-size: 28px;
	}

	.why-choose-xingchen .service-title p {
		font-size: 14px;
	}

	.xingchen-advantages {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.advantage-card {
		padding: 30px 25px;
	}

	.advantage-title {
		font-size: 18px;
	}
	.advantage-desc {
		margin-bottom: 10px;
	}
	.advantage-desc p {
		font-size: 13px;
		line-height: 1.6;
	}

	.consult-btn {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.why-choose-xingchen {
		padding: 40px 0;
	}

	.why-choose-xingchen .service-title h2 {
		font-size: 24px;
	}

	.why-choose-xingchen .service-title p {
		font-size: 13px;
	}

	.xingchen-advantages {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.advantage-card {
		padding: 25px 20px;
	}

	.advantage-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 0px;
	}

	.advantage-icon img {
		width: 35px;
		height: 35px;
	}

	.advantage-title {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.advantage-desc {
		margin-bottom: 10px;
	}
	.advantage-desc p {
		font-size: 12px;
		line-height: 1.6;
	}

	.highlight-number {
		font-size: 14px;
	}

	.consult-btn {
		font-size: 12px;
	}
}
/* 为什么选择星琛模块 end */

/* GEO（AI SEO）优化案例模块 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(0.4, 0, 0.2, 1);
	will-change: transform;
	border: 1px solid transparent;
	overflow: 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: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	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: #fff;
	border: 1px solid #2538ff;
	border-radius: 25px;
	color: #2538ff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.more-cases-btn:hover {
	background: #2538ff;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgb(146 148 241);
}

.consult-now-btn {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	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: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	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 */

/* GEO（AI SEO）优化合作流程模块 begin */
.geo-cooperation-process {
	padding: 60px 0;
	background: url("../images/v_25.png") no-repeat center center;
	background-size: cover;
	position: relative;
}

.geo-cooperation-process .container {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
}

.geo-cooperation-process .service-title {
	text-align: center;
	margin-bottom: 60px;
}

.geo-cooperation-process .service-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #1a2233;
	margin-bottom: 20px;
}

.process-steps {
	display: flex;

	justify-content: space-between;
	align-items: stretch;
}

.process-step {
	position: relative;
	background: url("../images/v_26.png") no-repeat;
	background-size: cover;
	border-radius: 16px;

	text-align: center;
	transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;

	overflow: hidden;
	min-height: 200px;
	flex: 1;
}

.process-step:hover {
	transform: translateY(-10px) !important;
}

.step-number {
	position: absolute;
	top: 16px;
	left: 30px;
	width: 30px;
	height: 30px;
	background: url("../images/v_27.png") no-repeat center center;
	background-size: contain;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	margin: 0 auto 20px auto;
}
.step-content {
	padding: 0 20px 0 36px;
	margin-top: 54px;
}
.step-title {
	font-size: 16px;
	font-weight: bold;
	color: #1a2233;
	text-align: left;
	margin: 0 0 6px 0;
	line-height: 1.4;
}

.step-desc {
	font-size: 13px;
	color: #1a2233;
	line-height: 24px;
	margin: 0;
	text-align: left;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.process-steps {
		flex-wrap: wrap;
		gap: 0px;
	}
}

@media (max-width: 768px) {
	.geo-cooperation-process {
		padding: 30px 0;
		background-size: cover !important;
		background: url("../images/v_29.png") no-repeat center center;
	}

	.geo-cooperation-process .service-title h2 {
		font-size: 28px;
	}

	.process-steps {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		justify-content: space-between;
	}

	.process-step {
		flex: 0 0 calc(50% - 7.5px);
		width: calc(50% - 7.5px);
		padding: 10px 10px;
		height: 180px;
		background-size: contain;
		margin-bottom: 16px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.step-number {
		width: 35px;
		height: 35px;
		font-size: 18px;
		margin: 0 auto 15px auto;
		flex-shrink: 0;
	}

	.step-title {
		font-size: 14px;
		margin-bottom: 10px;
		flex-shrink: 0;
	}
	.step-content {
		padding: 0 6px 0 20px;
		margin-top: 50px;
	}

	.step-desc {
		font-size: 12px;
		line-height: 1.4;
		flex: 1;
		text-align: left;
	}
}

@media (max-width: 480px) {
	.geo-cooperation-process {
		padding: 30px 0;
		background-size: cover;
		background-position: center;
		background: url("../images/v_29.png") no-repeat center center;
	}

	.geo-cooperation-process .service-title h2 {
		font-size: 24px;
	}

	.process-steps {
		gap: 0px;
		justify-content: space-between;
		padding-top: 20px;
	}

	.process-step {
		flex: 0 0 calc(50% - 0px);
		width: calc(50% - 0px);
		padding: 10px;
		height: 170px !important;
		min-height: 170px !important;

		background-image: url("../images/v_35.png");
		background-size: cover;
		background-position: center;
		box-sizing: border-box;
	}
	.step-content {
		padding: 0 6px 0 20px;
		margin-top: 40px;
	}

	.step-number {
		width: 30px;
		height: 30px;
		font-size: 16px;
		top: 20px;
		margin: 0 auto 10px auto;
	}

	.step-title {
		font-size: 12px;
		margin-bottom: 8px;
		line-height: 1.3;
	}

	.step-desc {
		font-size: 11px;
		line-height: 1.4;
		text-align: left;
	}
}
/* GEO（AI SEO）优化合作流程模块 end */

/* 关于星琛模块 begin */
.about-xingchen {
	padding: 60px 0 100px 0;
	background: #fff;
}

.about-xingchen .container {
	max-width: 1200px;
	margin: 0 auto;
}

.about-xingchen .service-title {
	text-align: center;
	margin-bottom: 60px;
}

.about-xingchen .service-title h2 {
	font-size: 40px;
	font-weight: bold;
	color: #1a2233;
	margin-bottom: 20px;
}

.about-content {
	display: flex;
}

.about-left {
	flex: 0 0 44%;
}

.about-image {
	width: 480px;
	height: 400px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
	width: 100%;
	height: 100%;
	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 {
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: bold;
}

.about-stats {
	display: flex;
	gap: 20px;
}

.stat-item {
	text-align: center;
	flex: 1;
	background: #ffffff;

	box-shadow: 0px 2px 16px 0px rgba(211, 223, 242, 0.8);
	padding: 40px 16px;
	border-radius: 12px;

	transition: all 0.3s ease;
}

.stat-number {
	font-size: 28px;
	font-weight: bold;
	background: linear-gradient(270deg, #8f00ff 0%, #2538ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	margin-bottom: 10px;
	line-height: 1;
	text-align: left;
}

.count-number {
	display: inline-block;
}

.stat-label {
	font-size: 17px;
	color: #1a2233;
	line-height: 1.4;
	text-align: left;
}

/* 数字滚动动画 */
@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: 30px;
	}
}

@media (max-width: 768px) {
	.about-xingchen {
		padding: 20px 0;
	}

	.about-xingchen .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;
		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 {
		gap: 20px;
		margin-top: 30px;
	}
	.stat-item {
		display: flex;
		justify-content: start;
		align-items: center;
	}
	.stat-number {
		font-size: 24px;
		margin-right: 20px;
		margin-left: 20px;
		width: 100px;
	}

	.stat-label {
		font-size: 18px;
		font-weight: 500;

		margin-bottom: 10px;
	}
	.team-strength .container {
		padding: 0 16px;
	}
}

@media (max-width: 480px) {
	.about-xingchen {
		padding: 20px 0;
	}

	.about-xingchen .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 {
		flex-direction: column;
		gap: 30px;
		margin-top: 30px;
	}

	.stat-item {
		display: flex;
		justify-content: start;
		align-items: center;
	}

	.stat-number {
		font-size: 24px;
		margin-right: 20px;
		margin-left: 20px;
		width: 100px;
	}

	.stat-label {
		font-size: 18px;
		font-weight: 500;

		margin-bottom: 10px;
	}
	.team-strength .container {
		padding: 0 16px;
	}
}
/* 关于星琛模块 end */

/* 统一容器响应式处理 */
@media (max-width: 1240px) {
	.geo-benefits .container,
	.seo-comparison .container,
	.ai-brand-recommendation .container,
	.why-choose-xingchen .container,
	.geo-cases .container,
	.geo-cooperation-process .container,
	.about-xingchen .container {
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.geo-benefits .container,
	.seo-comparison .container,
	.ai-brand-recommendation .container,
	.why-choose-xingchen .container,
	.geo-cases .container,
	.geo-cooperation-process .container,
	.about-xingchen .container {
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.geo-benefits .container,
	.seo-comparison .container,
	.ai-brand-recommendation .container,
	.why-choose-xingchen .container,
	.geo-cases .container,
	.geo-cooperation-process .container,
	.about-xingchen .container {
		padding: 0 15px;
	}
}
