html {
    font-size: 100px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #a03e00;
    font-family: "Microsoft YaHei"
}

.download {
    cursor: pointer;
    position: fixed;
    width: 2.5rem;
    margin-left: 4.7rem;
    margin-top: .3rem;
}

.rummybloc {
    position: fixed;
    border-bottom: 2px solid #ff0000;
    margin-left: 5rem;
}

.container {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    background-color: #ffffff;
}

.customer {
    position: fixed;
    top: 10%;
    right: 2%;
    width: 1rem;
    height: 1rem;
    background-image: url("../img/btn_advisory.png");
    background-size: 100% 100%;
    z-index: 999;
}

.container .downBtn {
    position: absolute;
    top: 8.5rem;
    left: 20%;
    width: 60%;
    height: 0.95rem;
    background-image: url("../img/btn_download.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: rotate .5s linear infinite;
}

.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;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.1rem 0 0.1rem;
    background: #092f25;
    background: #092f25;
    color: #ffffff;
}

.footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
}

.footer .links a {
    display: flex;
    align-items: center;
    margin-bottom: 0.1rem;
    padding: 0 0.15rem;
    font-size: 0.25rem;
    text-decoration: none;
    color: #f1f1f1;
    font-weight: bold;
    letter-spacing: .5px;
}

.footer .links a.border {
    border-right: 1px dashed #afafaf;
}

.devider {
    width: 100%;
    border-bottom: 1px solid #606280
}

.footer p {
    margin-top: .1rem;
    margin-bottom: .1rem;
}

.recommended_apps {
    margin: .1rem .1rem .1rem .1rem;
    text-align: center;
    font-size: .4rem;
    background-color: #092b25;
    border: 1px solid #000;
    padding: 8px 0;
    font-weight: 700;
    color: #fff;
    border-radius: .1rem;
}

header {
    font-size: .4rem;
    padding-top: .1rem;
}

header h1 {
    font-weight: bold;
    margin-bottom: .2rem;
    text-align: center;
}

.section {
    margin-left: .2rem;
    margin-right: .2rem;
    line-height: .35rem;
}

.section p {
    margin-bottom: .3rem;
    font-size: .3rem;
}

.container ul {
    list-style: disc;
    counter-reset: item;
    margin-left: .2rem;
}

.container li {
    font-size: .28rem;
    line-height: .45rem;
}

.home {
    text-align: center;
    padding-top: .2rem;
    background-color: #092b25;
    margin-bottom: .1rem;
}

.home button {
    width: 1.6rem;
    height: .4rem;
    color: white;
    background: #087f5e;
    margin-bottom: .1rem;
    font-size: .25rem;
    font-weight: bold;
    border: #d5d5d5 1px solid;
    cursor: pointer;
}

.home button:active {
    color: white;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgb(155, 47, 0) 0%, rgb(95, 29, 0) 35%, rgb(36, 11, 0) 100%);
}

@keyframes rotate {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}