/* 英雄区域样式 */
.hero {
	
	background: url('../static/img/aboutus_top.png') center/cover no-repeat;
	position: relative;
	overflow: hidden;
	padding-top: 60px;
}

/* .hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
} */

.hero-content {
	display: flex;
	justify-content: center;
	height: 360px;
	flex-direction: column;
	
}

.hero h1 {
	
	font-size: 36px;
	margin-bottom: 20px;
	color: #303133;
	line-height: 1.1;
	font-family: PingFang SC Regular;
	font-weight: 500;
}

.hero p {
	font-size: 18px;
	color: #191919;
	max-width: 600px;
	line-height: 1.1;
	font-family: PingFang SC Regular;
}

/* 公司简介样式 */
.company-profile {
	padding: 80px 0;
}

.profile-content {
	display: flex;
	gap: 40px;
	align-items: center;
	padding: 50px;
	background-color: #f9f9f9;
	border-radius: 8px;
	flex-wrap: wrap;
}

.profile-image {
	max-width: 100%;
	flex: 0 0 350px;
	height: 220px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}
.profile-image img:hover{
	transform: scale(1.05);
}

.profile-text {
	max-width: 650px;
}

.profile-text h2 {
	margin-bottom: 20px;
	font-size: 30px;
	color: #333;
	font-family: "PingFang SC Regular";
}

.profile-text span {
	margin-bottom: 20px;
	margin-left: 15px;
	font-size: 24px;
	color: #606266;
}

.profile-text p {
	color: #333;
	line-height: 1.8;
	font-size: 18px;
}

/* 服务优势样式 */
.service-advantage {
	padding: 60px 0 80px;
}
	
.service-container{
	position:relative;
}

.advantage-title {
	margin-bottom: 50px;
	font-size: 30px;
	color: #191919;
	position: relative;
	padding-left: 20px;
	font-family: "PingFang SC Regular";
	z-index: 33;
}

.advantage-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 24px;
	background-color: #0066cc;
	border-radius: 10px;
}

.advantage-card {
	display: flex;
	background-color: #f0f7ff;
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
	height: 215px;
	background: url('../static/img/earth_bg.png') center/cover no-repeat;
	flex-wrap: wrap;
}

.advantage-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 33;
}

.advantage-text h3 {
	margin-bottom: 8px;
	font-size: 24px;
	color: #191919;
	font-family: PingFang SC Regular;
}

.advantage-text p {
	font-size: 18px;
	color: #606266;
	line-height: 1.2;
	margin-bottom: 9px;
}
.advantage-text p.p1 {
	font-size: 18px;
	color: #191919;
	line-height: 1.2;
}
.advantage-image{
	position: absolute;
	right: 15px;
	bottom: 0;
	width: 450px;
	animation-delay: 0.7s;
	animation: heartbeat 1.2s infinite 
	cubic-bezier(.36, 0, .7, 1) alternate backwards ;
}

/* .advantage-image {
	flex: 0 0 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantage-image img {
	max-width: 100%;
	height: auto;
} */
