问题
.bottomBox {
height: 140rpx;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
解决
.bottomBox {
height: 140rpx;
position: fixed;
bottom: calc(var(--window-bottom));//自动计算距离底部距离
left: 0;
width: 100%;
}
问题
.bottomBox {
height: 140rpx;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
解决
.bottomBox {
height: 140rpx;
position: fixed;
bottom: calc(var(--window-bottom));//自动计算距离底部距离
left: 0;
width: 100%;
}