.module-news-wrap .news-list li + li {
  margin-top: 20px;
}
.module-news-wrap .news-list a {
  display: flex;
  background: #fff;
  padding: 20px;
}
.module-news-wrap .news-list a:hover img {
  transform: scale(1.1);
}
.module-news-wrap .news-list a .cover {
  width: 360px;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
}
.module-news-wrap .news-list a .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.module-news-wrap .news-list a .desc {
  flex: 1;
  width: 0%;
  margin-left: 30px;
  padding-top: 20px;
}
.module-news-wrap .news-list a .desc small {
  font-size: 18px;
  color: #999;
}
.module-news-wrap .news-list a .desc h3 {
  font-size: 18px;
  color: #333;
  margin: 15px 0;
}
.module-news-wrap .news-list a .desc p {
  font-size: 14px;
  color: #666;
  margin: unset;
  line-height: 1.8;
}
.module-news-wrap .news-list a .desc span {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  color: #999;
  margin-top: 50px;
}
.module-news-wrap .news-list a .desc span i {
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
}
.module-news-wrap .news-list a .desc:hover small,
.module-news-wrap .news-list a .desc:hover h3,
.module-news-wrap .news-list a .desc:hover p,
.module-news-wrap .news-list a .desc:hover span {
  color: var(--main-color);
}


@media screen and (max-width: 640px) {
  .module-news-wrap .news-list a {
    display: block;
    padding: 10px;
  }
  .module-news-wrap .news-list a .cover {
    width: 100%;
    height: unset;
  }
  .module-news-wrap .news-list a .desc {
    flex: unset;
    width: 100%;
    padding: unset;
    margin: 20px 0 0;
  }
  .module-news-wrap .news-list a .desc small {
    font-size: 14px;
  }
  .module-news-wrap .news-list a .desc h3 {
    margin: 10px 0 6px;
  }
  .module-news-wrap .news-list a .desc span {
    margin-top: 10px;
    font-size: 12px;
  }
  .module-news-wrap .news-list a .desc span i {
    margin-left: 5px;
    font-size: 14px;
    transform: translateY(2px);
  }

}
