
.new{
  padding: 88px 0;
  max-width: 791px;
  margin: 0 auto;
}
.new_list li{
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-bottom: 2px solid #e4e4e4;
  gap: 52px;
}
.new_list li:hover img{
  transform: scale(1.1);
}
.new_list .img{
  width: 208px;
  height: 131px;
  background-color: #757578;
  overflow: hidden;
}
.new_list .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.new_list .content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new_list .content h3 a{
  font-family: SourceHanSansCN-Bold;
  font-size: 19px;
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0px;
  margin: 0;
  padding-bottom: 18px;
  color: #22689e;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 限制行数为2 */
  -webkit-box-orient: vertical;
  overflow: hidden; 
}
.new_list .content p{
  font-family: SourceHanSansCN-Regular;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 28px;
  letter-spacing: 0px;
  color: #484646;
    display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制行数为2 */
  -webkit-box-orient: vertical;
  overflow: hidden; 
}
.new_list .content span{
  font-family: SourceHanSansCN-Regular;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  padding-top: 10px;
  color: #484646;
}
.pagetion{
  display: flex;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
  gap: 20px;
}
.pagetion li{
  display: flex;
  align-items: center;
  color: #bab5b5;
  font-size: 18px;
  gap: 5px;
}
.pagetion .active,
.pagetion li:hover{
  color: #22689e;
  cursor: pointer;
}
.pagetion img{
  height: 19px;
}
@media screen and (max-width: 1024px){
  .new{
    padding:  0;
  }
  .new_list li{
    flex-direction: column;
    gap: 20px;
  }
  .new_list .img{
    width: 100%;
    height: auto;
  }
  .pagetion{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    align-items: center;
    gap: 10px;
  }
  .pagetion li{
    font-size: 16px;
  }
  .pagetion img{
    height: 16px;
    width: unset;
  }
}