.table-box {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}

.table-box>* {
  cursor: pointer;
  width: calc((100% - 40px)*0.5);
  margin-bottom: 30px;
  height: 135px;
}

.table-box>*:hover {
  box-shadow: 0 0 6px 0 #0000003f;

}

.table-box>*:hover .title {
  color: #BD1A2DFF !important;
}

.table-box>*:not(:nth-child(2n)) {
  margin-right: 40px;
}

.item-card {
  display: flex;
  border-radius: 4px;
}

.item-card>:first-child {
  width: 200px;
  flex-shrink: 0;
  height: 135px;
  margin-right: 20px;
  border-radius: 6px;
  overflow: hidden;

}

.item-card:hover img {
  scale: 1.1;
}

.item-card>:first-child img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  transition: all .4s;
}

.item-card>:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 20px 8px 0;
}

.item-card .title {
  font-size: 20px;
  color: #333333FF;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.item-card .time {
  font-size: 14px;
  color: #999999FF;
}