* {
margin: 0;
}
.mask {
background-color: #7b7070;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.box {
position: absolute;
top: 50%;
margin-top: -100px;
background-color: #fff;
height: 200px;
width: calc(100% - 50px); //这里是水平居中的关键 margin-left = 50/2
margin-left: 25px;
text-align: center;
border-radius: 5px;
}