.service-banner {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	align-items: center;
	background:#e4e9ec url(../images/service.jpg)  no-repeat right;
	border-bottom: 4px solid #e67e22;
}

.service-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(230, 126, 34, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(230, 126, 34, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.service-banner .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.service-banner .banner-text {
	color: #1e2f3f;
	padding: 20px 0;
}

.service-banner .banner-text .breadcrumb {
	font-size: 14px;
	color: #1e2f3f;
	margin-bottom: 8px;
}

.service-banner .banner-text .breadcrumb a {
	color: #1e2f3f;
	text-decoration: none;
	transition: color 0.3s;
}

.service-banner .banner-text .breadcrumb a:hover {
	color: #e67e22;
}

.service-banner .banner-text .breadcrumb .sep {
	margin: 0 8px;
}

.service-banner .banner-text h1 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 1px;
}

.service-banner .banner-text h1 .highlight {
	color: #e67e22;
}

.service-banner .banner-text .sub-title {
	font-size: 16px;
	color:#1e2f3f;
	line-height: 1.8;
	max-width: 560px;
	margin-top: 4px;
}

/* ============================================================
   服务主区域
   ============================================================ */
.service-main {
	padding: 50px 0 60px;
	background: #f5f7fa;
}

/* ---- 服务项目网格 ---- */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.service-item {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #eef2f6;
	padding: 30px 24px 26px;
	text-align: center;
	transition: all 0.35s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.service-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	border-color: #e67e22;
}

.service-item .service-icon {
	width: 64px;
	height: 64px;
	background: rgba(230, 126, 34, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 28px;
	color: #e67e22;
}

.service-item .service-title {
	font-size: 18px;
	font-weight: 700;
	color: #0a2e4a;
	margin-bottom: 6px;
}

.service-item .service-desc {
	font-size: 14px;
	color: #6a7f92;
	line-height: 1.7;
}

/* ---- 常见问题 ---- */
.faq-section {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #eef2f6;
	padding: 32px 36px;
	margin-bottom: 48px;
}

.faq-section .section-title {
	font-size: 22px;
	font-weight: 700;
	color: #0a2e4a;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-section .section-title i {
	color: #e67e22;
}

.faq-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 40px;
}

.faq-item {
	border-bottom: 1px solid #f0f4f9;
	padding: 12px 0;
}

.faq-item .faq-question {
	font-size: 15px;
	font-weight: 600;
	color: #0a2e4a;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.faq-item .faq-question i {
	color: #e67e22;
	font-size: 14px;
	margin-top: 3px;
	flex-shrink: 0;
}

.faq-item .faq-answer {
	font-size: 14px;
	color: #5a6f82;
	line-height: 1.7;
	margin-top: 4px;
	padding-left: 28px;
}

/* ---- 联系我们 ---- */
.contact-section {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #eef2f6;
	padding: 32px 36px;
}

.contact-section .section-title {
	font-size: 22px;
	font-weight: 700;
	color: #0a2e4a;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-section .section-title i {
	color: #e67e22;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 12px;
	border: 1px solid #f0f4f9;
	transition: border-color 0.3s;
}

.contact-card:hover {
	border-color: #e67e22;
}

.contact-card .contact-icon {
	width: 44px;
	height: 44px;
	background: rgba(230, 126, 34, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #e67e22;
	flex-shrink: 0;
}

.contact-card .contact-body .contact-label {
	font-size: 13px;
	font-weight: 600;
	color: #0a2e4a;
	margin-bottom: 2px;
}

.contact-card .contact-body .contact-value {
	font-size: 15px;
	color: #2c3e50;
	line-height: 1.5;
}

.contact-card .contact-body .contact-value a {
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.2s;
}

.contact-card .contact-body .contact-value a:hover {
	color: #e67e22;
}

/* ============================================================
   底部选型引导
   ============================================================ */
.product-cta {
	padding: 50px 0 60px;
	background: #ffffff;
	border-top: 1px solid #eef2f6;
	margin-top: 20px;
}

.product-cta .cta-box {
	background: linear-gradient(145deg, #0a1e2f, #1a3a5a);
	border-radius: 20px;
	padding: 48px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
}

.product-cta .cta-box::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230, 126, 34, 0.10) 0%, transparent 70%);
	top: -100px;
	right: -50px;
}

