/* 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(.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 #FD423C !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: #FD423C;
}
.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: #FD423C;
}
.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 {
	color: #ff4757;
	font-weight: 600;
}
.highlight-up {
	color: #28a745;
	font-weight: 600;
}
.highlight-sub-red {
	color: #ff4757;
	font-weight: 600;
}
/* 团队实力模块样式 */
		.team-strength {
	padding: 60px 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: 60px 0;
	background: #fff;
}
.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: #FD423C;
}
.recognition-tabs .tab-btn.active {
	color: #FD423C;
	font-weight: 600;
}
 .recognition-tabs .tab-btn.active::after {
 content: '';
 position: absolute;
 bottom: -21px;
 left: 50%;
 transform: translateX(-50%);
 width: 80px;
 height: 3px;
 background: #FD423C;
 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: 260px;
	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 #FD423C !important;
}
.certificate-image {
	width: 100%;
	height: 196px;
	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) {
			/* 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-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) {
			/* 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-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) {
			/* 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-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 {
 flex-direction: column;
 gap: 15px;
 padding: 15px;
 border-radius: 8px;
}
 .news-item:hover {
 border: 1px solid #FD423C;
 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;
	height:25px;
}
.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;
	text-decoration: none;
	color: inherit;
	will-change: transform;
}
.news-item:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
	border: 1px solid #FD423C !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 #FD423C;
	border-radius: 25px;
	color: #FD423C;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.more-news-btn:hover {
	background: #FD423C;
	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: #FD423C;
}
.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")/*tpa=https://geo.czqyfw.cn/niwa-img/images/v_01.png*/ no-repeat;
	background-size:cover;
}
.geo-seo {
	right:0;
	background: url("../images/v_02.png")/*tpa=https://geo.czqyfw.cn/niwa-img/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: #FD423C;
}
.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: #FD423C;
	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: #e53935;
	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: #FD423C;
	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: #FD423C;
	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: #e53935;
	transform: translateY(-2px);
}
.surrounding-questions {
	position: relative;
	height: 0;
	overflow: visible;
}
.question-bubble {
	position: absolute;
	background: url("../images/v_13.png")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/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-feiyou {
	padding: 60px 0 160px 0;
	background: #F7F9FB;
}
.why-choose-feiyou .container {
	max-width: 1200px;
	margin: 0 auto;
}
.why-choose-feiyou .service-title {
	text-align: center;
	margin-bottom: 40px;
}
.why-choose-feiyou .service-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #1A2233;
	margin-bottom: 20px;
}
.why-choose-feiyou .service-title p {
	font-size: 16px;
	color: #15181C;
	line-height: 1.6;
	max-width: 640px;
}
.feiyou-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(.4, 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 #FD423C !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 {
	color: #FD423C;
	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;
	color: #FD423C;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.consult-btn:hover {
	background: #FD423C;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(253, 66, 60, 0.3);
}
.consult-btn :visited {
	color: #fff;
}

/* 响应式设计 */
@media (max-width: 1200px) {
 .feiyou-advantages {
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
}
}
 @media (max-width: 768px) {
 .why-choose-feiyou {
 padding: 60px 0;
}
 .why-choose-feiyou .service-title h2 {
 font-size: 28px;
}
 .why-choose-feiyou .service-title p {
 font-size: 14px;
}
 .feiyou-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-feiyou {
 padding: 40px 0;
}
 .why-choose-feiyou .service-title h2 {
 font-size: 24px;
}
 .why-choose-feiyou .service-title p {
 font-size: 13px;
}
 .feiyou-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(.4, 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 #FD423C !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(253, 66, 60, 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: #FD423C;
	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: #FD423C;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.case-highlight {
	background: linear-gradient(135deg, #ff6b6b 0%, #FD423C 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: #FD423C;
	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 #FD423C;
	border-radius: 25px;
	color: #FD423C;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.more-cases-btn:hover {
	background: #FD423C;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(253, 66, 60, 0.3);
}
.consult-now-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #FD423C;
	border: 1px solid #FD423C;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.consult-now-btn:hover {
	background: #e63946;
	border-color: #e63946;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(253, 66, 60, 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")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/images/v_26.png*/ no-repeat;
	background-size: cover;
	border-radius: 16px;
	text-align: center;
	transition: all 1s cubic-bezier(.4, 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")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/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")/*tpa=https://geo.czqyfw.cn/niwa-img/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-feiyou {
	padding: 60px 0 100px 0;
	background: #fff;
}
.about-feiyou .container {
	max-width: 1200px;
	margin: 0 auto;
}
.about-feiyou .service-title {
	text-align: center;
	margin-bottom: 60px;
}
.about-feiyou .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: 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: #FD423C;
	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;
	color: #FD423C;
	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-feiyou {
 padding: 20px 0;
}
 .about-feiyou .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;
}
 .main-photo img {
 width: 100%;
 height: auto;
}
}
 @media (max-width: 480px) {
 .about-feiyou {
 padding: 20px 0;
}
 .about-feiyou .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;
}
 .main-photo img {
 width: 100%;
 height: auto;
}
}
/* 关于飞柚模块 end */


/* 统一容器响应式处理 */
@media (max-width: 1240px) {
 .geo-benefits .container, .seo-comparison .container, .ai-brand-recommendation .container, .why-choose-feiyou .container, .geo-cases .container, .geo-cooperation-process .container, .about-feiyou .container {
 padding: 0 30px;
}
}
 @media (max-width: 768px) {
 .geo-benefits .container, .seo-comparison .container, .ai-brand-recommendation .container, .why-choose-feiyou .container, .geo-cases .container, .geo-cooperation-process .container, .about-feiyou .container {
 padding: 0 20px;
}
}
 @media (max-width: 480px) {
 .geo-benefits .container, .seo-comparison .container, .ai-brand-recommendation .container, .why-choose-feiyou .container, .geo-cases .container, .geo-cooperation-process .container, .about-feiyou .container {
 padding: 0 15px;
}
}
/* 导航栏基础样式 */
#pc-header {
	z-index: 10;
	width: 100%;
	height: 68px;
	position: fixed;
	top: 0;
	left: 0;
	background: transparent;
	transition: all 0.3s ease;
	/* 防止横向滚动 */
    max-width: 100vw;
	overflow-x: hidden;
}
#pc-header.flex {
	background: #fff;
	color: #333;
}
#pc-header.flex .navbar {
	background: #fff !important;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03) !important;
}
#pc-header .navbar {
	height: 100%;
	/* 防止横向滚动 */
    max-width: 100vw;
	overflow-x: hidden;
}
#pc-header .container-layout {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	height: 100%;
	/* 防止横向滚动 */
    overflow-x: hidden;
	box-sizing: border-box;
}
#pc-header .line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	/* 防止横向滚动 */
    max-width: 100%;
	overflow-x: hidden;
}
/* Logo样式 */
#pc-header .logo {
	float: left;
	display: flex;
	align-items: center;
}
#pc-header .logo a {
	display: flex;
	align-items: center;
	height: 68px;
	text-decoration: none;
}
#pc-header .logo img {
	height: 44px;
	width: 120px;
	object-fit: contain;
}
/* 导航菜单样式 */
#pc-header .nav {
	float: right;
	display: flex;
	align-items: center;
}
#pc-header .nav-menu {
	float: left;
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
#pc-header .nav-menu > li {
	position: relative;
	float: left;
}
#pc-header .nav-menu > li > a {
	display: flex;
	padding: 0 30px;
	line-height: 68px;
	font-size: 16px;
	align-items: center;
	justify-content: center;
	color: #1A2233;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	gap: 5px;
}
#pc-header .nav-menu > li > a > i {
	position: absolute;
	top: 34px;
	right: 5px;
	background: url(/../images/ico_jt4.png) no-repeat 50%;
	display: block;
	width: 12px;
	height: 4px;
}
/* 导航链接悬停效果 */
#pc-header .nav-menu > li.on > a, #pc-header .nav-menu > li:hover > a, #pc-header .nav-menu > li.active > a {
	color: #FD423C !important;
	text-align: center;
}
#pc-header .nav-menu > li > a:before {
	transition: width 0.3s ease;
	content: "";
	position: absolute;
	bottom: 0.8rem;
	left: 50%;
	height: 2px;
	width: 0;
	transform: translate(-50%);
	border-radius: 2px;
	background-color: #FD423C;
}
#pc-header .nav-menu > li.active > a:before, #pc-header .nav-menu > li.on > a:before, #pc-header .nav-menu > li:hover > a:before {
	width: 32px;
}
/* 下拉菜单样式 */
#pc-header .nav-menu .drop-menu {
	position: absolute !important;
	background: #fff !important;
	width: 164px !important;
	border-radius: 9px !important;
	z-index: 2 !important;
	top: 100% !important;
	left: 50% !important;
	transform: translateX(-50%) scaleY(0.8) translateY(-20px) !important;
	transform-origin: top center !important;
	opacity: 0 !important;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	pointer-events: none !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
	min-width: 164px !important;
	padding: 8px 0 !important;
	display: block !important;
}
#pc-header .nav-menu > li:hover .drop-menu {
	transform: translateX(-50%) scaleY(1) translateY(0) !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}
