.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;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list > div {
  width: calc((100% - 30px) / 2);
}
.list > div>div {
  border-radius: 0 30px 0 30px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 45px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.list > div:nth-child(n+3) {
  margin-top: 30px;
}
.list > div>div:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.list > div:hover .day {
  color: #f06330;
}
.list > div:hover .tit a {
  color: #f06330;
}
.list .l {
  width: 84px;
  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 .r {
  width: calc(100% - 112px);
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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;
}
.list .day {
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.list .year {
  color: #737373;
}
@media screen and (max-width:1700px){
    .list > div>div {
    border-radius: 0 20px 0 20px;
        padding: 40px;
    }
    .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 > div>div {
        padding: 30px;
    }
    .list > div {
    width: calc((100% - 20px) / 2);
}
.list > div:nth-child(n+3) {
    margin-top: 20px;
}
.list .l::before{
    height: 30px;
}
.list .l::after{
    height: 30px;
}
}
@media screen and (max-width:768px){
    .list > div{
        width: 100%;
    }
        .list > div:nth-child(n+2) {
        margin-top: 15px;
    }
    .list .l{
        display: none;
    }
    .list .r{
        width: 100%;
    }
    .list .des{
        display: none;
    }
    .list > div>div {
        border-radius: 0 15px 0 15px;
                padding: 20px 30px;
    }
    .list .time{
    display: flex;
    margin-top: 20px;
}
}