/* 基础重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "微软雅黑", sans-serif;
}

/* 标题 */
.text-center {
    text-align: center !important;
	margin: 30px 0;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #2c3e50;
}

.story-container {
	display: block;
	margin: 0 8vw 0 8vw;
}

.section-bottom {
	position: relative;
	display: inline-block;
	font-weight: 700;
	color: #333;
	margin-bottom: 25px;
}

.section-bottom::after {
	content: '';
	position: absolute;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	background: linear-gradient(90deg, #6610f2, #0d6efd);
	border-radius: 2px;
}

/* 主容器 */
.industry-territory-container {
	margin: 0 auto;
	padding: 0 5% 40px 5%;
}

/* 标题样式 */
.industry-territory-title {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #333;
}

/* 卡片容器（网格布局） */
.industry-territory-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* 单个卡片基础样式 */
.industry-territory-card {
	position: relative;
	width: 100%;
	height: 300px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	/* 初始动画状态 */
	opacity: 0;
	transform: translateY(20px);
	animation: industry-territory-fadeIn 0.8s ease forwards;
}

/* 卡片逐个延迟显示 */
.industry-territory-card:nth-child(1) {
	animation-delay: 0.2s;
}

.industry-territory-card:nth-child(2) {
	animation-delay: 0.4s;
}

.industry-territory-card:nth-child(3) {
	animation-delay: 0.6s;
}

.industry-territory-card:nth-child(4) {
	animation-delay: 0.8s;
}

.industry-territory-card:nth-child(5) {
	animation-delay: 1s;
}

.industry-territory-card:nth-child(6) {
	animation-delay: 1.2s;
}

/* 卡片图片 */
.industry-territory-card-img {
	width: 100%;
	height: 120%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

/* 卡片文字区域 */
.industry-territory-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
	color: #fff;
}

/* 卡片标题 */
.industry-territory-card-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}

/* 卡片描述 */
.industry-territory-card-desc {
	font-size: 14px;
	margin-bottom: 12px;
	opacity: 0.9;
}

/* 了解更多链接 */
.industry-territory-card-link {
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.industry-territory-card-link:hover {
	color: #e0e0e0;
}

/* 卡片hover动画 */
.industry-territory-card:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.industry-territory-card:hover .industry-territory-card-img {
	transform: scale(1.05);
}

/* 渐入动画 */
@keyframes industry-territory-fadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式适配 */
@media (max-width: 992px) {
	.industry-territory-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.industry-territory-cards {
		grid-template-columns: 1fr;
	}
}