/* ========================================
   应用场景精准匹配 Section
   ======================================== */

.he_scene_match {
    background: #f8f9fb;
    padding: 100px 0 120px;
    overflow: hidden;
}

/* 标题区 */
.he_scene_ti {
    text-align: center;
    margin-bottom: 20px;
}

.he_scene_ti h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.he_scene_ti h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e60112 0%, #f34a2f 100%);
    border-radius: 2px;
}

.he_scene_ti .he_scene_subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    margin-top: 28px;
}

/* Tab导航 */
.he_scene_tabs {
    margin-bottom: 56px;
}

.he_scene_tab_list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.he_scene_tab_btn {
    padding: 14px 36px;
    border: 1.5px solid #d9d9d9;
    background: #fff;
    color: #333;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    outline: none;
    font-family: "Microsoft Yahei", 'PingFang SC', sans-serif;
}

.he_scene_tab_btn:hover {
    border-color: #e60112;
    color: #e60112;
}

.he_scene_tab_btn.act {
    background: linear-gradient(to right, #e60112, #f34a2f);
    border-color: transparent;
    color: #fff;
    font-weight: bold;
}

/* 内容面板 */
.he_scene_panels {
    position: relative;
}

.he_scene_panel {
    display: none;
    align-items: center;
    gap: 80px;
}

.he_scene_panel.act {
    display: flex;
}

/* 图片区 */
.he_scene_img {
    width: 44%;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.he_scene_img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.he_scene_img:hover img {
    transform: scale(1.04);
}

/* 文字信息区 */
.he_scene_info {
    flex: 1;
}

.he_scene_info h3 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.he_scene_info .he_scene_desc {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 36px;
}

/* 特性列表（2列网格） */
.he_scene_features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
    margin-bottom: 44px;
}

.he_scene_feat_item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.he_scene_check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, #e60112, #f34a2f);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.he_scene_feat_item span:last-child {
    font-size: 15px;
    color: #444;
    line-height: 1.65;
}

/* 了解方案按钮 */
.he_scene_more a {
    display: inline-block;
    padding: 15px 44px;
    background: linear-gradient(to right, #e60112, #f34a2f);
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
}

.he_scene_more a:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* ========================================
   响应式
   ======================================== */

@media (max-width: 1200px) {
    .he_scene_panel.act {
        gap: 48px;
    }

    .he_scene_img {
        width: 46%;
    }
}

@media (max-width: 1024px) {
    .he_scene_match {
        padding: 80px 24px;
    }

    .he_scene_panel.act {
        flex-direction: column;
        gap: 40px;
    }

    .he_scene_img {
        width: 100%;
    }

    .he_scene_img img {
        height: 360px;
    }

    .he_scene_tab_btn {
        padding: 12px 26px;
        font-size: 15px;
    }

    .he_scene_more {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .he_scene_match {
        padding: 60px 16px 80px;
    }

    .he_scene_ti h2 {
        font-size: 28px;
    }

    .he_scene_features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .he_scene_tab_list {
        gap: 10px;
    }

    .he_scene_tab_btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .he_scene_info h3 {
        font-size: 22px;
    }

    .he_scene_img img {
        height: 240px;
    }

    .he_scene_more a {
        padding: 13px 32px;
        font-size: 14px;
    }
}

