/* 首页业务卡片 */
.business-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	text-align: center;
}
.business-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.business-card i {
	font-size: 60px;
	margin-bottom: 20px;
}
.business-card h4 {
	margin-bottom: 15px;
}
.business-card .badge {
	font-size: 14px;
	padding: 5px 15px;
	margin-bottom: 15px;
}

/* 首页数据统计 */
.stats-row {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 60px 0;
}
.stat-item {
	text-align: center;
	padding: 20px;
}
.stat-item h2 {
	font-size: 48px;
	font-weight: bold;
}
.stat-item p {
	font-size: 16px;
	opacity: 0.9;
}

/* 首页核心优势 */
.advantage-card {
	padding: 20px;
	border-left: 4px solid #667eea;
	background: #f8f9fa;
	margin-bottom: 20px;
}
.advantage-card h5 {
	color: #333;
	margin-bottom: 10px;
}
