
.article-card.custom {
  display: flex;
  width: 500px;
  &>div{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    padding-left: 10px;
  }
}
.article-card-top {
  display: flex;
  height: 100%;
  .list{
    width: 190px;
  }
}
.article-common{
  .div{
    div{
      width: 100%;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      line-height: 24px;
      font-size: 16px;
      color: #606266;
      font-weight: 300;
    }
  }
  .ctn-data{
    display: flex;
    justify-content: space-between;
    align-items: center;
    .title{
      // font-size: 16px;
      display: inline-block;
      width: calc(100% - 158px);
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }
    .time{
      display: inline-block;
      width: 158px;
      // font-size: 12px;
    }
  }
}