#pc-header .drop-menu li {
	text-align: center;
	padding: 0;
}
#pc-header .drop-menu li a {
	padding: 12px 20px !important;
	font-size: 14px !important;
	color: #333 !important;
	display: block !important;
	text-align: center !important;
	transition: all 0.3s ease !important;
	text-decoration: none !important;
	position: relative !important;
	width: 100% !important;
	background: none !important;
}
#pc-header .drop-menu li a:hover {
	color: #FD423C !important;
	background: none !important;
}
#pc-header .drop-menu li a:after {
	transition: width 0.3s ease;
	content: "";
	position: absolute;
	bottom: 8px;
	left: 50%;
	height: 2px;
	width: 0;
	transform: translate(-50%);
	border-radius: 2px;
	background-color: #FD423C;
}
#pc-header .drop-menu li a:hover:after {
	width: 32px;
}
/* 联系电话样式 */
#pc-header .tel {
	float: left;
	margin: 0 0 0 55px;
	line-height: 68px;
	display: flex;
	width: 270px;
	justify-content: space-between;
	align-items: center;
}
#pc-header .tel a {
	color: #15181C;
	display: flex;
	align-items: center;
	font-size: 12px;
	text-decoration: none;
}
#pc-header .tel-icon {
	width: 16px;
	height: 16px;
	margin-right: 6px;
	vertical-align: middle;
	animation: phonePulse 2s ease-in-out infinite;
}
#pc-header .online-consultation {
	width: 72px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 8px;
	opacity: 1;
	font-family: Alibaba PuHuiTi 3.0;
	font-size: 12px;
	font-weight: 500;
	color: #FFFFFF;
	background: #FD423C;
	cursor: pointer;
}
/* 动画效果 */
@keyframes phonePulse {
 0% {
transform: scale(1);
}
 50% {
transform: scale(1.1);
}
 100% {
transform: scale(1);
}
}
/* 移动端汉堡菜单按钮 */
#pc-header .mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1000;
}
#pc-header .mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}
 #pc-header .mobile-menu-toggle.active span:nth-child(1) {
 transform: rotate(45deg) translate(5px, 5px);
}
 #pc-header .mobile-menu-toggle.active span:nth-child(2) {
 opacity: 0;
}
 #pc-header .mobile-menu-toggle.active span:nth-child(3) {
 transform: rotate(-45deg) translate(7px, -6px);
}
/* 移动端遮罩层 */
.mobile-nav-mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.mobile-nav-mask.active {
	opacity: 1;
	pointer-events: auto;
	display: block !important;
}
/* 移动端导航菜单 */
.mobile-nav {
	display: block;
	position: fixed;
	top: 0;
	right: -280px;
	width: 280px;
	height: 100vh;
	background: #fff;
	z-index: 9999;
	transition: all 0.3s ease;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
	right: 0;
	display: block !important;
}
.mobile-nav-content {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px 0 20px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}
/* 移动端关闭按钮 - 移到顶部 */
.mobile-nav-close {
	position: relative;
	top: 0;
	right: 0;
	width: 32px;
	height: 32px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #666;
	transition: all 0.3s ease;
	z-index: 20;
	margin: 15px 15px 0 auto;
}
.mobile-nav-close:hover {
	color: #333;
	background: #e9ecef;
	transform: scale(1.1);
}
.mobile-nav-close:active {
	transform: scale(0.95);
}
/* 移动端咨询区域 - 移到菜单下方 */
.mobile-consult-section {
	flex: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 20px;
	text-align: center;
}
.mobile-consult-section .consult-title {
	display: none;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 25px;
}
.mobile-consult-section .consult-button {
	width: 200px;
	height: 34px;
	line-height: 34px;
	background: #fff;
	color: #FD423C;
	border: 1px solid #FD423C;
	border-radius: 24px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	margin-bottom: 25px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
}
.mobile-consult-section .consult-button:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(253, 66, 60, 0.3);
}
.mobile-consult-section .consult-button .icon {
	width: 20px;
	height: 20px;
	background-size: contain;
}
.mobile-consult-section .tel-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.mobile-consult-section .tel-item {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 8px;
	color: #15181C;
	font-size: 14px;
	margin-left: 16px;
}
.mobile-consult-section .tel-item .icon {
	width: 16px;
	height: 16px;
	background: url(../images/nav-tel.png) no-repeat center;
	background-size: contain;
}
.mobile-consult-section .tel-item a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
}
/* 移动端底部信息区域 */
.mobile-footer-section {
	padding: 20px;
	border-top: 1px solid #f0f0f0;
	background: #f8f9fa;
}
.mobile-footer-section .company-address {
	text-align: center;
	margin-bottom: 20px;
}
.mobile-footer-section .company-address h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}
.mobile-footer-section .company-address p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}
.mobile-footer-section .qr-codes {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 20px;
}
.mobile-footer-section .mqr-item {
	text-align: center;
	flex: 1;
}
.mobile-footer-section .mqr-item img {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	margin-bottom: 8px;
	border: 1px solid #e9ecef;
}
.mobile-footer-section .mqr-item p {
	font-size: 12px;
	color: #666;
	margin: 0;
	line-height: 1.4;
}
/* 移除原有的移动端电话区域样式 */
.mobile-tel-section {
	display: none;
}
/* 移动端菜单样式调整 */
.mobile-nav-menu {
	display: block; /* 显示移动端菜单 */
	padding: 0 0 4px 0;
	border-bottom: 1px solid #f0f0f0;
	margin: 0 0 20px 0;
}
.mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-nav-item {
	border-bottom: 1px solid #f5f5f5;
}
.mobile-nav-item:last-child {
	border-bottom: none;
}
.mobile-nav-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}
.mobile-nav-link:hover, .mobile-nav-link:active {
	color: #FD423C;
	background-color: #f8f9fa;
}
.mobile-drop-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #f8f9fa;
	display: none;
}
.mobile-drop-menu.active {
	display: block;
}
.mobile-drop-item {
	border-top: 1px solid #e9ecef;
}
.mobile-drop-link {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}
.mobile-drop-link:hover, .mobile-drop-link:active {
	color: #FD423C;
	background-color: #e9ecef;
}
.mobile-drop-arrow {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #999;
	transition: transform 0.3s ease;
}
.mobile-nav-item.active .mobile-drop-arrow {
	transform: translateY(-50%) rotate(180deg);
}

