@import url(./common.css);
.content-classification {
 margin-top:20px;
  display: flex;
  flex-wrap: wrap;
  padding-left: 25px;
}
.classification-item-box {
  width: calc(100% / 6 - 15px);
  padding: 0 7.5px;
  margin-bottom: 16px;
  cursor: pointer;
}
.classification-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  background: #f7f7f7;
  border-radius: 4px;
  color: #333333;
  font-weight: 400;
  font-size: 16px;
}
.classification-item.active {
  background: #eff9ff;
  color: #0367f5;
}

.list-content {
  padding: 0 25px;
}
.content-item {
  padding: 20px 18px;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}
.content-item-image {
  width: 392px;
  height: 177px;
  border-radius: 5px;
  margin: 20px 0 10px;
  overflow: hidden;
}
.content-item-image > img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
   transform: scale(1);
    transition: transform 1.5s ease;
}
.content-item-image > img:hover {
transform: scale(1.1);
}
.content-item-footer {
  font-weight: 400;
  font-size: 14px;
  color: #818181;
}
