/* 竖屏 */

/*适配布局4s*/
@media only screen and (max-width:321px){
    html{
        font-size: 50px;
    }
}
/*适配布局note3*/
@media only screen and (min-width:321px) and (max-width:361px){
    html{
        font-size: 56.25px;
    }
}
/*适配布局6*/
@media only screen and (min-width:361px) and (max-width:376px){
    html{
        font-size: 58.59px;
    }
}
/*适配布局6P*/
@media only screen and (min-width:413px) and (max-width:415px){
    html{
        font-size: 64.6875px;
    }
}
/*- Nexus 5X -*/
@media only screen and (min-width:394px) and (max-width:412px){
    html{
        font-size: 64.375px;
    }
}
/*小米note2*/
@media only screen and (min-width:377px) and (max-width:394px){
    html{
        font-size: 61.40625px;
    }
}
/*适配布局ipad*/
@media only screen and (min-width:415px) and (max-width:769px){
    html{
        font-size: 120px;
    }
}
/*适配布局ipadpro*/
@media only screen and (min-width:770px){
    html{
        font-size: 160px;
    }
}
