css样式设置

居中

.parent{
    position: relative;
}

.child{
    height: 400px;
    width: 360px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 100px;
    left: 0;
    right: 0;
}