* {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
    vertical-align: top;
}

body {
    width: 100vw;
    height: 100vh;
    background: url(/image/background.png) no-repeat center;
    background-size: cover;
}

header {
    position: fixed;
    top: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 2vw 5vw;
    box-sizing: border-box;
}

header .logo {
    height: 5vw;
}

header .contact img {
    height: 3vw;
    margin: 0 1vw;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8vw;
    box-sizing: border-box;
    float: right;
    padding-right: 10vw;
}

section .banner {
    width: 40vw;
}

section .qrcode-download-container {
    margin-top: 1vw;
}

section .qrcode-download {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1vw;
}

section .qrcode-download .qrcode {
    padding: 0.7rem;
    background-color: white;
    border-radius: 10px;
    margin-right: 1rem;
}

section .qrcode-download .qrcode img {
    width: 7vw;
    height: 7vw;
}

section .download-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section .download-container a img {
    height: 3.5vw;
    margin: 0.2vw 0;
}

section p {
    font-size: 0.9vw;
    color: white;
    max-width: 20vw;
    white-space: nowrap;
    text-overflow: unset;
}

.mobile,
footer {
    display: none;
}

.mobile .floating {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(0, -70%);
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    border: 1px solid white;
    padding: 6vw 1vw;
}

.mobile .floating a {
    display: block;
    width: 11vw;
    height: 11vw;
    margin: 3vw 0;
}

.mobile .floating a img {
    width: 100%;
}

.overlay-ios-container,
.overlay-android-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
}

.overlay-android-container .flex-center .content,
.overlay-ios-container .flex-center .content {
    position: relative;
}

.overlay-android-container .flex-center .content img,
.overlay-ios-container .flex-center .content img {
    width: 80vw;
    margin: 0 auto;
}

.overlay-android-container .flex-center .confirm,
.overlay-ios-container .flex-center .confirm {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 35vw;
    height: 10vw;
    transform: translate(-50%, -8vw)
}

@media screen and (max-width: 600px) {
    body {
        background: unset;
        background-color: #000;
    }

    header {
        display: none;
    }

    section {
        display: none;
    }

    .mobile {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 3vw 3vw 0;
        box-sizing: border-box;
    }

    .mobile .title {
        padding-bottom: 2vw;
    }

    .mobile .title img {
        width: 100%;
    }

    .mobile .tabs-container .tabs-menu {
        display: flex;
        flex-direction: row;
        padding: 0 2vw;
        background: #0d0d0d;
        align-items: center;
        justify-content: space-between;
        box-sizing: content-box;
        user-select: none;
        margin-bottom: 3vw;
    }

    .mobile .tabs-container .tabs-menu .tabs-item {
        border-radius: 5px;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 1.5vw;
        color: #646566;
        font-size: 4vw;
        cursor: pointer;
        color: white;
    }

    .mobile .tabs-container .tabs-menu .tabs-item.active {
        background: #3262ef;
    }

    .mobile .tabs-container .tabs-menu .tabs-item span {
        display: -webkit-box;
        overflow: hidden;
        line-clamp: 1;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .mobile .tabs-container .tabs-content {
        height: 100%;
        overflow: hidden;
    }

    .mobile .tabs-container .tabs-content .tabs-track {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        width: 100%;
        height: 100%;
        will-change: left;
    }

    .mobile .tabs-container .tabs-content .tabs-track .tabs-pane-wrapper {
        height: 100%;
    }

    .mobile .tabs-container .tabs-content .tabs-track .tabs-pane-wrapper.inactive {
        height: 0;
        overflow: visible;
    }

    .mobile .tabs-container .tabs-content .tabs-track .tabs-pane-wrapper .tabs-pane {
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
    }

    .mobile .tabs-container .tabs-content .tabs-track .tabs-pane-wrapper .tabs-pane .main {
        height: calc(100% - 37vh);
        overflow-y: auto;
    }

    .mobile .tabs-container .tabs-content .tabs-track .tabs-pane-wrapper .tabs-pane .content {
        width: 95vw;
    }

    .mobile .tabs-container .tabs-content .tabs-track .tabs-pane-wrapper .tabs-pane .content img {
        width: 100%;
        margin: 0 auto;
    }

    footer {
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
    }

    footer .bottom {
        width: 100%;
        vertical-align: top;
    }
}