.section1 .content .list {
  display: flex;
  flex-wrap: wrap;
}
.section1 .content .list > li {
  width: calc((100% - 80px)/3);
  margin-right: 40px;
  margin-bottom: 40px;
}
.section1 .content .list > li:nth-child(3n) {
  margin-right: 0;
}
.section1 .content .list > li > a {
  display: inline-block;
  width: 100%;
}
.section1 .content .list > li > a .img-box {
  width: 100%;
  height: 1.8rem;
  overflow: hidden;
}
.section1 .content .list > li > a .img-box img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease 0s;
    object-fit: cover;

}
.section1 .content .list > li > a .info {
  border: 1px solid #E3E3E3;
  padding: 20px 30px;
  transition: all 0.5s ease 0s;
}
.section1 .content .list > li > a .info > p {
  line-height: 2;
  transition: all 0.5s ease 0s;
}
.section1 .content .list > li > a .info .p1 {
  font-size: 16px;
  color: #333;
  /*font-weight: bold;*/
}
.section1 .content .list > li > a .info .p2 {
  font-size: 20px;
  color: #000;
  overflow: hidden;
  font-weight: bold;
}
.section1 .content .list > li > a .info .p3 {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height:64px ;
}
.section1 .content .list > li > a .info .btn {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #CCCCCC;
  transition: all 0.5s ease 0s;
}
.section1 .content .list > li > a .info .btn .icon {
  width: 28px;
  height: 7px;
  background-image: url('/static/home/images/news/more_icon_nor.png');
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease 0s;
}
.section1 .content .list > li:hover > a .img-box img {
  transform: scale(1.02);
}
.section1 .content .list > li:hover > a .info {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
}
.section1 .content .list > li:hover > a .info .p1,
.section1 .content .list > li:hover > a .info .p2 {
  color: #62B400;
}
.section1 .content .list > li:hover > a .info .p3 {
  color: #333;
}
.section1 .content .list > li:hover > a .info .btn {
  color: #62B400;
}
.section1 .content .list > li:hover > a .info .btn .icon {
  background-image: url('/static/home/images/news/more_icon_sel.png');
}
@media screen and (max-width: 1024px) {
  .section1 .content .list > li {
    width: calc((100% - 80px)/2);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .section1 .content .list > li:nth-child(3n) {
    margin-right: 40px;
  }
  .section1 .content .list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
	.section1 .content .list > li > a .img-box {
		height: 220px;
	}
	
}
@media screen and (max-width: 414px) {
  .section1 .content .list > li {
    width: 100%;
    margin-right: 0;
  }
  .section1 .content .list > li:nth-child(3n) {
    margin-right: 0;
  }
}
<!--ºÄÊ±1759413332.7136Ãë-->