//针对移动端有虚拟按键导致高度短影响整个页面的布局给予滚动条处理
function set_screen(wrap){
var s_height = document.body.clientHeight;var s_width = document.body.clientWidth;
var proportion = s_height/s_width;
if(proportion<1.55){
var max_warp = document.querySelector(wrap);
max_warp.style.height = "37.55" + "rem";
document.ontouchmove = function(e){
}
}
}
set_screen(“.wrap”);