.qr-window-wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.qr-window{
    box-sizing: border-box;
    width: 440px;
    height: max-content;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0px 1px 11px rgba(0, 0, 0, 0.157278);
    border-radius: 12px;
    background-color: #fff;
}
.qr-window *{box-sizing: border-box;}
.qr-window .header{
    height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    -webkit-app-region: drag;
    -webkit-user-select: none;
    position: relative;
}
.qr-window .header .title{
    font-size: 16px;
    color: #181E33;
}
.qr-window .header .close{
    width: 24px;
    height: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -webkit-app-region: no-drag;
    position: absolute;
    right: 20px;
}
.qr-window .header .close>i{
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(../images/close.png) center no-repeat;
    background-size: 100% 100%;
}
.qr-window .content{
    padding: 50px 0;
}
.qr-window .content .invitation-code{
    text-align: center;
}
.qr-window .content .invitation-code>span{
    font-size: 16px;
    color: #474C59;
}
.qr-window .content .invitation-code .light{
    font-size: 34px;
    color: #1677FF;
}
.qr-window .content .invitation-code>i{
    width: 18px;
    height: 18px;
    display: inline-block;
    background: url(../images/copy.png) center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.qr-window .content .gray{
    font-size: 14px;
    color: #747B88;
    text-align: center;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-all;}

.qrcode_button_text{
    font-size: 14px;
    line-height: 19.6px;
    color: #8A8B99;
    margin-top: 25px;
    text-align: center;
}

.qr-window .content .qrcode{
    width: 156px;
    height: 156px;
    margin: 0 auto;
    margin-top: 30px;

}
.qr-window .content .qrcode>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.qr-window .footer{
    text-align: center;
    padding-bottom: 64px;
}
.qr-window .footer>button{
    width: 152px;
    height: 40px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.qr-window .footer .marginright22{
    margin-right: 22px;
}
.qr-window .footer .white{
    background-color: #fff;
    border:1px solid #94C1FF;
    color: #1677FF;
}
.qr-window .footer .blue{
    background-color: #1677FF;
    color: #fff;
}
/* 手机 */
@media screen and (max-width:600px) {
    .qr-window{
        width: 5.9rem;
        border-radius: .24rem;
    }
    .qr-window .header .title{
        display: none;
    }
    .qr-window .content {
        padding: 0;
    }
    .qr-window .content .invitation-code{
        font-size: 12px;
        line-height: 16.8px;
    }
    .qr-window .content .invitation-code .light {
        font-size: 20px;
        line-height: 28px;
    }
    .qr-window .content .gray{
        margin-top: 0;
    }
    .qr-window .content .qrcode{
        margin-top: .2rem;
        margin-bottom: .27rem;
    }
    .qr-window .footer{
        padding-bottom: 0;
    }
    .qr-window .footer .marginright22{
        margin-right: .44rem;
    }
    .qr-window .footer>button{
        width: 2rem;
        margin: .4rem 0 .48rem 0;
    }
}
/* PC */
@media screen and (min-width:960px) {}

/*被嵌套在其他页面时转发显示遮罩*/
body.iframebody .maskDiv {
    background: rgba(16,26,41,0.76);
}
body.iframebody{
    background: rgba(16,26,41,0.76);
}