top: 0; right: 0; bottom: 0; left: 0; 等同于 inset: 0;
低版本浏览器会默认把top: 0; right: 0; bottom: 0; left: 0;替换成inset: 0;,但浏览器又不支持inset:0样式
只需加上这个就行 bottom: 0 !important;
.ant-modal-mask{
top: 0;
left: 0;
right: 0;
bottom: 0 !important; // 重点
}