
    /* 1. 基础容器 */
    .impl-support-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        display: flex;
        align-items: center;
        gap: 60px;
        color: #0f172a;
    }

    /* 2. 左侧：文案内容区 */
    .impl-left-content {
        flex: 1;
    }

    .impl-left-content h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 45px;
        letter-spacing: -0.02em;
    }

    .impl-feature-item {
        display: flex;
        gap: 20px;
        margin-bottom: 35px;
        align-items: flex-start;
    }

    /* 图标方块 (浅紫色背景) */
    .impl-icon-box {
        width: 48px;
        height: 48px;
        background-color: #f0f0ff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #56B8B8; /* 使用主色调 */
    }

    .impl-text-box h4 {
        margin: 0 0 8px 0;
        font-size: 20px;
        font-weight: 700;
    }

    .impl-text-box p {
        margin: 0;
        font-size: 15px;
        color: #64748b;
        line-height: 1.6;
    }

    /* 3. 右侧：技术规格卡片区 */
    .impl-right-card {
        flex: 1.2;
    }

    .spec-card {
        background: #ffffff;
        border: 1px solid #f1f5f9;
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

    .spec-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 35px 0;
    }

    /* 规格行样式 */
    .spec-row {
        display: flex;
        justify-content: space-between;
        padding: 18px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .spec-row:last-child {
        border-bottom: none;
    }

    .spec-label {
        font-size: 15px;
        color: #94a3b8;
        font-weight: 500;
    }

    .spec-value {
        font-size: 15px;
        font-weight: 800;
        color: #0f172a;
    }

    /* 4. 响应式适配 */
    @media (max-width: 992px) {
        .impl-support-section {
            flex-direction: column;
            gap: 40px;
        }
        .impl-left-content h2 {
            font-size: 32px;
            text-align: center;
        }
        .impl-right-card {
            width: 100%;
        }
        .spec-card {
            padding: 25px;
        }
    }
