body {
    background: #FFFFFF;
}

#container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-size: cover;
    overflow: hidden;
}

.main {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: url(../img/banner.png) no-repeat center bottom/100% 100%;
    background-size: contain;
}

.main .jt {
    width: 1.72rem;
    height: .81rem;
    position: absolute;
    right: .1rem;
    top: .1rem;
}

/* .logo {
    width: 100%;
    height: 4.9rem;
    margin: 0 auto;
    margin-top: 0rem;
    background: url(../img/logo.png) no-repeat center bottom/100% 100%;
} */

.download {
    display: block;
    width: 1.81rem;
    position: fixed;
    bottom: 1.2rem;
    right: 0.96rem;
}

.info {
    display: flex;
    align-items: center;
    width: 3.43rem;
    height: .85rem;
    padding: 0.16rem 0.16rem 0.16rem 0.35rem;
    background: #fff;
    background-size: cover;
    border-radius: 0.08rem;
    box-sizing: border-box;
    position: fixed;
    bottom: 0.2rem;
    right: 0.16rem;
}

.info .avatar {
    width: 0.52rem;
    height: 0.52rem;
    margin-right: 0.14rem;
    border: 1px solid #1CB5B9;
    border-radius: 50%;
}

.info .name {
    font-family: PingFangSC-Medium;
    font-size: 0.16rem;
    font-weight: bold;
    color: #323232;
    letter-spacing: 0.5px;
}

.message {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: .05rem 0.1rem;
    height: auto;
    overflow: hidden;
    background: rgba(0, 0, 0, .7);
    border-radius: 0.24rem;
    font-family: PingFangSC-Regular;
    font-size: .16rem;
    color: #fff;
    text-align: center;
    z-index: 999;
    box-sizing: border-box;
    opacity: 0;
}

@-webkit-keyframes rainbow {
    0% {
        bottom: 0
    }

    100% {
        bottom: 50%;
    }
}

@keyframes rainbow {
    0% {
        bottom: 0
    }

    100% {
        bottom: 50%
    }
}

.huxi {
    -webkit-animation: .7s huxiAction linear infinite;
    animation: .7s huxiAction linear infinite;
}

@-webkit-keyframes huxiAction {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes huxiAction {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

img {
    padding: 0;
    border: none;
    margin: 0;
    display: block;
}