/* 标题 */
.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-content-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 5% 40px;
            box-sizing: border-box;
        }

        /* 标题样式 */
        .industry-content-title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            padding-bottom: 10px;
        }

        .industry-content-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #007bff, #00c6ff);
            border-radius: 3px;
            animation: industry-content-title-anim 2s ease-in-out infinite;
        }

        @keyframes industry-content-title-anim {
            0% { width: 40px; }
            50% { width: 80px; }
            100% { width: 40px; }
        }

        /* 卡片容器（网格布局） */
        .industry-content-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* 单个卡片样式 */
        .industry-content-card {
            border-radius: 8px;
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease-in-out;
            position: relative;
            cursor: pointer;
        }

        /* 卡片悬浮动画 */
        .industry-content-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* 卡片图片 */
        .industry-content-card-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .industry-content-card:hover .industry-content-card-img {
            transform: scale(1.05);
        }

        /* 卡片内容区 */
        .industry-content-card-content {
            padding: 25px;
        }

        /* 卡片标题 */
        .industry-content-card-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 15px 0;
            color: #333;
            transition: color 0.3s ease;
        }

        /* 卡片描述 */
        .industry-content-card-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin: 0 0 20px 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 查看全部链接 */
        .industry-content-card-link {
            display: inline-block;
            font-size: 14px;
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding-right: 20px;
        }

        .industry-content-card-link::after {
            content: '>';
            position: absolute;
            right: 0;
            top: 0;
            transition: transform 0.3s ease;
        }

        .industry-content-card:hover .industry-content-card-link::after {
            transform: translateX(5px);
        }

        /* 添加渐变遮罩层 */
        .industry-content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .industry-content-card:hover::before {
            opacity: 1;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .industry-content-cards {
                grid-template-columns: 1fr;
            }
        }