.tab-item{
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.tab-item:last-child{
  border-bottom: none;
}
.tab-item .left{
  width: 30%;
  margin-right: 10px;
}
.tab-item .left img{
  width: 100%;
}
.tab-item .left .tab-link{
  display: block;
	height: 34px;
  line-height: 34px;
	border-radius: 5px;
	border: solid 1px #2EADA2;
  color: #2EADA2;
  text-align: center;
  margin: 10px auto 0;
  font-size: 14px;
}
.tab-item .left .tab-link:hover{
  background: #2EADA2;
  color: #fff;
}
.tab-item .right{
  width: 70%;
}

.tab-item .right .news-title{
  color: #2EADA2;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
}

.tab-item .right .news-content{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
} 