/* ===== 页面横幅 ===== */
.page-banner {
	padding: 80px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	background: url('/static/clpacc/images/82d22f0fb50048e.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.page-banner::after {
	content: '';
	position: absolute;
	top: -60%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
	pointer-events: none;
}
.page-banner h2 {
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 6px;
	position: relative;
	z-index: 1;
}
.page-banner p {
	font-size: 20px;
	opacity: 0.85;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
}
.coverMask {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}
/* ===== 主体 ===== */
.main-content {
	padding: 120px 0 60px;
}

/* ===== 联系卡片网格 ===== */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.contact-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 28px 34px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	border: 1px solid #edf0f5;
	transition: all 0.35s ease;
}
.contact-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(157, 31, 44, 0.07);
	border-color: rgba(157, 31, 44, 0.12);
}

.contact-card .icon {
	width: 72px;
	height: 72px;
	background: #fdf0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 32px;
	transition: background 0.3s;
}
.contact-card:hover .icon {
	background: #9d1f2c;
}
.contact-card:hover .icon span {
	filter: brightness(10);
}
.contact-card .icon span {
	transition: filter 0.3s;
}

.contact-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 6px;
}
.contact-card .detail {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
}
.contact-card .detail .highlight {
	color: #9d1f2c;
	font-weight: 600;
	font-size: 17px;
}
.contact-card .sub {
	font-size: 12px;
	color: #b0b8c4;
	margin-top: 6px;
}
/* ===== 响应式 ===== */
@media (max-width: 992px) {
	.contact-grid {
		gap: 20px;
	}
	.contact-card {
		padding: 30px 18px 26px;
	}
}

@media (max-width: 768px) {
	.page-banner {
		padding: 20px;
	}
	.page-banner h2 {
		font-size: 24px;
	}
	.page-banner p {
		font-size: 13px;
	}

	.main-content {
		padding: 75px 0 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.contact-card {
		padding: 22px 16px 20px;
		display: flex;
		align-items: center;
		text-align: left;
		gap: 18px;
	}
	.contact-card .icon {
		width: 56px;
		height: 56px;
		font-size: 24px;
		margin: 0;
		flex-shrink: 0;
	}
	.contact-card h3 {
		font-size: 15px;
	}
	.contact-card .detail {
		font-size: 13px;
	}
	.contact-card .detail .highlight {
		font-size: 14px;
	}
	.contact-card .sub {
		font-size: 11px;
	}
	.container {
		padding: 0 16px;
	}
}

@media (max-width: 480px) {
	.page-banner h2 {
		font-size: 20px;
	}
	.contact-card {
		padding: 16px 12px;
		gap: 14px;
	}
	.contact-card .icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}
}