* {
    margin: 0;
    padding: 0;
}

/* PC端样式 */
@media only screen and (min-width: 1025px) {
    #page {
        width: 750px;
        margin: 0 auto;
        background-color: #000000;
    }

    #pMask {
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        width: 750px;
        height: 100%;
    }

    .wx {
        display: none;
        position: fixed;
        width: 750px;
        height: 600px;
        border-radius: 22px;
        top: 172px;
        z-index: 998;
        background: rgba(0, 0, 0, .7);

        img {
            width: 750px;
            height: 600px;
            position: fixed;
            top: 0;
            z-index: 998;
        }
    }

    .page-bg {
        width: 100%;
        display: block;

        img {
            width: 100%;
        }
    }

    .page-fixed {
        width: 730px;
        height: 120px;
        padding: 0 10px;
        background: rgba(0, 0, 0, .75);
        display: flex;
        position: fixed;
        bottom: 0;

        .game-info {
            display: flex;
            align-items: center;

            .icon-img {
                width: 100px;
                height: 100px;
            }

            .title {
                width: 130px;
                font-weight: 700;
                font-family: cursive;
                text-align: center;
                font-size: 26px;
                line-height: 30px;
                background-image: -webkit-linear-gradient(bottom, red, #fd8403, yellow);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        .btn-list {
            flex: 1;
            display: flex;
            justify-content: flex-end;

            .btn-ios {
                width: 250px;
                height: 110px;
                background: url("../img/down-ios.png") no-repeat;
                background-size: 100%;
            }

            .btn-android {
                width: 250px;
                height: 110px;
                background: url("../img/down-android.png") no-repeat;
                background-size: 100%;
            }
        }
    }
}

/* 手机端样式 */
@media only screen and (max-width: 1024px) {
    #page {
        width: 100%;
        margin: 0 auto;
        background-color: #000000;
    }

    #pMask {
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .wx {
        display: none;
        position: fixed;
        width: 100%;
        height: 300px;
        border-radius: 22px;
        top: 100px;
        z-index: 998;
        background: rgba(0, 0, 0, .7);

        img {
            width: 100%;
            height: auto;
            position: fixed;
            top: 0;
            z-index: 998;
        }
    }

    .page-bg {
        width: 100%;
        display: block;

        img {
            width: 100%;
        }
    }

    .page-fixed {
        width: 100%;
        height: 80px;
        background: rgba(0, 0, 0, .75);
        display: flex;
        position: fixed;
        bottom: 0;

        .game-info {
            display: flex;
            align-items: center;
            padding-left: 10px;

            .icon-img {
                width: 55px;
                height: 55px;
            }

            .title {
                width: 90px;
                font-weight: 700;
                font-family: cursive;
                text-align: center;
                font-size: 20px;
                line-height: 30px;
                background-image: -webkit-linear-gradient(bottom, red, #fd8403, yellow);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        .btn-list {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            padding-top: 5px;
            padding-right: 10px;

            .btn-ios {
                width: 135px;
                height: 58px;
                background: url("../img/down-ios.png") no-repeat;
                background-size: 100%;
            }

            .btn-android {
                width: 135px;
                height: 58px;
                background: url("../img/down-android.png") no-repeat;
                background-size: 100%;
            }
        }
    }
}
