非 Flex 居中技巧
//水平居中 { left: 50%; transform: translateX(-50%); //动画:定义转换,只是用 X 轴的值 } //垂直居中 { top:50%; transform: translateY(-50%); }