横向的两边对齐--从而让元素左右贴边
.mui-ellipsis{
display: flex;
justify-content: space-between;
}
 ## 绘制新闻资讯页面的效果
 + 使用mui中的media-list.html
 + 使用 `display: flex;`实现了弹性盒模型布局,从而让 元素左右贴边;`justify-content: space-between;`
.mui-ellipsis{
display: flex;
justify-content: space-between;
}
