* {
    /* box-sizing: border-box; */
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-continer {
    width: 100vw;
    height: 100vh;
    background: url("../img/pc/bg.jpg?v=3197845124876") center / cover no-repeat;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    height: 5vh;
    padding: 2vw 8vw;
}

header .logo img {
    height: 60px;
    cursor: pointer;
}

header .connect {
    display: flex;
    align-items: center;
}

header .connect img {
    height: 48px;
    margin-left: 20px;
    cursor: pointer;
}

.qr-box {
    display: inline-block;
    width: 240px;
    height: 240px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
}

main {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.left,
.right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left>img {
    width: 70%;
}

.right>img {
    width: 95%;
    height: 95%;
    object-fit: contain;
}

.tip {
    color: #fff;
    font-size: 20px;
    letter-spacing: 10px;
    margin: 24px 0 12px;
}

.qr-wraper {
    position: relative;
}

.qr-wraper>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

#qrcode {
    background: #fff;
    padding: 12px;
}