.product-cta .cta-box .cta-text {
	color: #1e2f3f;
	position: relative;
	z-index: 1;
}

.product-cta .cta-box .cta-text h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 8px;
}

.product-cta .cta-box .cta-text h2 .highlight {
	color: #e67e22;
}

.product-cta .cta-box .cta-text p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 15px;
	line-height: 1.7;
}

.product-cta .cta-box .cta-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.product-cta .cta-box .cta-buttons .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #e67e22;
	color: #fff;
	padding: 14px 34px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(230, 126, 34, 0.35);
}

.product-cta .cta-box .cta-buttons .btn-primary:hover {
	background: #cf6d17;
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(230, 126, 34, 0.45);
}

.product-cta .cta-box .cta-buttons .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	padding: 14px 34px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.25s;
	cursor: pointer;
}

.product-cta .cta-box .cta-buttons .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.30);
	transform: translateY(-3px);
}

/* ============================================================
   悬浮挂件样式
   ============================================================ */
.float-widget {
	position: fixed;
	bottom: 30px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.float-panel {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #eef2f6;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
	padding: 20px 20px 18px;
	margin-bottom: 16px;
	width: 280px;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.95);
	transform-origin: bottom right;
}

.float-panel.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.float-panel .panel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f4f9;
}

.float-panel .panel-header span {
	font-size: 17px;
	font-weight: 700;
	color: #0a2e4a;
}

.float-panel .panel-header span i {
	color: #e67e22;
	margin-right: 6px;
}

.float-panel .panel-header .close-btn {
	background: none;
	border: none;
	font-size: 20px;
	color: #b0bcc9;
	cursor: pointer;
	padding: 0 4px;
	transition: color 0.2s;
}

.float-panel .panel-header .close-btn:hover {
	color: #e67e22;
}

.float-panel .panel-body .contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #f8fafc;
	font-size: 14px;
	color: #2c3e50;
}

.float-panel .panel-body .contact-item:last-of-type {
	border-bottom: none;
}

.float-panel .panel-body .contact-item i {
	width: 20px;
	color: #e67e22;
	text-align: center;
	font-size: 16px;
}

.float-panel .panel-body .contact-item a {
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.2s;
}

.float-panel .panel-body .contact-item a:hover {
	color: #e67e22;
}

.float-panel .panel-body .qr-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 12px 0 8px;
	padding: 12px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px dashed #e9edf2;
}

.float-panel .panel-body .qr-section img {
	width: 120px;
	height: 120px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #eef2f6;
}

.float-panel .panel-body .qr-section .qr-label {
	font-size: 13px;
	color: #0a2e4a;
	font-weight: 500;
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.float-panel .panel-body .qr-section .qr-label i {
	color: #07c160;
}

.float-panel .panel-body .work-hours {
	font-size: 12px;
	color: #7f8c9b;
	text-align: center;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #f0f4f9;
}

.float-panel .panel-body .btn-primary-sm {
	display: block;
	background: #e67e22;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s;
	margin-top: 10px;
	border: none;
	cursor: pointer;
}

.float-panel .panel-body .btn-primary-sm:hover {
	background: #cf6d17;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(230, 126, 34, 0.30);
}

.float-btn {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #e67e22;
	color: #fff;
	border: none;
	box-shadow: 0 4px 20px rgba(230, 126, 34, 0.40);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.25s;
	font-size: 22px;
	line-height: 1.2;
	padding: 0;
}

.float-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 30px rgba(230, 126, 34, 0.50);
}

.float-btn span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-top: 2px;
}

.float-btn i {
	font-size: 22px;
}

