
.QR-code-layer {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 10000;
}

.QR-code-con {
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    padding: 30px 80px 60px;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

.close-btn:hover {
    color: #165DFF;
}

.QR-code-title {
    color: var(---color-text-1, #1D2129);
    text-align: center;

    /* 16/CN-Medium */
    font-family: "PingFang SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
    .QR-code-con {
        padding: 2rem;
    }

}