/* 英雄区域 */
.hero {
	width: 100%;
	background-image: url('../static/img/contact_banner.png');
	background-size: cover;
	background-position: center;
	padding-top: 60px;
	cursor: pointer;
}

.hero-content {
	
	height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero h1 {
	color: #303133;
	margin-bottom: 20px;
	line-height: 1.1;
	font-size: 36px;
	font-family: PingFang SC Regular;
	font-weight: 500;
	
}

.hero p {
	line-height: 1.1;
	font-size: 18px;
	color: #191919;
	font-weight: 400;
	font-family: PingFang SC Regular;
}

/* 联系信息区域 */
.contact-section {
	padding: 80px 0;
	text-align: center;
	margin-bottom: 50px;
}

.contact-section h2 {
	font-size: 30px;
	color: #191919;
	margin-bottom: 15px;
	line-height: 1.5;
}

.contact-section p.subtitle {
	font-size: 24px;
	color: #606266;
	margin-bottom: 60px;
	line-height: 1.5;
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 30px;
}

.contact-card {
	/* flex: 1; */
	width: 380px;
	height: 74px;
	background:linear-gradient(180deg,#f3f5f8, #ffffff);
	border: 2px solid #ffffff;
	border-radius: 4px;
	box-shadow: 0px 4px 11px 0px rgba(228,228,228,0.40); 
	padding: 24px 20px 20px;
	text-align: left;
	display: flex;
	align-items: center;
	transition: .4s;
}
.contact-card:hover{
	transform: translateY(-5px);
}
.contact-card img {
	width: 32px;
	height: 32px;
	margin-right: 15px;
}

.contact-info {
	font-size: 16px;
	font-family: PingFang SC, PingFang SC-Regular;
	font-weight: Regular;
	text-align: left;
	color: #606266;
}
.contact-info span{
	margin-left: 10px;
	color: #191919;
	font-weight: 600;
}

.contact-cards-bottom {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin: 0 auto;
	max-width: calc(2 * (100% / 3) + 30px);
}

/* 响应式设计 */
@media (max-width: 1024px) {

	.contact-cards,
	.contact-cards-bottom {
		grid-template-columns: 1fr;
	}

	.contact-cards-bottom {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.hero {
		height: 300px;
		padding: 0 5%;
	}

	.hero h1 {
		font-size: 28px;
	}

	.contact-section {
		padding: 50px 5%;
	}
}
