
@media screen and (min-width: 320px) and (max-width: 359px) {
    /*4 5*/
    html {
        font-size: 16px;
    }
}

@media screen and (min-width: 360px) and (max-width: 374px) {
    /*4 5*/
    html {
        font-size: 18px;
    }
}

@media screen and (min-width: 375px) and (max-width: 413px) {
    /*6*/
    html {
        font-size: 18.75px
    }
}

@media screen and (min-width: 414px) and (max-width: 479px) {
    /*6p*/
    html {
        font-size: 20.7px
    }
}

@media screen and (min-width: 480px) and (max-width: 539px) {
    html {
        font-size: 24px
    }
}

@media screen and (min-width: 540px) and (max-width: 639px) {
    html {
        font-size: 27px
    }
}

/* @media screen and (min-width: 640px) {
  html {
    font-size:28px
  }
} */
/* 新加大分辨率显示 */
@media screen and (min-width: 640px) and (max-width: 767px) {
    html {
        font-size: 32px
    }
}


@media screen and (max-width: 767px){
    body{
        background: white;
    }
    .mobile-login-wrap{
        display: block!important;
        font-size: .8rem;
    }
    .myapp-login{
        display: none;
    }
    .logo-img{
        width: 100%;
    }
    .form{
        padding: 3rem 2.5rem 1rem;
    }
    .form div{
        width: 100%;
        border-bottom:1px solid #E5E5E5;
        position: relative;
        padding: 1.1rem 0;
    }
    .form div>input{
        width: 100%;
        text-indent: 3.8rem;
        font-size: .75rem;
        color: black;
        outline: none;
    }
    .form div>span{
        position: absolute;
        color: #A5A7A7;
        font-size: .75rem;
        left: 0;
        top: 1.3rem;
    }
    .form div>span img{
        width: 1rem;
        margin-right: 3px;
    }
    .form input[type="submit"]{
        width: 100%;
        height: 2.5rem;
        background: #1295D8;
        color: white;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        margin: 1.5rem 0;
    }
    .form p{
        color: #1295D8;
        font-size: .7rem;
        margin: 0;
    }
}