
    /* =========================================
       1. 全局配置与字体
       ========================================= */
    :root {
        --bg-canvas: #f8f8f8;
        --col-client: #6FA8DC;
        --col-mfr: #C90076; 
        --col-navy: #2C3E75;
        --col-text: #2C3E75;
        
        /* 字体定义 */
        --font-number: 'Damion', cursive; /* 数字字体 */
        --font-text: 'DengXian', '等线', 'Microsoft YaHei', sans-serif; /* 文本字体 */
        --font-sans: 'Roboto', sans-serif;
    }

    /* 5个步骤的背景色 */
    .bg-step-1 { background-color: #d8e4ef; }
    .bg-step-2 { background-color: #9dc1e4; }
    .bg-step-3 { background-color: #4f8dd6; }
    .bg-step-4 { background-color: #3561b6; }
    .bg-step-5 { background-color: #0d3b94; }

    /* =========================================
       2. 模块主容器 (适配 1680px)
       ========================================= */
    .module-wrapper-short {
        max-width: 1680px; 
        width: 100%;
        
        /* 高度减少至 340px */
        height: 340px !important; 
        min-height: 340px;        
        max-height: 340px;        
        
        background-color: var(--bg-canvas);
        position: relative;
        box-sizing: border-box;
        
        /* 上下内边距为 0 */
        padding: 0 50px; 
        
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin: 0 auto;
    }

    /* =========================================
       4. 卡片容器
       ========================================= */
    .module-wrapper-short .cards-container {
        display: flex;
        justify-content: space-between; 
        align-items: flex-end;
        flex-grow: 1;
        
        /* 底部留 5px，让卡片沉底 */
        padding: 0 40px 5px 40px; 
        
        gap: 0; 
        flex-wrap: nowrap; 
        height: 100%; 
    }

    .card-item {
        position: relative;
        width: 178px; 
        height: 230px;
        display: flex;
        justify-content: center;
        align-items: flex-end; 
        cursor: pointer;
        flex-shrink: 0; 
        transform: scale(1.35);
        transform-origin: bottom center;
        margin-bottom: 10px;
    }

    /* --- Tab (弹出卡片) --- */
    .card-tab {
        position: absolute;
        bottom: 35px; 
        width: 150px; 
        height: 180px;
        border-radius: 15px 15px 0 0;
        z-index: 1;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        justify-content: center;
        padding-top: 5px;
        box-sizing: border-box;
        box-shadow: 0 -5px 10px rgba(0,0,0,0.05);
    }
    
    .card-item:hover .card-tab {
        transform: translateY(-20px);
    }

    .tab-number {
        /* 修改：使用 Damion 字体 */
        font-family: var(--font-number);
        font-weight: 400; /* Regular */
        
        color: #fff;
        font-size: 31px; /* 稍微调大一点字号以匹配之前的视觉大小 */
        line-height: 1;
        display: flex;
        align-items: baseline;
        text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
    .num-zero {
        font-size: 0.6em; /* Damion字体下0可以稍微大一点 */
        margin-right: 2px;
    }

    /* --- Pocket (前面的口袋) --- */
    .card-pocket {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 185px;
        background-color: #ffffff; 
        clip-path: path('M 20 0 L 44 0 L 44 20 Q 44 30 54 30 L 124 30 Q 134 30 134 20 L 134 0 L 158 0 Q 178 0 178 20 L 178 165 Q 178 185 158 185 L 20 185 Q 0 185 0 165 L 0 20 Q 0 0 20 0 Z');
        filter: 
            drop-shadow(6px 6px 8px rgba(0, 0, 0, 0.3))
            drop-shadow(-2px -2px 1px rgba(255, 255, 255, 1));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end; 
        transform: translateY(10px);
        padding-bottom: 35px; 
    }

    /* 内部装饰 */
    .deco-brackets {
        position: absolute; top: 40px; bottom: 45px; left: 18px; right: 18px; pointer-events: none;
    }
    .deco-brackets::before {
        content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 10px;
        border-top: 2px solid var(--col-navy); border-bottom: 2px solid var(--col-navy); border-left: 2px solid var(--col-navy); border-radius: 15px 0 0 15px;
    }
    .deco-brackets::after {
        content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 10px;
        border-top: 2px solid var(--col-navy); border-bottom: 2px solid var(--col-navy); border-right: 2px solid var(--col-navy); border-radius: 0 15px 15px 0;
    }

    .card-icon {
        width: 70px; height: 70px; object-fit: contain; margin-bottom: 5px; z-index: 3;
    }
    .card-text {
        /* 保持等线字体 */
        font-family: var(--font-text); 
        font-weight: bold; /* Bold */
        
        font-size: 13.5px; 
        color: var(--col-text); 
        text-align: center; 
        height: 20px; 
        line-height: 20px; 
        margin-bottom: 13px; 
        white-space: nowrap; 
        z-index: 3;
    }
    .card-bar {
        width: 45px; height: 6px; border-radius: 3px; background-color: var(--col-client); z-index: 3; margin-bottom: 15px;
    }

    /* 颜色类 */
    .bg-c-blue { background-color: var(--col-client); }
    .bg-c-pink { background-color: var(--col-mfr); }
    .bg-c-mix { background: linear-gradient(90deg, var(--col-client) 50%, var(--col-mfr) 50%); }
    .bg-c-blue-purple { background: linear-gradient(90deg, var(--col-client) 50%, var(--col-mfr) 50%); }

    /* =========================================
       5. 移动端适配
       ========================================= */
    @media screen and (max-width: 1024px) {
        .module-wrapper-short {
            padding: 0 10px; 
            height: auto !important; 
            max-height: none;
            min-height: 245px;
        }

        .module-wrapper-short .cards-container {
            justify-content: center;
            padding: 0 20px 20px; 
            gap: 15px; 
            flex-wrap: wrap; 
        }
        
        .card-item {
            transform: none; 
            margin-bottom: 0px;
        }
    }

    @media screen and (max-width: 600px) {
        .module-wrapper-short {
            padding: 0 5px;
        }

        .module-wrapper-short .cards-container {
            gap: 5px;
            padding: 0 10px 20px;
        }

        .card-item {
            transform: scale(0.92);
            margin: -10px -5px;
        }
    }

    @media screen and (max-width: 370px) {
        .card-item {
            transform: scale(0.82);
            margin: -20px -12px;
        }
    }