/* 移除不再使用的移动端菜单样式 */

/* 响应式设计 */
@media (max-width: 1024px) {
 #pc-header .nav-menu {
 display: flex !important; /* 恢复桌面端菜单显示 */
}
 #pc-header .mobile-menu-toggle {
 display: none !important; /* 隐藏移动端菜单按钮 */
}
 #pc-header .container-layout {
 width: 100%;
 max-width: 100%;
 padding: 0 16px;
 box-sizing: border-box;
}
 #pc-header .tel,  #pc-header .searchBar,  #pc-header .shopBar,  .log-in {
 display: none !important;
}
 #pc-header .line {
 justify-content: space-between;
 max-width: 100%;
 overflow-x: hidden;
}
 #pc-header .logo {
 flex: 1;
 max-width: 100%;
 overflow-x: hidden;
}
 #pc-header .nav {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 max-width: 100%;
 overflow-x: hidden;
}
 #pc-header {
 height: 60px !important;
 max-width: 100vw;
 overflow-x: hidden;
}
 #pc-header .logo a {
 height: 60px;
}
 #pc-header .logo img {
 height: 50px;
 max-width: 100%;
 object-fit: contain;
}
 body {
 padding-top: 60px !important;
        /* 防止横向滚动 */
        max-width: 100vw;
 overflow-x: hidden;
}
 #pc-header .nav-tag {
 margin-left: 10px;
}
 #pc-header .nav-tag-bg {
 width: 100px;
 height: 24px;
}
 #pc-header .nav-tag-text {
 width: 80px;
 height: 16px;
}
}

