/** mixins **/
.page-news {
  min-width: 1600px;
  font-family: "Source Han Sans CN", sans-serif;
}
.page-news .news-cnt {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(https://ld5.res.netease.com/pc/zt/20241121183232/assets/bg_9b0f1093.png) top / 100% no-repeat;
  background-size: cover;
}
.page-news .news-cnt h2 {
  width: 1440px;
  font-size: 28px;
  color: #333E48;
  margin: 150px auto 10px auto;
}
.page-news .news-cnt .news-list {
  width: 1440px;
  margin: 0 auto;
  padding: 0 0 100px 0;
}
.page-news .news-cnt .news-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.page-news .news-cnt .news-list ul li {
  width: 340px;
  margin: 10px 20px 10px 0;
}
.page-news .news-cnt .news-list ul li .news-item {
  color: #333E48;
  font-size: 16px;
}
.page-news .news-cnt .news-list ul li .img-container {
  position: relative;
  display: block;
  width: 340px;
  height: 191px;
  overflow: hidden;
}
.page-news .news-cnt .news-list ul li .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-news .news-cnt .news-list ul li .desc-bottom {
  margin-top: 12px;
  font-family: "Source Han Sans CN", sans-serif;
}
.page-news .news-cnt .news-list ul li .desc-bottom::before {
  content: '';
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-news .news-cnt .news-list ul li .title,
.page-news .news-cnt .news-list ul li .date {
  line-height: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page-news .news-cnt .news-list ul li .title {
  width: 336px;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  text-overflow: ellipsis;
}
.page-news .news-cnt .news-list ul li:hover .img-container img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page-news .news-cnt .news-list ul li:hover .desc-bottom {
  position: relative;
}
.page-news .news-cnt .news-list ul li:hover .desc-bottom .title,
.page-news .news-cnt .news-list ul li:hover .desc-bottom .date {
  padding-left: 10px;
}
.page-news .news-cnt .news-list ul li:hover .desc-bottom::before {
  position: absolute;
  content: '';
  width: 4px;
  height: 50px;
  top: 5px;
  background: #F2651A;
}

