#layoutWxMpBindingDialog {
    width: 400px;
    height: 380px;
    border-radius: 8px;
    text-align: center;
}

    #layoutWxMpBindingDialog .wxmp-dialog-hd {
        margin-top: 50px;
        font-size: 22px;
        font-weight: bold;
    }

    #layoutWxMpBindingDialog .wxmp-dialog-bd {
        margin-top: 20px;
    }

    #layoutWxMpBindingDialog .wxmp-qrcode-img {
        width: 220px;
        height: 220px;
        margin: 0 auto 20px auto;
        position: relative;
        padding: 10px;
    }

        #layoutWxMpBindingDialog .wxmp-qrcode-img::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 60px;
            border-left: 2px solid #F69241;
            border-top: 2px solid #F69241;
            content: "";
            border-top-left-radius: 20px;
        }

    #layoutWxMpBindingDialog .wxmp-qrcode-img1::after {
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        border-right: 2px solid #F69241;
        border-top: 2px solid #F69241;
        content: "";
        border-top-right-radius: 20px;
    }

    #layoutWxMpBindingDialog .wxmp-qrcode-img1::before {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 60px;
        border-left: 2px solid #F69241;
        border-bottom: 2px solid #F69241;
        content: "";
        border-bottom-left-radius: 20px;
    }

    #layoutWxMpBindingDialog .wxmp-qrcode-img::after {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60px;
        height: 60px;
        border-right: 2px solid #F69241;
        border-bottom: 2px solid #F69241;
        content: "";
        border-bottom-right-radius: 20px;
    }

div:has(> #wxMpBindCode) {
    position: relative;
}

.wxmp-qrcode-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
    color: #999;
    cursor: pointer;
    display: none;
}

.wxmp-qrcode-mask > div {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
}

    .wxmp-qrcode-mask > div > div {
        margin: auto;
    }

    .wxmp-qrcode-mask .iconfont {
        font-size: 26px;
    }

    .wxmp-qrcode-mask:hover {
        color: #FFF;
    }