html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #eee;
}

.mobile-body{
    max-width: 680px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 auto;
}
.mp-login-page{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.mp-login-page .login-box{
    width: 80%;
    position: relative;
}
.mp-login-page .login-box .login-logo{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    position: absolute;
    left: 50%;
    margin-left: -4rem;
    top: -10rem;
    border: 1px solid #40dece;
    padding: 1rem;
}
.mp-login-page .login-box .login-logo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.mp-login-page .login-box .wx-login{
    width: 50%;
    height: 2rem;
    line-height: 2rem;
    margin: 0 auto;
    color: #40dece;
    cursor: pointer;
    text-align: center;
    font-size: 1.1rem;
}
.mp-login-page .login-box .wx-login i{
    margin-right: 5px;
}

.mp-page{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}
.mp-bar{
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 1px solid #40dece;
    background-color: #fff;
    z-index: 99999;
}
.mp-bar .mp-nav .mp-nav-item{
    height: 50px;
    line-height: 50px;
    width: 25%;
    float: left;
    text-align: center;
    position: relative;
}
.mp-bar .mp-nav .mp-nav-item.active .item-tab{
    color: #40dece;
    font-weight: bolder;
}
.mp-bar .mp-nav .mp-nav-item .mp-nav-child{
    position: absolute;
    min-width: 100%;
    bottom: 60px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #eee;
    display: none;
    background-color: #fff;
}
.mp-bar .mp-nav .mp-nav-item .mp-nav-child::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -5px;
    cursor: pointer;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #c4c4c4;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.mp-bar .mp-nav .mp-nav-item .mp-nav-child dd{
    position: relative;
}
.mp-bar .mp-nav .mp-nav-item .mp-nav-child dd.active a{
    color: #40dece;
}
.mp-bar .mp-nav .mp-nav-item .mp-nav-child dd::after{
    content: '';
    width: 80%;
    height: 1px;
    margin: 0 auto;
    position: absolute;
    left: 10%;
    bottom: 0;
    background-color: #eee;
}
.mp-bar .mp-nav .mp-nav-item .mp-nav-child dd:last-child::after{
    display: none;
}
.mp-iframe{
    width: 100%;
    height: 100%;
    border: 0;
}
.mp-in-page{
    padding: 0.5rem;
}

@media screen and (max-width: 320px){
    html,body{
        font-size: 12px;
    }
}
@media screen and (min-width: 321px) and (max-width: 430px){
    html,body{
        font-size: 14px;
    }
}
@media screen and (min-width: 431px){
    html,body{
        font-size: 16px;
    }
}