.container {
  padding-bottom: 70px;
  background-color: #f5f5f5;
}
.breadcrumb {
  background-color: white;
  padding: 30px 0;
}
.breadcrumb a {
  color: #0065b3;
}
.title {
  font-size: 60px;
  text-align: center;
  margin: 40px 0;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
  margin-bottom: 70px;
}
.news-item {
  background-color: white;
  border-bottom: 1px solid #eee;
}
.news-item:hover .news-mask {
  opacity: 1;
}
.news-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.news-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.news-img img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
.news-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: white;
  padding: 50px;
  line-height: 30px;
}
.news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  margin: 25px 0;
  padding: 0 30px;
  border-top: none;
  line-height: 30px;
  height: 60px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
@media screen and (max-width: 1320px) {
  .breadcrumb {
    padding: 20px;
  }
  .news-list {
    grid-template-columns: repeat(auto-fill, 100%);
    padding: 20px;
  }
}
<!--ºÄÊ±1774179451.8719Ãë-->