*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container{
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    /* 背景图 */
    background-image: url(../img/page-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-container>.logo-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container>.logo-container>.logo{
    width: 77px;
    height: 77px;
    margin-top: 368px;
    border-radius:4px;
    /* border: 1px solid; */
}


.main-container>.logo-container>.app-name{
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 12px;
}

.main-container>.logo-container>.h5-url{
    font-size: 9px;
    color: #7c7c7c;
    text-decoration: none;
}

.main-container>.btn-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;
    padding-bottom: 60px;
}

.main-container>.btn-container>.btn{
    background: #D3AD78;
    /* box-shadow: inset 0px -4px 0px 0px #1347E7; */
    border-radius: 32px;
    width: 342px;
    height: 48px;
    line-height: 48px;
    background-size: cover;
    background-repeat: no-repeat;
    display: none;
    justify-content: center;
    align-items: center;
}


.btn-container>.btn>.icon{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.btn-container>.btn>.name{
    font-size: 16px;
    color: #fff;
}

.btn-container>.btn#ipa{
    margin-top: 12px;
}

.btn-container>.btn#ios_bookmark{
    margin-top: 12px;
}

.mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    display: none;
}
.line{
    position: fixed;
    top: 106px;
    right:32px;
    display: flex;
    width: 226px;
    flex-direction: column;
    align-items: flex-end;
}
.line-img{
    width: 65px;
    height: 65px;
}
.tips{
    width: 100%;
}

.tips-item{
    display: flex;
    align-items: center;
    color:white;
    margin-top: 16px;
}


.tips-item:last-child{
    margin-top: 20px;
}

.tips-item>.icon{
    width: 24px;
    height: 24px;
}

.tips-item>.text{
    margin-left: 8px;
}