.news_items {
  width: 15.6rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.item {
  width: 4.9rem;
  margin-bottom: 0.5rem;
  margin-right: 0.45rem;
}

.item:nth-child(3n) {
  margin-right: 0;
}

.item .img {
  width: 100%;
  height: 2.8rem;
  border-radius: 0.2rem;
  overflow: hidden;
  transition: ease-in-out 0.25s;
}

.item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-in-out 0.25s;
}

.item .tct {
  padding: 0.15rem;
  box-sizing: border-box;
}

.item .tit {
  font-size: 0.22rem;
  line-height: 0.34rem;
  color: #fff;
  height: 1.36rem;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  opacity: 0.5;
  transition: ease-in-out 0.25s;
  margin-top: 0.2rem;
  transition: ease-in-out 0.25s;
}

.item .time {
  font-size: 0.2rem;
  color: #fff;
  color: fff;
  opacity: 0.5;
  transition: ease-in-out 0.25s;
}

.item .time .layui-icon {
  color: #fff;
  transition: ease-in-out 0.25s;
}

.item:hover .img img {
  transform: scale(1.1);
  transition: ease-in-out 0.25s;
}

.item:hover .tit,
.item:hover .time,
.item:hover .time .layui-icon {
  color: #d9c476;
  opacity: 1;
}