html {
    font-size: 100px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #a03e00;
    font-family: "Microsoft YaHei"
}

.container .header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.2rem;
    border-bottom: 2px solid #a23c00;
    z-index: 999;
}

.topIcon {
    margin-left: 10px;
    width: 1rem;
    height: 1rem;
}

.topTitle {
    margin-left: 10px;
    font-size: 0.4rem;
    font-weight: 700;
    color: #e9967f;
}

.container {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    background-color: #a03e00;
}

.kefu a {
    position: fixed;
    top: 1.2rem;
    right: 2%;
    width: 1rem;
    height: 1rem;
    background-image: url("../img/btn_advisory.png");
    background-size: 100% 100%;
    z-index: 999;
}

.container .description {
    position: absolute;
    padding: 10px 10px 10px 10px;
    bottom: 1.28rem;
    background-color: rgba(27, 10, 59, 0.5);
    font-size: 0.24rem;
    text-align: center;
    color: #fcbe44;
}

.container .downBtn {
    position: absolute;
    top: 70%;
    left: 20%;
    width: 60%;
    height: 1rem;
    background-image: url("../img/btn_download.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: zoomInOut 2s infinite;
}

.downBtn .online {
    position: absolute;
    top: -1.2rem;
    right: -0.8rem;
    width: 2rem;
    height: 1rem;
    background-image: url("../img/bg_online.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.container .downNum {
    position: absolute;
    top: 45.7%;
    right: 14%;
    width: 40%;
    height: 1rem;
    font-size: 0.44rem;
    text-align: center;
    align-items: 1rem;
    color: #fff;
}

.container .footer {
    background-color: #3D120B;
    border-top: 1px solid #D87A05;
    color: #ccc;
    text-align: center;
    padding: 15px 5px;
    font-size: 14px;
}

.footer .links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer .links {
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer .copyright {
    font-size: 15px;
    color: #aaa;
}

.footer .copyright a {
    color: #FFEAD8;
    margin: 0 6px;
    text-decoration: none;
    font-weight: 500;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}