/* 二维码弹窗容器 */
.bgqr-code-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}



/* 二维码包装器 */
.bgqr-code-wrapper {
    position: relative;
    display: inline-block;
    padding: 60px;
    background-color: #2a2a2a;
    border-radius: 10px;
}

/* 二维码边角 */
.bgqr-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid #ffd700;
}

.bgqr-corner.bgqr-top-left {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
}

.bgqr-corner.bgqr-top-right {
    top: 40px;
    right: 40px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 10px 0 0;
}

.bgqr-corner.bgqr-bottom-left {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 10px;
}

.bgqr-corner.bgqr-bottom-right {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 10px 0;
}

/* 二维码占位符 */
.bgqr-code-placeholder {
    padding: 20px;
    background-color: white;
    border-radius: 5px;
}

/* 二维码图片 */
.bgqr-code-picture {
    width: 200px;
    height: 200px;
    display: block;
}

/* 弹窗说明文字 */
.bgqr-login-instruction {
    margin: 20px 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

/* 关闭按钮 */
.bgqr-close-button {
    display: block;
    margin: 15px auto 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #2a2a2a;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
   
    padding: 5px;
}



/* 关闭按钮图标 */
.bgqr-close-icon {
    width: 50px;
    height: 50px;
    display: block;
}
