您的 .content-text 段落有一个底边。从最后一个删除它:
.content-text
p.content-text:last-child { margin-bottom:0; }
如果您的意思是希望页面水平中间的内容添加到.content的现有规则中
.content { width: 1000px; margin: 0 auto; }
根据需要设置宽度和顶部和底部边距(在本例中设置为0),但只需使左右边距自动化。