html {
    font-size: 10px
}

body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei"
}

#top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.1rem;
    background-image: url("");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 999;
}

.container {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    z-index: 0;
}

.info.devider {
    width: 100%;
    margin-top: 0.8rem;
    border-bottom: 1px solid #d8d8d8;
}


.kefu a {
    position: fixed;
    top: 10%;
    right: 2%;
    width: 1rem;
    height: 1rem;
    background-image: url("/img/btn_advisory.webp");
    background-size: 100% 100%;
    z-index: 999;
}

.container .info {
    top: 74%;
    position: absolute;
    width: 100%;
    height: 2rem;
    color: #ffffff;
}

.info img {
    display: block;
    width: 90px;
    height: auto;
    align-items: center;

}

.info h2 {
    font-weight: bold;
    font-size: 0.44rem;
    text-align: center;
    color: #ffdd00;
}

.info p {
    line-height: .33rem;
    margin: 0 5px 75px;
    padding: 0;

}

.container .downBtn {
    position: absolute;
    top: 27.5%;
    left: 18%;
    width: 65%;
    height: 1.2rem;
    background-image: url("/img/download-btn.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: rotate 1s linear infinite;
}

.container .footer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2rem;
    color: #ffffff;
}

.footer p {
    padding: 0;
    margin: 0;

}

@keyframes rotate {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(10px) scale(1.1, 0.9);

    }

    75% {
        ransform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}