* {
    padding: 0;
    margin: 0
}

html {
    font-size: 7.5vw
}

body {
    font-family: "Microsoft Yahei", Tahoma, Arial, Helvetica, sans-serif;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    text-align: center;
    background-color: #000
}

body::-webkit-scrollbar {
    display: none
}

button {
    outline: 0;
    border: none;
    background-color: transparent
}

.btn {
    background: url(../img_oss/btn.png) no-repeat;
    background-size: 100% 100%
}

.btn p {
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    color: transparent;
    background: linear-gradient(#ffffff 30%, #ffffff 36%, #ffc343);
    -webkit-background-clip: text;
    background-clip: text
}

.hide {
    display: none
}

#weChat {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1000
}

#weChat img {
    width: 100%
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000
}

.header .logo {
    height: 2.4rem;
    padding: -0.5rem .3rem
}

.header .service {
    margin: .5rem .3rem;
    height: 1.2rem
}

.header .service p {
    padding: 0 .7rem;
    font-size: .7rem
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url(../img_oss/bg.png?v=5) no-repeat;
    background-size: cover;
    background-position: center top;
    background-color: #171523
}

.container #character {
    width: 21rem;
    height: 78rem;
    position: absolute;
    top: 59%;
    left: 52%;
    transform: translate(-52%, -58%) scale(.6)
}

.container .text-content {
    width: 13.8rem;
    position: absolute;
    top: 74%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1
}

.container .text-content img {
    width: 94%;
}

.container .text-content h1 {
    font-size: 1.2rem;
    color: #fff
}

.container::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(2, 28, 53, 0), #021c35 40%, #05294b);
    display: none;
}

#downloadBtns {
    position: absolute;
    bottom: .8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 91%;
    height: 2rem
}

#downloadBtns #phoneDownload {
    height: 100%;
    width: 8rem;
    filter: drop-shadow(0 0 .2rem #c7975a)
}

#downloadBtns #phoneDownload p {
    font-size: 1rem;
    padding: 0 .5rem
}

#downloadBtns #h5 {
    height: 100%;
    width: 4.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 .5rem;
    margin-left: .5rem;
    animation: btnAnime 2s ease-in-out infinite
}

#downloadBtns #h5 img {
    width: 1rem;
    margin-right: .2rem
}

#downloadBtns #h5 p {
    font-size: .6rem;
    font-weight: 700;
    line-height: 1
}

.onlyAPP #phoneDownload {
    animation: btnAnime 2s ease-in-out infinite
}

.onlyAPP #h5 {
    display: none !important
}

@keyframes btnAnime {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1) drop-shadow(0 0 .2rem #f90)
    }

    50% {
        transform: scale(1.2);
        filter: brightness(1.4) drop-shadow(0 0 .6rem #fddb5f)
    }
}

.float {
    display: none
}

body {
    opacity: 0;
    animation: opacityAni 2s ease-in-out .6s forwards 1
}

@keyframes opacityAni {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@media screen and (min-width: 640px) {
    html {
        font-size: 43px
    }

    body {
        margin: 0 auto;
        position: relative;
        width: 600px;
        height: 100vh;
        background-color: #000
    }

    .container {
        overflow: hidden
    }

    #phoneDownload {
        left: 24%;
        bottom: .4rem
    }

    #phoneDownload p {
        font-size: .8rem
    }

    .float {
        display: block;
        position: fixed;
        left: 50%;
        bottom: .2rem;
        transform: translateX(210%);
        background-color: #fff;
        padding: .2rem;
        border-radius: .1rem
    }

    .float #qrcodeTable img {
        width: 3rem
    }

    .float p {
        margin-top: .1rem;
        font-size: .37rem
    }
}

.spine-player-controls-hidden {
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s
}

.spine-player-hidden {
    display: none
}

.spine-player canvas {
    display: block;
    width: 100%;
    height: 100%
}

.spine-player {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: 0 0;
    position: relative
}

.popup {
    width: 80%;
    height: 200px;
    background-color: #fff;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
    animation: popup-show 0.3s ease;
    z-index: 999;
}

@keyframes popup-show {
    0% {
        transform: translate(-50%, -200%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}