@import url(./common.css);

.content-classification {
  display: flex;
  flex-wrap: wrap;
  padding-left: 25px;
  margin-top: 20px;
}
.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 {
  display: flex;
  padding: 20px 10px;
  flex-wrap: wrap;
}

.content-item {
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.content-item-t {
  width: 100%;
}
.t-image {
  width: 100%;
  height: 167px;
  border-radius: 9px;
overflow: hidden
}
.t-image > img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  transform: scale(1);
  transition: transform 1.5s ease;
}
.t-image > img:hover {
  transform: scale(1.1);
}
.t-title {
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  margin-top: 10px;
  width: 100%;
  text-align: left;
}

.content-item-f {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-time {
  font-weight: 400;
  font-size: 14px;
  color: #959595;
}
.f-btn {
  width: 64px;
  height: 25px;
  background: #0367f5;
  border-radius: 13px;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  line-height: 25px;
}
