/* 二维码定位样式 */
.contact-card {
	cursor: pointer;
}
.wechatCard{
	position: relative;
}
.wechat-qrcode {
	position: absolute;
	top: 100%;
	left: 0; /* 和卡片文字左对齐 */
	margin-top: 12px;
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	z-index: 9999;
}
.wechat-qrcode img {
	display: block;
	width: 160px;
	height: 160px;
	object-fit: cover;
}
/* Hero 区域 */
.contact_us_hero {
	color: white;
	text-align: center;
	height: 658px;
	position: relative;
}

.contact_us_hero img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	z-index: 1;
}
.foot{
	width: 100%;
	
    padding: 20px;
	background: #FFF;
	margin-top: 90px;
}
.contact_us_hero .container {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.contact_us_hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.contact_us_hero p {
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto 2rem;
	color: #DBEBF4;
}

.btn-consult {
	background: linear-gradient(90deg, #00AAF3 5.05%, #17E4E7 93.99%);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 0.75rem 1.75rem;
	font-weight: 500;
	margin-right: 1rem;
}

.btn-location {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 25px;
	padding: 0.75rem 1.75rem;
	font-weight: 500;
}

/* 通用区块标题 */
.section-title {
	text-align: center;
	margin: 4rem 0 2rem;
}

.section-title h2 {
	font-size: 1.5rem;
	font-weight: 600;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg, #00AAF3 5.05%, #17E4E7 93.99%), #B31B25;
	border-radius: 30px;

}

.section-title p {
	font-size: 0.9rem;
	color: #515D64;
	margin-top: 1rem;
}

/* 服务保障卡片 */
.service-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-icon {
	width: 56px;
	height: 56px;
	background-color: #e6f7ff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.service-icon img {
	width: 100%;
	height: 100%;
}

.service-card h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.service-card p {
	font-size: 0.85rem;
	color: #666;
	line-height: 1.6;
}

/* 联系方式卡片 */
.contact-card {
	background: white;
	border-radius: 24px;
	padding: 1.5rem;
	height: 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-icon {
	width: 34px;
	height: 34px;
}

.contact-icon img {
	width: 100%;
	height: 100%;
}

.contact-content h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-content .value {
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 0.5rem;
}

.contact-content .desc {
	font-size: 0.85rem;
	color: #666;
}

/* 小贴士卡片 */
.tip-card {
	border-radius: 24px;
	background: #F5FCFF;
	padding: 1.5rem;
	height: 100%;
	color: #243036;
}

.tip-card h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tip-card h5 img {
	width: 34px;
	height: 34px;
}

.tip-card ul {
	list-style: none;
	padding-left: 1.2rem;
}

.tip-card li {
	font-size: 0.85rem;
	color: #243036;
	margin-bottom: 0.5rem;
	position: relative;
}

.tip-card li::before {
	content: "•";
	color: #006571;
	position: absolute;
	left: -1rem;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.contact_us_hero h1 {
		font-size: 2rem;
	}

	.contact_us_hero {
		height: 458px;
	}

	.btn-consult,
	.btn-location {
		display: block;
		width: 100%;
		margin: 0.5rem auto;
	}
}