/* 走近关系 */
.innovation-story {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}


.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #2c3e50;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.6;
}

.section-bottom {
	position: relative;
	/* display: inline-block; */
	font-weight: 700;
	color: #333;
	margin-bottom: 25px;
	height: 5px;
}

.section-bottom::after {
	content: '';
	position: absolute;
	top: -15px;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	/* 从 #6610f2 到 #0d6efd 的渐变 */
	background: linear-gradient(90deg, #6610f2, #0d6efd);
	border-radius: 2px;
}

.story-custom {
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	height: 255px;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
}

.story-custom img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.story-custom .story-content {
	position: absolute;
	bottom: -40px;
	left: 0;
	width: 100%;
	padding: 20px;
	color: #fff;
	background: transparent;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 1;
}

.story-custom .story-content img {
	width: 12px;
	height: 12px;
}

.story-custom .story-content h5,
.story-custom .story-content p,
.story-custom .story-content a {
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
	margin: 0 0 8px 0;
}

.story-custom .story-content h5 {
	font-size: 18px;
	font-weight: 600;
}

.story-custom .story-content p {
	font-size: 14px;
	opacity: 0.9;
}

.story-custom .more {
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateX(10px);
}

.story-custom:hover {
	box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);

}

.story-custom:hover .story-content {
	transform: translateY(-30px);
}

.story-custom:hover .more {
	opacity: 1;
	transform: translateX(0);
}

.story-custom:hover img {
	transform: scale(1.08);
}

.story-custom:hover .more i {
	transform: translateX(5px);
	box-shadow: #333 5px 5px 5px 5px;
}

/* 响应式调整 */
@media (max-width: 767px) {
	.story-custom {
		height: 220px;
		margin-bottom: 15px !important;
	}

	.story-custom .story-content {
		padding: 15px;
	}

	.story-custom .story-content h5 {
		font-size: 16px;
	}

	.section-bottom {
		font-size: 24px;
		top: 10px;
		height: 8px;
		font-size: 2rem;
	}

	.section-bottom::after {
		width: 60px;
		height: 3px;
	}
}

@media (max-width: 480px) {
	.section-bottom {
		top: 25px;
		height: 8px;
		font-size: 2rem;
	}
}