@import url(./common.css);

.content-item {
  display: flex;
  padding: 20px 18px;
  border-bottom: 1px solid #eaeaea;
}
.content-item:last-child {
  border-bottom: none;
}
.content-item-l {
  width: 269px;
  height: 129px;
border-radius: 8px;
overflow: hidden
}
.content-item-l > img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
transform: scale(1);
    transition: transform 1.5s ease;
}
.content-item-l > img:hover{
transform: scale(1.1);
}

.content-item-r {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
}
.content-item-r-title {
  font-weight: 600;
  font-size: 16px;
  color: #3a3a3a;
  margin-bottom: 10px;
}
.content-item-r-content {
  font-weight: 400;
  font-size: 14px;
  color: #818181;
  line-height: 20px;
}
.content-item-r-bottom {
  display: flex;
}
.bottom-time {
  font-weight: 400;
  font-size: 12px;
  color: #959595;
}