*{
    margin: 0;
    padding: 0;
}
html, body{
    width: 100%;
    height: 100%;
}
a{
    text-decoration: none;
}
img{
    display: block;
    width: 100%;
    height: max-content;
}
/* pc样式 */
.pc{
    width: 100%;
    height: 100vh;
    background-image: url("../img/pcBg.png");
    background-size: cover;
    min-height: 500px;
    .logoInfo{
        position: absolute;
        top: 80px;
        left: 90px;
        width: 250px;
    }
    .box{
        width: 360px;
        height: 126px;
        position: absolute;
        top: calc(50% - 65px);
        left: calc(50% - 180px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        .logo{
            width: 121px;
        }
        .btnBox{
            width: 218px;
            height: 100%;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            img{
                width: 218px;
            }
        }
    }
    .ewm{
        position: absolute;
        width: 130px;
        bottom: 160px;
        right: 120px;
        p{
            font-size: 16px;
            color: #333333;
            line-height: 20px;
            margin-top: 10px;
            text-align: center;
        }
    }
    .footer{
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 20px;
        text-align: center;
        font-size: 14px;
        color: #9A4848;
        p{
            line-height: 30px;
        }
        a{
            color: #9A4848;
        }
    }
}
/* 手机端样式 */
.wrap{
    width: 100%;
    height: 100vh;
    background-image: url("../img/wrapBg.png");
    background-size: cover;
    overflow: hidden;
    .logo{
        width: 94px;
        margin: 30% auto 0 auto;
    }
    .downloadBtn{
        width: 250px;
        height: 45px;
        background: linear-gradient(64deg, #FF883A, #FF525A);
        border-radius: 23px;
        margin: 60px auto;
        font-size: 16px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        line-height: 45px;
        a{
            color: #fff;
        }
    }
    .ewm{
        width: 100px;
        margin: 60px auto;
        img{
            width: 100%;
            height: 100px;
        }
        p{
            font-size: 12px;
            color: #333333;
            text-align: center;
        }
    }
    .footer{
        text-align: center;
        font-size: 12px;
        color: #9A4848;
        margin-top: 40px;
        line-height: 30px;
        a{
            color: #9A4848;
        }
    }
}
@media screen and (max-width: 750px){
    .pc{
        display: none;
    }
    .wrap{
        display: block;
    }
}
@media screen and (min-width: 751px){
    .pc{
        display: block;
    }
    .wrap{
        display: none;
    }
}