* {
    box-sizing: border-box;
}

img {
    vertical-align: middle;
}

body {
    width: 100vw;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: url(../img/pc/bg.jpg?v=9) no-repeat;
    background-size: cover;
    padding: 2% 0% 0;
    min-width: 1200px;
}

header {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 5%;
}

header>img:last-of-type {
    cursor: pointer;
}

header>img:nth-of-type(2) {
    margin-left: auto;
    margin-right: 20px;
    cursor: pointer;
}

header>img:last-of-type {
    cursor: pointer;
}

main {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

main>img:first-of-type {
    width: 60%;
}

main>img:nth-of-type(2) {
    width: 45%;
}

main>img:last-of-type {
    width: 20%;
}

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

.item-left {
    transform: translate(60px, 0px);
}

.item-right {
    background: url(../img/pc/t2.png?v=9) no-repeat;
    background-size: auto 100%;
    transform: translate(-50px, 0px);
}

.btns {
    width: 300px;
    margin-left: 30px;
}

.btns img {
    width: 220px;
}

.qrcode-box {
    display: flex;
}

.android {
    margin-top: 10px;
}

.text {
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 40px;
}

.wraper {
    padding: 4px;
    background: linear-gradient(to top, #301578, #cd1295);
    border-radius: 16px;
    width: 228px;
    height: 228px;
}

.code-bg {
    width: 168px;
    height: 214px;
    padding: 5px 12px;
    box-sizing: border-box;
    background: url(../img/pc/code_bg.png?v=9) no-repeat;
    background-size: 100% 100%;
    text-align: center;
}

#qrcode {
    width: 150px;
    height: 150px;
    text-align: center;
    /* position: absolute; */
    /* left: 50%;
    transform: translate(-50%, 0px); */
    /* margin-top: 60px; */
}

.text2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.tip {
    width: 100%;
    margin-top: 20px;
}

.ads-list {
    margin-top: 60px;
    width: 790px;
    height: 188px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: start;
    text-align: center;
    position: relative;

}

.ads-list a {
    display: none;
}

.ads-list div {
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

.ads-list img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 10px;
}

.ads-list p {
    height: 16px;
    line-height: 16px;
    font-size: 12px;
    margin-top: 2px;
    color: #333;
}

.down {
    cursor: pointer;
}