.trendsWrap .newsList {
  width: 70%;
  margin: 0 auto;
  padding: 40px 0;
}
.trendsWrap .newsList .title {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trendsWrap .newsList .title h1 {
  font-weight: 700;
  font-size: 42px;
  margin-left: -5px;
}
.trendsWrap .newsList .title p {
  font-weight: 700;
  font-size: 22px;
  color: #555;
}
.trendsWrap .newsList .list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.trendsWrap .newsList .list .item:hover {
  transform: translateY(-8%);
}
.trendsWrap .newsList .list .item:hover .newsTit {
  color: #0b93e1;
  transform: translateX(2%);
}
.trendsWrap .newsList .list .item:hover .rightIcon {
  background-color: #0b93e1;
  transform: translateX(5px);
}
.trendsWrap .newsList .list .item:hover .rightIcon img:nth-child(1) {
  display: none;
}
.trendsWrap .newsList .list .item:hover .rightIcon img:nth-child(2) {
  display: inherit;
}
.trendsWrap .newsList .list .item {
  box-shadow: 1px 4px 10px 5px #efefef;
  border-radius: 4px;
  padding: 20px;
  cursor: pointer;
  text-align: left;
  transition: 0.8s ease;
  display: grid;
  grid-template-columns: auto 40px;
  align-items: center;
  column-gap: 2%;
  margin-bottom: 2%;
}
.trendsWrap .newsList .list .item .left {
  width: 100%;
  display: flex;
  column-gap: 2%;
  align-items: center;
}
.trendsWrap .newsList .list .item .left .date {
  min-width: 95px;
  width: 95px;
  height: 88px;
  text-align: center;
  border-radius: 4px;
  background: #0b93e1;
  flex-wrap: wrap;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.trendsWrap .newsList .list .item .left .date .day {
  font-size: 35px;
  font-weight: 700;
}
.trendsWrap .newsList .list .item .left .date .mon {
  font-size: 20px;
  font-weight: 700;
}
.trendsWrap .newsList .list .item .left .newsTit {
  font-size: 20px;
  transition: 1.2s ease;
  font-weight: bold;
}
.trendsWrap .newsList .list .item .rightIcon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.8s ease;
}
.trendsWrap .newsList .list .item .rightIcon img {
  width: 20px;
  height: 20px;
}
