.list .item {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid #E7E7E7;
}

.list .item .item-l {
  flex: none;
  overflow: hidden;
  width: 300px;
  height: 200px;
  margin-right: 40px;
  border-radius: 10px;
}

.list .item .item-l img {
  width: 100%;
  height: 100%;
}

.list .item .item-r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 200px;
}

.list .item .item-r .item-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #333;
  font-size: 30px;
  line-height: 48px;
}

.list .item .item-r .item-time {
  color: #999;
  font-size: 24px;
}