.page2 {
  padding: 50px 0 100px;
}
.tit{
        color: #222;
        font-weight: bold;
        text-align: center;
    }
.page2 .list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.page2 .list li {
  width: 31.5%;
 margin-right:2.6%;
  cursor: pointer;
  margin-bottom: 40px;
}
.page2 .list li:nth-child(3n){
margin-right:0%;}
.page2 .list li .img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56%;
}
.page2 .list li .img::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.page2 .list li .img img {
  position: absolute;
  top: 50%;
  left: 50%;
      height: 100%;
    object-fit: cover;
  transform: translate(-50%, -50%);
}
.page2 .list li .img svg {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}
.page2 .list li .time {
  margin-top: 15px;
  color: #777;
}
.page2 .list li .title {
  margin-top: 10px;
  color: #222;
  font-weight: 600;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 3em;
  transition: all 0.3s;
}
.page2 .list li:hover .img::after {
  opacity: 0;
}
.page2 .list li:hover .img img {
  transform: translate(-50%, -50%) scale(1.05);
}
.page2 .list li:hover .title {
  color: #c72c31;
}
.page2 .more {
  display: block;
  margin: 70px auto 0;
}
/* 125% */
@media screen and (max-width: 1440px) {
  .page2 {
    padding: 30px 0 60px;
  }
  .ctn .page2 .list {
    margin-top: 30px;
  }
}
/* 150 */

@media screen and (max-width: 768px) {
  .ctn .page2 .list {
    margin-top: 20px;
  }
  .ctn .page2 .list li {
    width: 100%;
    margin-right:0;
  }
  .ctn .page2 .list li .title {
    display: block;
    height: auto;
  }
  .ctn .page2 .list li .time {
    margin-top: 10px;
  }
}
/*# sourceMappingURL=./news-list.css.map */