css 实现16:9比例自适应手机尺寸,可设置任意比例
.wrap {
position: relative;
width: 100%;
height: 0;
/* 比例:就是设置paddig-bottom */
padding-bottom: 56.25%;
}
.wrap .wrap-child {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}