/* created by linzy in 2018.1.18 */
html, body, #app {
    width: 100%;
    height: 100%;
}
#app {
    position: relative;
}
#app .center{
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    width: 80%;
    text-align: center;
}
#app .center .imgBox{
    width: 100%;
    overflow: hidden;
    text-align: center;
}
#app .center .imgBox img{
    width: 82%;
}
#app .center .textBox{
    width: 100%;
   /* margin-top: 50px;*/
}
#app .center .textBox .title{
    font-size: 18px;
    line-height: 2em;
    text-align: center;
}
#app .center .btnBox{
    width: 100%;
    text-align: center;
    margin-top: 50px;
}
#app .center .btnBox .btn{
    font-size: 16px;
    line-height: 50px;
    padding: 0 40px;
    text-align: center;
    cursor: pointer;
    background: #08CBD3;
    border-radius: 50px;
    color: #fff;
}

@media only screen and (max-device-width: 600px){
    #app .center{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        width: 80%;
        text-align: center;
    }
    #app .center .imgBox img{
        width: 100%;
    }
    #app .center .textBox{
        width: 100%;
        margin-top: 50px;
    }
}