* {
    box-sizing: border-box;
}

img {
    vertical-align: middle;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.page-container {
    width: 100%;
    background: url(../img/pc/bg.jpg?tk=6) top / cover no-repeat;
    display: flex;
    flex-direction: column;
    padding: 1% 5%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 100px;
}

header .connect img {
    height: 50px;
    cursor: pointer;
    margin-left: 24px;
}

main {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

main .main-left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main .main-right {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.main-left .slogan {
    width: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.main-left .slogan img {
    width: 85%;
    height: 100%;
    object-fit: contain;
}

.box {
    padding: 24px;
}

.box,
.box>.qr {
    display: inline-block;
    text-align: center;
}

.box>.text {
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.box>.qr>#qrcode {
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

#qrcode {
    width: 200px;
    height: 200px;
}

#qrcode img {
    width: 100%;
}