
.news-wrap .row {
  margin: 15px -15px;
}
/*.mask h2 {*/
/*  font-size: 48px;*/
/*  text-align: center;*/
/*}*/
/*.mask small {*/
/*  font-size: 15px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/
.news-wrap .col {
  padding: 15px;
  display: block;
  cursor: pointer;
}
.news-wrap .cover > img {
  width: 100%;
}
.news-wrap .col:hover h2 {
  color: var(--main-theme-color);
}
.news-wrap h2 {
  margin-top: 5px;
  font-size: 22px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  transition: color .3s ease;
}
.news-wrap small {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}
.news-wrap p {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 26px;
}
.news-wrap .more {
  width: 202px;
  height: 49px;
  border: 2px solid transparent;
  color: var(--main-theme-color);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  transform: translateX(-37px);
}
.news-wrap .col:hover .more {
  color: #fff;
  background: var(--main-theme-color);
  transform: translateX(0);
}
.news-wrap .more img {
  width: 20px;
}
.news-wrap .col:hover  .more img:first-of-type {
  display: none;
}
.news-wrap .col:hover  .more img:last-of-type {
  display: block;
}
.news-wrap .more img:first-of-type {
  display: block;
}
.news-wrap .more img:last-of-type {
  display: none;
}
.news-wrap .cover {
  height: 230px;
  overflow: hidden;
}
.news-wrap .col:hover .cover img {
  transform: scale(1.05);
}
.news-wrap .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.news-wrap .right {
  padding-left: 25px;
}
@media screen and (max-width: 750px) {
  .news-wrap .col {
    padding: 15px 0;
  }
  .news-wrap .more {
    transform: unset;
    color: #fff;
    background: var(--main-theme-color);
  }
  .news-wrap .more img:first-of-type {
    display: none !important;
  }
  .news-wrap .col  .more img:last-of-type {
    display: block !important;
  }
}
