.section-bottom {
	position: relative;
	display: inline-block;
	font-weight: 700;
	color: #222;
	/* margin-bottom: 25px; */
}

.section-bottom::after {
	content: '';
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	background: linear-gradient(90deg, #6610f2, #0d6efd);
	border-radius: 2px;
}

/* 核心：奖项区域 */
.about-section {
	position: relative;
	/* 作为内部元素的定位容器 */
	min-height: 100vh;
	/* 全屏高度 */
	overflow: hidden;
	/* 隐藏超出容器的部分 */
}

/* 全屏图片样式 */
.about-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
	/* transform: scale(0.8); */
	/* 初始缩放80% */
	/* transition: transform 1s ease; */
	/* 平滑过渡效果 */
}


/* 数字统计区域（在图片内部下方） */
.about-stats {
	position: relative;
	top: 720px;
	/* 相对定位，确保在图片上方 */
	z-index: 2;
	/* 文字在图片上方 */
	display: flex;
	justify-content: center;
	gap: 150px;
	flex-wrap: wrap;
	padding-bottom: 100px;
	/* 距离底部的距离 */
	width: 100%;
}

.about-item {
	min-width: 180px;
	text-align: center;
	color: #fff;
	/* 文字颜色改为白色，避免与图片冲突 */
}

/* 数字样式（突出显示） */
.about-number {
	font-size: 72px;
	font-weight: bold;
	/* margin-bottom: 20px; */
	color: #fff;
	/* 数字颜色改为白色 */
}

/* 文字标签样式 */
.about-label {
	font-size: 24px;
	color: #fff;
	/* 标签颜色改为白色 */
}

/* 响应式适配 */
@media (max-width: 768px) {
	.title-section {
		padding: 60px 20px 30px;
	}

	.about-title {
		font-size: 32px;
	}

	.about-section {
		min-height: 80vh;
	}

	.about-stats {
		gap: 80px;
		padding-bottom: 80px;
	}

	.about-number {
		font-size: 56px;
	}

	.about-label {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.about-section {
		min-height: 70vh;
	}

	.about-stats {
		gap: 50px;
		padding-bottom: 60px;
	}

	.about-number {
		font-size: 48px;
	}
}