底部页面隐私横幅在 Android 上跳到页面底部下方

Bottom page Privacy banner is jumping underneath page bottom on Android

请问我的 div 和 bottom:0 是什么问题?正在跳转到底部:-5;在 Android 台设备上。见下图:

横幅问题:

.alert {
  padding: 20px;
  background-color:#0c4105;
  color: white;
  position: fixed; 
  bottom: 0;
  left: 0;
   width:100%;
}

@media only screen and (max-width: 800px) {
  .alert {
  width:100%;
  bottom: 0.11111px;
}
}

.conbtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.conbtn:hover {
  color: black;
}

已通过在视口中添加最小和最大比例解决此问题。

<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0">