html {
    font-size: 10px
}

body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei"
}

.container {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    z-index: 0;
}

.container .downBtn {
    position: absolute;
    top: 41%;
    left: 21%;
    width: 60%;
    height: .90rem;
    background-image: url(../img/3pattimaster2025_btn1.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: rotate 2s linear infinite;
}

.container .footer {
    position: absolute;
    background-color: #1D215D;
    width: 100%;
    height: 1.5rem;
    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);
    }
}