/* 移动端菜单显示断点 */
@media (max-width: 768px) {
 #pc-header .nav-menu {
 display: none !important; /* 在768px以下隐藏桌面端菜单 */
}
 #pc-header .mobile-menu-toggle {
 display: flex !important; /* 在768px以下显示移动端菜单按钮 */
}
 .mobile-nav-mask.active {
 display: block !important;
}
 .mobile-nav.active {
 display: block !important;
}
    
    /* 确保移动端不会出现横向滚动 */
    html, body {
 max-width: 100vw;
 overflow-x: hidden;
}
 #pc-header {
 max-width: 100vw;
 overflow-x: hidden;
 background-color: #fff;
}
 #pc-header .container-layout {
 max-width: 100%;
 overflow-x: hidden;
}
}
 @media (max-width: 768px) {
 #pc-header .container-layout {
 padding: 0 16px;
 max-width: 100%;
 box-sizing: border-box;
 overflow-x: hidden;
}
 #pc-header .logo img {
 height: 40px;
 max-width: 100%;
 object-fit: contain;
}
 #pc-header .nav-tag {
 margin-left: 8px;
}
 #pc-header .nav-tag-bg {
 width: 90px;
 height: 22px;
}
 #pc-header .nav-tag-text {
 width: 70px;
 height: 14px;
}
}
 @media (max-width: 480px) {
 #pc-header .container-layout {
 padding: 0 12px;
 max-width: 100%;
 box-sizing: border-box;
 overflow-x: hidden;
}
 #pc-header .logo img {
 height: 40px;
 max-width: 100%;
 object-fit: contain;
}
 #pc-header .mobile-menu-toggle {
 width: 24px;
 height: 18px;
}
 #pc-header .mobile-menu-toggle span {
 height: 2px;
}
 #pc-header .nav-tag {
 margin-left: 6px;
}
 #pc-header .nav-tag-bg {
 width: 80px;
 height: 20px;
}
 #pc-header .nav-tag-text {
 width: 60px;
 height: 12px;
}
 .mobile-nav {
 width: 260px;
 max-width: 90vw;
 right: -260px;
}
 .mobile-nav-content {
 padding: 0px 12px 20px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section {
 padding: 15px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section .consult-title {
 font-size: 16px;
 margin-bottom: 20px;
}
 .mobile-consult-section .consult-button {
 width: 180px;
 max-width: 100%;
 height: 34px;
 line-height: 34px;
 font-size: 15px;
 margin-bottom: 20px;
}
 .mobile-consult-section .tel-info {
 gap: 12px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section .tel-item {
 font-size: 13px;
}
 .mobile-footer-section {
 padding: 15px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-footer-section .company-address h4 {
 font-size: 15px;
}
 .mobile-footer-section .company-address p {
 font-size: 13px;
}
 .mobile-footer-section .mqr-item img {
 width: 70px;
 height: 70px;
 max-width: 100%;
}
 .mobile-footer-section .mqr-item p {
 font-size: 11px;
}
 .mobile-nav-close {
 right: 12px;
 width: 28px;
 height: 28px;
 font-size: 14px;
}
}
 @media (max-width: 360px) {
 #pc-header .container-layout {
 padding: 0 8px;
 max-width: 100%;
 box-sizing: border-box;
 overflow-x: hidden;
}
 #pc-header .logo img {
 height: 36px;
 max-width: 100%;
 object-fit: contain;
}
 #pc-header .mobile-menu-toggle {
 width: 22px;
 height: 16px;
}
 #pc-header .mobile-menu-toggle span {
 height: 1.5px;
}
 #pc-header .nav-tag {
 margin-left: 4px;
}
 #pc-header .nav-tag-bg {
 width: 70px;
 height: 18px;
}
 #pc-header .nav-tag-text {
 width: 50px;
 height: 10px;
}
 .mobile-nav {
 width: 240px;
 max-width: 85vw;
 right: -240px;
}
 .mobile-nav-content {
 padding: 0px 8px 20px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section {
 padding: 12px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section .consult-title {
 font-size: 15px;
 margin-bottom: 18px;
}
 .mobile-consult-section .consult-button {
 width: 160px;
 max-width: 100%;
 height: 34px;
 line-height: 34px;
 font-size: 14px;
 margin-bottom: 18px;
}
 .mobile-consult-section .tel-info {
 gap: 10px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section .tel-item {
 font-size: 12px;
}
 .mobile-footer-section {
 padding: 12px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-footer-section .company-address h4 {
 font-size: 14px;
}
 .mobile-footer-section .company-address p {
 font-size: 12px;
}
 .mobile-footer-section .mqr-item img {
 width: 60px;
 height: 60px;
 max-width: 100%;
}
 .mobile-footer-section .mqr-item p {
 font-size: 10px;
}
 .mobile-nav-close {
 top: 10px;
 right: 10px;
 width: 24px;
 height: 24px;
 font-size: 12px;
}
}
 @media (max-width: 320px) {
 #pc-header .container-layout {
 padding: 0 6px;
 max-width: 100%;
 box-sizing: border-box;
 overflow-x: hidden;
}
 #pc-header .logo img {
 height: 30px;
 max-width: 100%;
 object-fit: contain;
}
 #pc-header .mobile-menu-toggle {
 width: 20px;
 height: 14px;
}
 #pc-header .mobile-menu-toggle span {
 height: 1px;
}
 #pc-header .nav-tag {
 margin-left: 3px;
}
 #pc-header .nav-tag-bg {
 width: 60px;
 height: 16px;
}
 #pc-header .nav-tag-text {
 width: 45px;
 height: 9px;
}
 .mobile-nav {
 width: 220px;
 max-width: 80vw;
 right: -220px;
}
 .mobile-nav-content {
 padding: 0px 6px 20px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section {
 padding: 10px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section .consult-title {
 font-size: 14px;
 margin-bottom: 15px;
}
 .mobile-consult-section .consult-button {
 width: 140px;
 max-width: 100%;
 height: 30px;
 line-height: 30px;
 font-size: 13px;
 margin-bottom: 15px;
}
 .mobile-consult-section .tel-info {
 gap: 8px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-consult-section .tel-item {
 font-size: 11px;
}
 .mobile-footer-section {
 padding: 10px;
 max-width: 100%;
 overflow-x: hidden;
}
 .mobile-footer-section .company-address h4 {
 font-size: 13px;
}
 .mobile-footer-section .company-address p {
 font-size: 11px;
}
 .mobile-footer-section .mqr-item img {
 width: 50px;
 height: 50px;
 max-width: 100%;
}
 .mobile-footer-section .mqr-item p {
 font-size: 9px;
}
 .mobile-nav-close {
 top: 8px;
 right: 8px;
 width: 22px;
 height: 22px;
 font-size: 11px;
}
}
/* 页面内容上边距 */
body {
	padding-top: 68px;
	transition: padding-top 0.3s ease;
	/* 防止横向滚动 */
    max-width: 100vw;
	overflow-x: hidden;
}
/* 锚链接偏移修复 - 解决固定导航栏遮挡问题 */
html {
	scroll-padding-top: 80px; /* 导航栏高度68px + 12px缓冲 */
	scroll-behavior: smooth; /* 添加平滑滚动效果 */
	/* 防止横向滚动 */
    max-width: 100vw;
	overflow-x: hidden;
}

/* 为所有锚点目标元素添加滚动偏移 */
[id] {
 scroll-margin-top: 80px;
}

/* 移动端锚链接偏移调整 */
@media (max-width: 768px) {
 html {
 scroll-padding-top: 72px; /* 移动端导航栏高度60px + 12px缓冲 */
        /* 防止横向滚动 */
        max-width: 100vw;
 overflow-x: hidden;
}
 [id] {
 scroll-margin-top: 72px;
}
 body {
 padding-top: 60px !important;
        /* 防止横向滚动 */
        max-width: 100vw;
 overflow-x: hidden;
}
}
.site-footer {
	background: #1A1A1A;
	color: #fff;
	padding: 60px 0 30px 0;
}
.site-footer .container {
	max-width: 1200px;
	margin: 0 auto;
}
/* 顶部区域样式 */
	.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
}
.footer-left {
	flex: 0 0 auto;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 15px;
}
.footer-logo img {
}
.logo-text {
	display: flex;
	flex-direction: column;
}
.logo-name {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
}
.logo-en {
	font-size: 12px;
	color: #fff;
	letter-spacing: 2px;
	margin-top: 5px;
}
.footer-right {
	display: flex;
	flex-direction: column;
	gap: 0px;
	text-align: right;
}
.contact-info {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: end;
}
.contact-icon {
	width: 20px;
	height: 20px;
}
.contact-text {
	display: flex;
	flex-direction: column;
}
.contact-label {
	font-size: 14px;
	color: #fff;
	margin-bottom: 5px;
}
.contact-phone {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
}
.qr-codes {
	display: flex;
	gap: 60px;
	margin-top: 50px;
}
.qr-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.qr-code {
	width: 120px;
	height: 120px;
	background: #fff;
	border-radius: 4px;
}
.qr-text {
	font-size: 12px;
	color: #d6d6d6;
	text-align: center;
}
/* 中间区域样式 */
	.footer-middle {
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	padding: 40px 0;
	margin-bottom: 30px;
}
.footer-links {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.link-column {
	flex: 1;
}
.link-title {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	margin: 0 0 20px 0;
	position: relative;
}
.link-title span {
	display: none;
	color: #fff;
	margin: 0 4px;
}
 .link-title::after {
 content: '';
 position: absolute;
 right: -20px;
 top: 50%;
 transform: translateY(-50%);
 width: 1px;
 height: 16px;
 background: #333;
}
 .link-column:last-child .link-title::after {
 display: none;
}
.link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.link-list li {
	margin-bottom: 12px;
}
.link-list a {
	font-size: 14px;
	color: #b6b6b6;
	text-decoration: none;
	transition: color 0.3s ease;
}
.link-list a:hover {
	color: #fff;
}
/* 底部区域样式 */
	.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 20px;
}
.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.friendly-links {
	font-size: 12px;
	padding-bottom: 14px;
	color: #d6d6d6;
	border-bottom: 1px solid #333;
}
.friendly-links a {
	color: #d6d6d6;
}
.copyright {
	font-size: 12px;
	color: #999;
	text-align: center;
	padding-top: 14px;
}
.wapkf {
	display: none;
}

	

	/* 响应式设计 */
	@media (max-width: 1024px) {
 .footer-top {
 flex-direction: column;
 gap: 30px;
}
 .footer-right {
 width: 100%;
 justify-content: space-between;
}
 .footer-links {
 gap: 30px;
}
}
 @media (max-width: 768px) {
 .site-footer {
 padding: 40px 0 85px 0;
}
 .footer-top {
 margin-bottom: 30px;
 text-align: center;
 flex-direction: column;
 align-items: center;
}
 .footer-left {
 width: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
}
 .footer-logo {
 margin-bottom: 0px;
}
 .footer-links {
 flex-direction: row;
 gap: 20px;
 justify-content: center;
 flex-wrap: wrap;
 margin-bottom: 30px;
}
 .link-column {
 flex: 0 0 auto;
 min-width: 120px;
 text-align: center;
}
 .link-list {
 display: none;
}
 .link-title {
 font-size: 14px;
 margin-bottom: 15px;
}
 .link-title span {
 color: #fff;
 margin: 0 4px;
}
 .link-title::after {
 display: none;
}
 .link-list li {
 margin-bottom: 8px;
}
 .link-list a {
 font-size: 12px;
}
 .footer-right {
 flex-direction: column;
 gap: 0px;
 align-items: center;
 width: 100%;
 margin-top: -32px;
}
 .contact-info {
 justify-content: center;
}
 .contact-phone {
 font-size: 24px;
 color: #fff;
 text-align: center;
}
 .qr-item {
 margin: 0 40px
}
 .qr-codes {
 gap: 0px;
 margin-top: 30px;
}
 .footer-bottom {
 text-align: center;
 padding: 0px;
}
 .friendly-links {
 margin-bottom: 12px;
 margin-top: 12px;
 text-align: left;
}
 .copyright {
 text-align: center;
 padding:0 30px;
}
 .wapkf {
 position: fixed;
 bottom: 0;
 width: 100%;
 left: 0;
 line-height: 58px;
 height: 58px;
 background: #fff;
 display: block;
 z-index: 8;
}
 .wapkf ul {
 display: -webkit-flex;
 display: -moz-flex;
 display: -ms-flex;
 display: -o-flex;
 display: flex;
 justify-content: space-around;
}
 .wapkf ul li {
 width: 33%;
 position: relative;
}
 .wapkf ul li i {
 display: block;
 height: 58px;
 width: 24px;
 margin-right: 6px;
}
 .wapkf ul li a {
 color: #1A2233;
 font-size: 16px;
 display: flex;
 align-items: center;
 justify-content: center;
}
 .wapkf ul li i.ico1 {
 background: url(../images/ff1.png) no-repeat center;
 background-size: 24px;
}
 .wapkf ul li i.ico2 {
 background: url(../images/ff2.png) no-repeat center;
 background-size: 24px;
}
 .wapkf ul li i.ico3 {
 background: url(../images/ff3.png) no-repeat center;
 background-size: 24px;
}
 .wapkf ul li:after {
 position: absolute;
 right: 0;
 content: "";
 display: block;
 width: 1px;
 height: 20px;
 background: #1A2233;
 top: 50%;
 margin-top: -10px;
 opacity: 0.1
}
 .wapkf ul li:last-child:after {
 display: none;
}
}
 @media (max-width: 480px) {
 .site-footer {
 padding: 30px 0 85px 0;
}
 .footer-top {
 margin-bottom: 25px;
}
 .footer-logo {
 margin-bottom: 0px;
}
 .footer-links {
 flex-direction: row;
 gap: 15px;
 justify-content: center;
 flex-wrap: wrap;
 margin-bottom: 25px;
}
 .link-column {
 min-width: auto;
 flex: 0 0 auto;
}
 .link-list {
 display: none;
}
 .link-title {
 font-size: 13px;
 margin-bottom: 12px;
}
 .link-list li {
 margin-bottom: 6px;
}
 .link-list a {
 font-size: 11px;
}
 .contact-phone {
 font-size: 20px;
 color: #fff;
}
 .qr-item {
 margin: 0 40px
}
 .qr-codes {
 gap: 0px;
 margin-top: 25px;
}
 .qr-code {
 width: 110px;
 height: 110px;
}
 .qr-text {
 font-size: 10px;
}
 .friendly-links {
 font-size: 12px;
 margin-bottom: 12px;
 margin-top: 12px;
 text-emphasis: none;
}
 .copyright {
 font-size: 10px;
}
}

#weixin {
	position:fixed;
	bottom:90px;
	left:5%;
	z-index:9999999;
	font-size:16px;
	color:#fff;
	width:90%;
	padding:5px 0;
	margin:0px auto;
	text-align:center;
	background:rgba(0, 0, 0, .8);
	border:2px solid #333;
	border-radius:10px;
	display:none
}
