.news-wrap {
  background-size: cover;
  padding: 60px 0;
}
.news-wrap .header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #333333;
  margin-bottom: 30px;
}
.news-wrap .header small {
  font-size: 30px;
}
.news-wrap .header h2 {
  font-weight: bold;
  font-size: 40px;
  margin: unset;
  line-height: 1;
  margin: 15px 0 0;
}
.news-wrap .header .right {
  display: flex;
}
.news-wrap .header .right a {
  display: block;
  width: 188px;
  height: 47px;
  line-height: 45px;
  background: #FFFFFF;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  color: var(--main-color);
  transition: background .3s ease, color .3s ease;
}
.news-wrap .header .right a.active,
.news-wrap .header .right a:hover {
  background: var(--main-color);
  color: #fff;
}
.news-wrap .header .right a + a {
  margin-left: 30px;
}
.news-wrap .list-wrap .col {
  margin-bottom: 30px;
}
.news-wrap .list-wrap .wrap {
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  overflow: hidden;
}
.news-wrap .list-wrap .wrap .cover {
  height: 295px;
  overflow: hidden;
}
.news-wrap .list-wrap .wrap .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.news-wrap .list-wrap .wrap:hover .cover img {
  transform: scale(1.1);
}
.news-wrap .list-wrap .wrap .desc {
  padding: 30px 24px;
}
.news-wrap .list-wrap .wrap .desc h3 {
  margin: unset;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  transition: color .3s ease;
}
.news-wrap .list-wrap .wrap:hover .desc h3 {
  color: var(--main-color)
}
.news-wrap .list-wrap .wrap .desc p {
  font-size: 14px;
  color: #A3A3A3;
  line-height: 1.6;
}
.news-wrap .list-wrap .wrap .desc small {
  font-size: 16px;
  color: #646464;
}


@media screen and (max-width: 640px) {
  .news-wrap {
    padding: 30px 0;
  }
  .news-wrap .header {
    display: block;
    margin-bottom: 15px;
  }
  .news-wrap .header small {
    font-size: 20px;
  }
  .news-wrap .header h2 {
    font-size: 24px;
    margin-top: 6px;
  }
  .news-wrap .header .right {
    margin-top: 15px;
  }
  .news-wrap .header .right a {
    flex: 1;
    width: unset;
    font-size: 14px;
  }
  .news-wrap .header .right a + a {
    margin-left: 15px;
  }
  .news-wrap .tabs-wrap {
    height: 90px;
  }
  .news-wrap .tabs-wrap a {
    width: 33.33%;
    padding: 5px 10px 10px;
    margin-left: 10px;
  }
  .news-wrap .tabs-wrap a p {
    font-size: 12px;
    margin-top: 5px;
  }

  .news-wrap .list-wrap .wrap .cover {
    height: 200px;
  }
  .news-wrap .list-wrap .wrap .desc {
    padding: 20px 15px;
  }
  .news-wrap .list-wrap .wrap .desc small {
    font-size: 14px;
  }
}
