.all {
  background: -webkit-gradient(linear, left top, left bottom, from(#E4EDFA), color-stop(20%, rgba(239, 243, 249, 0))), #FFFFFF;
  background: linear-gradient(180deg, #E4EDFA 0%, rgba(239, 243, 249, 0) 20%), #FFFFFF;
}

.list > div {
    align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.list > div:hover .day {
  color: #f06330;
}
.list > div:hover .tit a {
  color: #f06330;
}
.list > div:hover .img img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.list .l {
  width: 122px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.list .l::before {
  content: "";
  display: block;
  width: 100%;
  height: 36px;
  border: 1px solid #D9D9D9;
  border-radius: 0 30px 0 0;
  border-bottom: none;
}
.list .l::after {
  content: "";
  display: block;
  width: 100%;
  height: 36px;
  border: 1px solid #D9D9D9;
  border-radius: 0 0 0 30px;
  border-top: none;
}
.list .c {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 95px;
  margin-right: 90px;
}
.list .r {
  width: 260px;
  border-radius: 0 30px 0 30px;
  overflow: hidden;
}
.list .img {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.list .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;
}
.list .day {
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.list .year {
  color: #737373;
}
.list .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.list .tit a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.list .des {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.875;
  color: #737373;
}
.list .time{
    display: none;
    margin-top: 20px;
}
@media screen and (max-width: 1700px) {
    .list .r{
    border-radius: 0 20px 0 20px;
    }
    .list .c{
        margin: 0 50px;
    }
    .list .l::before{
            border-radius: 0 20px 0 0;
    }
    .list .l::after{
        border-radius: 0 0 0 20px;
    }
}
@media screen and (max-width: 1200px) {
    .list .c{
        margin: 0 30px;
    }
}
@media screen and (max-width: 768px) {
    .list .c{
        margin: 0;
        margin-right: 20px;
    }
    .list .l{
        display: none;
        
    }
        .list .r {
        border-radius: 0 15px 0 15px;
        width: 120px;
    }
    .list .time{
    display: block;
    }
    .list .tit{
            -webkit-line-clamp: 2;
    }
    .list .des{
    display: none;
    }
    .list .img{
        padding-bottom: 80%;
    }
}