* {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
}

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFF5EA 0%, #FFF8EF 55%, #FFEFDD 100%);
}

.content {
    width: 5.94rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.top-img {
    width: 100%;
}

.download-game {
    display: none;
}

.download-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -0.75rem;
}

.platform-btn {
    width: 1.2rem;
    height: 0.36rem;
    border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.platform-btn:hover {
    transform: scale(1.1);
}

.platform-apple {
    background: #000000;
    margin-right: 0.21rem;
}

.platform-android {
    background: #7FC153;
}

.platform-icon {
    width: 0.2rem;
    margin-left: 0.1rem;
    margin-right: 0.06rem;
}

.platform-name {
    /* font-family: PingFang SC, PingFang SC; */
    font-weight: 600;
    font-size: 0.1rem;
    color: #FFFFFF;
}

.feature-layout {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item-layout {
    width: 2.78rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.34rem;
}

.feature-title {
    width: 0.95rem;
    height: 0.16rem;
}

.feature-img {
    width: 100%;
    margin-top: 0.05rem;
}

.feature-desc {
    width: 1.58rem;
    height: 0.21rem;
    margin-top: 0.1rem;
}

.contact-us-info {
    width: 1.67rem;
    height: 0.79rem;
    margin-top: 0.1rem;
}

.bottom-img {
    width: 10rem;
    height: 0.52rem;
    margin-top: 0.53rem;
}

.bottom-info {
    width: 10rem;
    height: 0.63rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #773918;
}

.policy-layout {
    width: 5.94rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.policy {
    font-size: 0.06rem;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 0.07rem;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
}

.copyrights {
    font-size: 0.06rem;
    color: #9DA4AC;
    margin-top: 0.1rem;
}

@media (max-width: 768px) {
    .page {
        background: linear-gradient(180deg, #FFB85F 0%, #FFECD6 19%, #FFEFDD 100%);
    }

    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    @keyframes breathing {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.9;
            transform: scale(1.1);
        }
    }

    .download-game {
        display: block;
        margin-top: 0.53rem;
        width: 4.59rem;
        height: 1.28rem;
        animation: breathing 2s infinite;
    }

    .download-layout {
        display: none;
    }

    .feature-layout {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-item-layout {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1.33rem;
    }

    .feature-title {
        width: 4.85rem;
        height: 0.8rem;
    }

    .feature-img {
        width: 100%;
        margin-top: 0.27rem;
    }

    .feature-desc {
        width: 5.68rem;
        height: 1.07rem;
        margin-top: 0.53rem;
    }

    .contact-us-info {
        width: 7.47rem;
        height: 3.36rem;
        margin-top: 0.53rem;
    }

    .bottom-img {
        width: 10rem;
        height: 2.67rem;
        margin-top: 0.53rem;
    }

    .bottom-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 10rem;
        height: 2.67rem;
        background: #773918;
    }

    .policy-layout {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .policy {
        font-size: 0.32rem;
        color: #FFFFFF;
        text-decoration: none;
        line-height: 0.38rem;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }

    .copyrights {
        font-size: 0.32rem;
        color: #9DA4AC;
        margin-top: 0.2rem;
    }
}