html居中显示

定义个class类名flex-center
.flex-center {
display: flex; //开启flex布局
justify-content: center;//左右居中
align-items: center;//上下居中
}