.media-card {
  width: 70px;
  margin: 0 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  img{
    height: 50px;
  }
  div{
    width: 100%;
    text-align: center;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;				//溢出内容隐藏
    text-overflow: ellipsis;		//文本溢出部分用省略号表示
    display: -webkit-box;			//特别显示模式
    -webkit-line-clamp: 2;			//行数
    line-clamp: 2;					
    -webkit-box-orient: vertical;	//盒子中内容竖直排列
  }
}