
    /* ----- 模块独立样式 ----- */
    .update-module {
        --primary: #2A5CAA;
        --primary-light: #4A7CC8;
        --secondary: #F5F7FA;
        --accent: #FF6B35;
        --text: #333333;
        --text-light: #555555;
        --border: #E0E0E0;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        --radius: 12px;
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        font-family: 'Roboto', sans-serif;
        color: var(--text);
        padding: 60px 0;
        background: #ffffff;
    }

    .update-module .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ----- 标题区 ----- */
    .update-module .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .update-module .section-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }

    .update-module .section-header h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary);
        margin: 12px auto 0;
        border-radius: 2px;
    }

    .update-module .section-header p {
        font-size: 1.15rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 16px auto 0;
    }

    /* ----- 网格布局：第一行2列，第二行1列占满 ----- */
    .update-module .methods-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: stretch;
    }

    /* WiFi 卡片单独占第二行，跨两列 */
    .update-module .method-card.wifi {
        grid-column: 1 / -1;
    }

    /* ----- 通用卡片 ----- */
    .update-module .method-card {
        background: #ffffff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
    }

    .update-module .method-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    /* ----- 卡片头部 (主题色) ----- */
    .update-module .card-header {
        padding: 22px 25px 18px;
        color: #fff;
        text-align: center;
    }

    .update-module .card-header h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 4px;
        letter-spacing: 0.3px;
    }

    .update-module .card-header p {
        font-size: 0.95rem;
        opacity: 0.9;
        margin: 0;
        font-weight: 400;
    }

    /* 各卡片主题色 */
    .update-module .method-card.sd .card-header {
        background: linear-gradient(135deg, #1e7e34, #27ae60);
    }
    .update-module .method-card.usb .card-header {
        background: linear-gradient(135deg, #2A5CAA, #4A7CC8);
    }
    .update-module .method-card.wifi .card-header {
        background: linear-gradient(135deg, #d35400, #e67e22);
    }

    /* ----- 卡片主体 ----- */
    .update-module .card-body {
        padding: 25px 25px 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* 视频容器 (16:9) */
    .update-module .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 16px;
        background: #f0f0f0;
    }

    .update-module .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* 描述文字 */
    .update-module .card-desc {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 12px;
        flex-shrink: 0;
    }

    /* ----- 方案类型标签（预编程 / 需烧录） ----- */
    .update-module .solution-tag {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 3px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
        align-self: flex-start;
    }

    .update-module .solution-tag.pre-programmed {
        background: #d4edda;
        color: #155724;
    }

    .update-module .solution-tag.manual-flash {
        background: #fff3cd;
        color: #856404;
    }

    /* ----- WiFi 内部双栏 (PC + APP) ----- */
    .update-module .wifi-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 4px;
        flex: 1;
    }

    .update-module .wifi-split .split-item {
        background: var(--secondary);
        border-radius: 10px;
        padding: 20px 18px 22px;
        text-align: center;
        transition: var(--transition);
        border: 1px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .update-module .wifi-split .split-item:hover {
        border-color: var(--border);
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .update-module .wifi-split .split-item .split-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    /* PC 端图标色 */
    .update-module .wifi-split .split-pc .split-icon {
        color: #3498db;
    }
    /* APP 端图标色 */
    .update-module .wifi-split .split-app .split-icon {
        color: #8e44ad;
    }

    .update-module .wifi-split .split-item h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
        margin: 0 0 6px;
        font-family: 'Montserrat', sans-serif;
    }

    .update-module .wifi-split .split-item .split-desc {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.5;
        margin: 0 0 12px;
        flex: 1;
    }

    /* ----- 二维码 (APP端) ----- */
    .update-module .qr-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 4px 0 10px;
    }

    .update-module .qr-box img {
        width: 100%;
        max-width: 120px;
        height: auto;
        border-radius: 6px;
        border: 2px solid #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        background: #fff;
        padding: 4px;
    }

    .update-module .qr-box .qr-label {
        font-size: 0.7rem;
        color: var(--text-light);
        margin-top: 4px;
        letter-spacing: 0.5px;
    }

    /* ----- 按钮 (通用) ----- */
    .update-module .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 22px;
        border-radius: 30px;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        background: var(--primary);
        color: #fff;
        margin-top: auto;
        width: 100%;
        max-width: 200px;
        align-self: center;
    }

    .update-module .btn i {
        font-size: 0.9rem;
    }

    .update-module .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(42, 92, 170, 0.3);
        background: #1E4A89;
    }

    /* 各卡片按钮颜色 */
    .update-module .method-card.sd .btn {
        background: #27ae60;
    }
    .update-module .method-card.sd .btn:hover {
        background: #1e7e34;
    }
    .update-module .method-card.usb .btn {
        background: #2A5CAA;
    }
    .update-module .method-card.usb .btn:hover {
        background: #1E4A89;
    }
    .update-module .method-card.wifi .btn {
        background: #e67e22;
    }
    .update-module .method-card.wifi .btn:hover {
        background: #d35400;
    }

    /* APP 下载按钮 (紫色) */
    .update-module .btn-app {
        background: #8e44ad !important;
    }
    .update-module .btn-app:hover {
        background: #6c3483 !important;
        box-shadow: 0 6px 16px rgba(142, 68, 173, 0.35) !important;
    }

    /* PC 端按钮 (蓝色) */
    .update-module .btn-pc {
        background: #3498db !important;
    }
    .update-module .btn-pc:hover {
        background: #1f6f9b !important;
        box-shadow: 0 6px 16px rgba(52, 152, 219, 0.35) !important;
    }

    /* 小号按钮 (用于 split 内部) */
    .update-module .btn-sm {
        padding: 7px 16px;
        font-size: 0.8rem;
        max-width: 140px;
        width: 100%;
    }

    /* ----- 响应式 ----- */
    @media (max-width: 1024px) {
        .update-module .methods-grid {
            gap: 24px;
        }
        .update-module .section-header h2 {
            font-size: 2rem;
        }
        .update-module .wifi-split {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
    }

    @media (max-width: 820px) {
        .update-module .methods-grid {
            grid-template-columns: 1fr 1fr;
        }
        .update-module .method-card.wifi {
            grid-column: 1 / -1;
        }
        .update-module .wifi-split {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .update-module {
            padding: 40px 0;
        }
        .update-module .methods-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .update-module .method-card.wifi {
            grid-column: auto;
        }
        .update-module .wifi-split {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .update-module .section-header h2 {
            font-size: 1.7rem;
        }
        .update-module .section-header p {
            font-size: 1rem;
        }
        .update-module .card-header h3 {
            font-size: 1.2rem;
        }
        .update-module .qr-box img {
            max-width: 100px;
        }
        .update-module .btn {
            max-width: 100%;
        }
        .update-module .btn-sm {
            max-width: 100%;
        }
    }

    /* 小屏手机额外优化 */
    @media (max-width: 400px) {
        .update-module .card-body {
            padding: 18px 16px 22px;
        }
        .update-module .wifi-split .split-item {
            padding: 14px 12px 16px;
        }
        .update-module .wifi-split .split-item .split-icon {
            font-size: 1.6rem;
        }
    }
