
    /* 整体容器 */
    .ue-guarantee-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px 60px;
        /* 上下间距20px，左右间距60px */
        padding: 18px 20px;
        width: 100%;
        max-width: 1200px;
        /* 限制最大宽度，避免PC上太散 */
        margin: 0 auto;
        /* 居中 */
        box-sizing: border-box;
    }

    /* 每个保障项 */
    .ue-guarantee-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        color: #1a1a2e;
        font-weight: 600;
        white-space: nowrap;
        /* 防止文字换行 */;
    }

    .ue-guarantee-item .icon {
        font-size: 24px;
        line-height: 1;
        flex-shrink: 0;
        /* 图标不缩小 */;
    }

    .ue-guarantee-item .text {
        font-weight: 600;
        font-size: 16px;
    }

    /* ========== 手机端适配（屏幕宽度 ≤ 768px） ========== */
    @media (max-width: 768px) {
        .ue-guarantee-wrap {
            gap: 14px 30px;
            /* 手机端间距缩小 */
            padding: 14px 12px;
            justify-content: center;
        }

        .ue-guarantee-item {
            font-size: 14px;
            gap: 6px;
        }

        .ue-guarantee-item .icon {
            font-size: 20px;
        }

        .ue-guarantee-item .text {
            font-size: 14px;
        }
    }

    /* ========== 小手机端（屏幕宽度 ≤ 480px） ========== */
    @media (max-width: 480px) {
        .ue-guarantee-wrap {
            gap: 10px 18px;
            /* 更紧凑 */
            padding: 12px 8px;
        }

        .ue-guarantee-item {
            font-size: 12px;
            gap: 4px;
        }

        .ue-guarantee-item .icon {
            font-size: 17px;
        }

        .ue-guarantee-item .text {
            font-size: 12px;
        }
    }
