<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#sharePopup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 100000;
    /* transition: all 0.3s ease; */
    display: none;
}

#sharePopup .qrcodeMain {
    padding: 20px 40px 20px 40px;
    width: 1200px;
    border-radius: 4px;
    background: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#sharePopup .qrcodeMain .close1 {
    position: absolute;
    top: 10px;
    right: 10px;
}

#sharePopup .qrcodeMain .close&gt;img {
    width: 30px;
    height: 30px;
}

#sharePopup .qrcodeMain .textDetail {
    width: 190px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #333333;
    word-wrap: break-word;
    word-break: break-all;
}

#sharePopup .qrcodeMain #qriousCode {
    display: block;
    margin: 15px auto 10px auto;
}


#sharePopup .qrcodeMain .shareGif {
    display: block;
    box-sizing: border-box;
    width: 830px;
    height: 300px;
    margin-left: 20px;
}</pre></body></html>