 /* 弹层样式 */
 .overlayWxCode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.overlayWxCode.active {
    opacity: 1;
    visibility: visible;
}

.modalWxCode {
    border-radius: 15px;
    overflow: hidden;
    max-width: 90%;
    /* width: 250px; */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.overlayWxCode.active .modalWxCode {
    transform: scale(1);
}

.modalBodyWxCode {
    text-align: center;
}

.modalImageWxCode {
    width: 230px;
    border-radius: 10px;
}
.modalFooterWxCode {
    padding: 30px;
    text-align: center;
    color: #fff;
}