使用固定定位会出现背景颜色超出的问题
position: fixed;
left: 0;
bottom: 0;
width: 80%;
height: 50px;
line-height: 50px;
text-align: center;
background-color: #fff;
overflow: hidden;
解决办法??粘性定位
position: sticky;
bottom: 0;
width: 100%;
height: 50px;
line-height: 50px;
text-align: center;
background-color: #fff;
overflow: hidden;