/* 小屏幕适配 */
@media (max-width: 500px) {
	.float-panel {
		width: 260px;
		right: 0;
		padding: 16px 16px 14px;
	}

	.float-btn {
		width: 56px;
		height: 56px;
		font-size: 18px;
	}

	.float-btn span {
		font-size: 10px;
	}

	.float-panel .panel-body .qr-section img {
		width: 100px;
		height: 100px;
	}
}

/* ============================================================
   弹窗表单 (Modal)
   ============================================================ */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.50);
	backdrop-filter: blur(4px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding: 20px;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-box {
	background: #ffffff;
	border-radius: 24px;
	max-width: 560px;
	width: 100%;
	padding: 36px 32px 32px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
	transform: scale(0.95) translateY(20px);
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-overlay.active .modal-box {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	font-size: 26px;
	color: #7f8c9b;
	cursor: pointer;
	padding: 6px;
	line-height: 1;
	transition: color 0.2s, transform 0.2s;
}

.modal-close:hover {
	color: #e67e22;
	transform: rotate(90deg);
}

.modal-title {
	font-size: 24px;
	font-weight: 700;
	color: #0a2e4a;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.modal-title i {
	color: #e67e22;
}

.modal-sub {
	font-size: 14px;
	color: #7f8c9b;
	margin-bottom: 24px;
}

.modal-form .form-group {
	margin-bottom: 18px;
}

.modal-form .form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #0a2e4a;
	margin-bottom: 4px;
}

.modal-form .form-group label .required {
	color: #e67e22;
	margin-left: 2px;
}

.modal-form .form-group input,
.modal-form .form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e9edf2;
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.25s, box-shadow 0.25s;
	background: #f8fafc;
	outline: none;
}

.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
	border-color: #e67e22;
	box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.12);
	background: #ffffff;
}

.modal-form .form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.modal-form .form-actions {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.modal-form .form-actions .btn-submit {
	flex: 1;
	background: #e67e22;
	color: #fff;
	border: none;
	padding: 14px 24px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.25s, transform 0.15s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.modal-form .form-actions .btn-submit:hover {
	background: #cf6d17;
	transform: translateY(-2px);
}

.modal-form .form-actions .btn-cancel {
	background: transparent;
	color: #7f8c9b;
	border: 2px solid #e9edf2;
	padding: 14px 24px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s;
}

.modal-form .form-actions .btn-cancel:hover {
	background: #f5f7fa;
	border-color: #d0d7de;
}

/* ============================================================
   右下角悬浮在线咨询挂件
   ============================================================ */
.float-consult {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 9998;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

/* 悬浮主按钮 */
.float-consult .float-main-btn {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: linear-gradient(145deg, #e67e22, #cf6d17);
	border: none;
	box-shadow: 0 6px 28px rgba(230, 126, 34, 0.45);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	position: relative;
	z-index: 2;
	line-height: 1.2;
	padding: 0;
	font-family: inherit;
}

.float-consult .float-main-btn i {
	font-size: 24px;
	margin-bottom: 2px;
}

.float-consult .float-main-btn .btn-label {
	font-size: 11px;
	letter-spacing: 0.5px;
	opacity: 0.95;
}

.float-consult .float-main-btn:hover {
	transform: scale(1.06) translateY(-3px);
	box-shadow: 0 10px 40px rgba(230, 126, 34, 0.55);
}

.float-consult .float-main-btn:active {
	transform: scale(0.95);
}

/* 脉冲动画 */
.float-consult .float-main-btn::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(230, 126, 34, 0.30);
	animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* 展开面板 */
.float-consult .float-panel {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15);
	padding: 20px 22px 22px;
	min-width: 240px;
	transform: scale(0.8) translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
	transform-origin: bottom right;
	border: 1px solid #f0f4f9;
	position: relative;
	display:none;
}

.float-consult .float-panel::after {
	content: '';
	position: absolute;
	bottom: -10px;
	right: 28px;
	border: 10px solid transparent;
	border-top-color: #ffffff;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.02));
}

.float-consult.open .float-panel {
	transform: scale(1) translateY(0);
	opacity: 1;
	visibility: visible;
	display:block;
}

.float-consult .float-panel .panel-title {
	font-size: 14px;
	font-weight: 700;
	color: #0a2e4a;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 2px solid #f5f7fa;
	padding-bottom: 10px;
}

.float-consult .float-panel .panel-title i {
	color: #e67e22;
}

.float-consult .float-panel .panel-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: #1e2f3f;
	transition: all 0.25s;
	cursor: pointer;
	border: none;
	background: transparent;
	width: 100%;
	font-family: inherit;
	font-size: 14px;
	text-align: left;
}

.float-consult .float-panel .panel-item:hover {
	background: #f5f9ff;
	color: #e67e22;
}

.float-consult .float-panel .panel-item .item-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 16px;
	background: rgba(230, 126, 34, 0.08);
	color: #e67e22;
	transition: background 0.25s;
}

.float-consult .float-panel .panel-item:hover .item-icon {
	background: #e67e22;
	color: #fff;
}

.float-consult .float-panel .panel-item .item-text {
	flex: 1;
}

.float-consult .float-panel .panel-item .item-text .item-label {
	font-size: 12px;
	font-weight: 400;
	color: #7f8c9b;
	display: block;
}

.float-consult .float-panel .panel-item .item-text .item-value {
	font-size: 14px;
	font-weight: 500;
	color: #0a2e4a;
}

.float-consult .float-panel .panel-item .item-arrow {
	color: #b0bcc9;
	font-size: 12px;
	transition: transform 0.25s;
}

.float-consult .float-panel .panel-item:hover .item-arrow {
	transform: translateX(4px);
	color: #e67e22;
}

/* 微信二维码悬浮提示 */
.float-consult .wechat-qr-wrapper {
	position: relative;
}

.float-consult .wechat-qr-popup {
	position: absolute;
	right: calc(100% + 20px);
	top: 50%;
	transform: translateY(-50%) scale(0.85);
	background: #ffffff;
	border-radius: 16px;
	padding: 18px 18px 14px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: 100;
	min-width: 160px;
	text-align: center;
	border: 1px solid #f0f4f9;
	pointer-events: none;
}

.float-consult .wechat-qr-wrapper:hover .wechat-qr-popup {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) scale(1);
	pointer-events: auto;
}

