:root {
    /* 修改这里可以调整大小 */
    --lm-pay-qr-desktop: 300px;
    --lm-pay-qr-mobile: 260px;
}

/* 支付弹窗整体放宽 */
.lm-pay-modal-large {
    width: min(520px, calc(100vw - 24px)) !important;
    max-width: 520px !important;
    max-height: calc(100vh - 20px) !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
}

/* 二维码外层和二维码图片 */
.lm-pay-qr-wrap-large,
.lm-pay-qr-large {
    width: var(--lm-pay-qr-desktop) !important;
    max-width: 82vw !important;
    height: auto !important;
    max-height: none !important;
    min-width: 0 !important;
    margin: 16px auto 20px !important;
    object-fit: contain !important;
    overflow: visible !important;
    transform: none !important;
    display: block !important;
}

/* 图片在外层容器中铺满 */
.lm-pay-qr-wrap-large .lm-pay-qr-large {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* 手机端自适应 */
@media (max-width: 560px) {
    .lm-pay-modal-large {
        width: calc(100vw - 16px) !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .lm-pay-qr-wrap-large,
    .lm-pay-qr-large {
        width: var(--lm-pay-qr-mobile) !important;
        max-width: 78vw !important;
    }
}
