.all {
  background: -webkit-gradient(linear, left top, left bottom, from(#E4EDFA), to(rgba(239, 243, 249, 0))), #FFFFFF;
  background: linear-gradient(180deg, #E4EDFA 0%, rgba(239, 243, 249, 0) 100%), #FFFFFF;
}
.all .flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.all .flx > a {
  width: calc((100% - 30px) / 2);
  border-radius: 0 30px 0 30px;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.all .flx > a:nth-child(n+3) {
  margin-top: 40px;
}
.all .flx > a:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.all .flx > a:hover .img img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.all .img {
  position: relative;
  height: 0;
  padding-bottom: 63.5%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 0 0 30px;
}
.all .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.all .txt {
  padding: 25px 50px;
}
.all .des {
  margin-top: 15px;
  color: #737373;
  line-height: 1.8;
  
  overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.all .sub {
  color: #f06330;
  line-height: 1.8;
}
.all .line {
  height: 1px;
  background: #E4E4E4;
  margin: 15px 0;
}
.all .info {
  color: #737373;
}
.all .info > p {
  line-height: 1.875;
  padding-left: 13px;
  position: relative;
}
.all .info > p:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #737373;
}
@media screen and (max-width: 1700px){
    .all .flx > a{
        border-radius: 0 20px 0 20px;
    }
    .all .img{
            border-radius: 0 0 0 20px;
    }
    .all .txt {
  padding: 25px 35px;
}
.all .des {
    margin-top: 10px;
    
}
}
@media screen and (max-width: 1200px){
    .all .flx > a {
    width: calc((100% - 20px) / 2);
        
    }
    .all .flx > a:nth-child(n+3) {
    margin-top: 20px;
    }
}
@media screen and (max-width: 768px){
    .all .flx > a{
        width: 100%;
    }
        .all .flx > a:nth-child(n+2) {
        margin-top: 20px;
    }
        .all .txt {
        padding: 25px;
    }
        .all .flx > a {
        border-radius: 0 15px 0 15px;
    }
        .all .img {
        border-radius: 0 0 0 15px;
    }
}