.float-consult .wechat-qr-popup::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -8px;
	transform: translateY(-50%);
	border: 8px solid transparent;
	border-left-color: #ffffff;
	filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.02));
}

.float-consult .wechat-qr-popup img {
	width: 130px;
	height: 130px;
	border-radius: 10px;
	display: block;
	margin: 0 auto 6px;
	background: #f8fafc;
	border: 1px solid #f0f4f9;
}

.float-consult .wechat-qr-popup .qr-label {
	font-size: 12px;
	color: #0a2e4a;
	font-weight: 500;
	display: block;
}

.float-consult .wechat-qr-popup .qr-label i {
	color: #07c160;
	margin-right: 4px;
}

/* 移动端响应式 */
@media (max-width: 768px) {
	.float-consult {
		bottom: 24px;
		right: 20px;
	}

	.float-consult .float-main-btn {
		width: 58px;
		height: 58px;
		font-size: 12px;
	}

	.float-consult .float-main-btn i {
		font-size: 20px;
	}

	.float-consult .float-main-btn .btn-label {
		font-size: 10px;
	}

	.float-consult .float-panel {
		min-width: 200px;
		padding: 16px 18px 18px;
	}

	.float-consult .float-panel .panel-item {
		padding: 8px 10px;
		font-size: 13px;
	}

	.float-consult .float-panel .panel-item .item-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.float-consult .wechat-qr-popup {
		right: calc(100% + 12px);
		min-width: 140px;
		padding: 14px 14px 10px;
	}

	.float-consult .wechat-qr-popup img {
		width: 110px;
		height: 110px;
	}

	.float-consult .wechat-qr-popup .qr-label {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.float-consult {
		bottom: 16px;
		right: 14px;
	}

	.float-consult .float-main-btn {
		width: 50px;
		height: 50px;
		font-size: 10px;
	}

	.float-consult .float-main-btn i {
		font-size: 18px;
	}

	.float-consult .float-main-btn .btn-label {
		font-size: 9px;
	}

	.float-consult .float-panel {
		min-width: 170px;
		padding: 14px 14px 16px;
		border-radius: 16px;
	}

	.float-consult .float-panel .panel-title {
		font-size: 13px;
	}

	.float-consult .float-panel .panel-item {
		padding: 6px 8px;
		font-size: 12px;
		gap: 10px;
	}

	.float-consult .float-panel .panel-item .item-icon {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.float-consult .wechat-qr-popup {
		right: calc(100% + 8px);
		min-width: 120px;
		padding: 12px 12px 8px;
	}

	.float-consult .wechat-qr-popup img {
		width: 90px;
		height: 90px;
	}

	.float-consult .wechat-qr-popup .qr-label {
		font-size: 10px;
	}
}

/* ============================================================
   响应式（页面原有）
   ============================================================ */
@media (max-width: 1024px) {
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.faq-list {
		grid-template-columns: 1fr;
		gap: 8px;
	}

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

	.product-cta .cta-box {
		padding: 36px 32px;
		flex-direction: column;
		text-align: center;
	}

	.product-cta .cta-box .cta-buttons {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}

	.service-banner {
		min-height: 200px;
		padding: 24px 0 20px;
	}

	.service-banner .banner-text h1 {
		font-size: 28px;
	}

	.service-banner .banner-text .sub-title {
		font-size: 14px;
	}

	.service-main {
		padding: 30px 0 40px;
	}

	.service-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

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

	.service-item .service-icon {
		width: 52px;
		height: 52px;
		font-size: 22px;
	}

	.service-item .service-title {
		font-size: 16px;
	}

	.service-item .service-desc {
		font-size: 13px;
	}

	.faq-section {
		padding: 24px 18px;
	}

	.faq-section .section-title {
		font-size: 19px;
	}

	.faq-item .faq-question {
		font-size: 14px;
	}

	.faq-item .faq-answer {
		font-size: 13px;
		padding-left: 24px;
	}

	.contact-section {
		padding: 24px 18px;
	}

	.contact-section .section-title {
		font-size: 19px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.contact-card {
		padding: 14px 16px;
	}

	.product-cta {
		padding: 30px 0 40px;
	}

	.product-cta .cta-box {
		padding: 30px 24px;
	}

	.product-cta .cta-box .cta-text h2 {
		font-size: 22px;
	}

	.product-cta .cta-box .cta-buttons .btn-primary,
	.product-cta .cta-box .cta-buttons .btn-secondary {
		padding: 12px 24px;
		font-size: 14px;
	}
}

@media (max-width: 500px) {
	.container {
		padding: 0 14px;
	}

	.service-banner {
		min-height: auto;
		padding: 14px 0 12px;
		background: #eff3f2 url(../images/service_phone.jpg) no-repeat bottom;
		background-size: 100%;
		padding-bottom: 75%;
	}

	.service-banner .banner-text h1 {
		font-size: 22px;
	}

	.service-banner .banner-text .sub-title {
		font-size: 13px;
	}

	.service-main {
		padding: 20px 0 30px;
	}

	.service-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.faq-list {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.product-cta {
		padding: 20px 0 30px;
	}

	.product-cta .cta-box {
		padding: 24px 18px;
		border-radius: 14px;
	}

	.product-cta .cta-box .cta-text h2 {
		font-size: 19px;
	}

	.product-cta .cta-box .cta-text p {
		font-size: 13px;
	}

	.product-cta .cta-box .cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.product-cta .cta-box .cta-buttons .btn-primary,
	.product-cta .cta-box .cta-buttons .btn-secondary {
		justify-content: center;
		padding: 12px 20px;
		font-size: 14px;
		width: 100%;
	}
}

@media (max-width: 380px) {
	.service-grid {
		grid-template-columns: 1fr;
	}
}