.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 .list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.all .list > div:hover .l {
  color: #fff;
}
.all .list > div:hover .l::after {
  opacity: 1;
}
.all .list > div:hover .l .month {
  color: #fff;
}
.all .list > div:hover .r {
  -webkit-box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.all .list > div:hover .r .tit a {
  color: #f06330;
}
.all .l {
  width: 155px;
  height: 155px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F0F3F8;
  border-radius: 30px 0px 0px 0px;
  position: relative;
  overflow: hidden;
}
.all .l div {
  position: relative;
  z-index: 2;
}
.all .l::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#36BFFB), to(#176CF4));
  background: linear-gradient(90deg, #36BFFB, #176CF4);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.all .day {
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.all .month {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #737373;
}
.all .r {
  width: calc(100% - 155px);
  height: 178px;
  padding: 0px 68px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0px 30px 0px 30px;
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.all .des {
  color: #737373;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.all .time{
    display: none;
}
.all .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.875;
}
.all .tit a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
    flex-wrap: wrap;      
}
.tag > * {
  padding: 0 20px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0px 23px 0px 23px;
  border: 1px solid #D9D9D9;
  margin: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.tag > *:hover:not(.act) {
  background: #fff;
  border-color: transparent;
  color: #f06330;
  cursor: pointer;
}
.tag .act {
  color: #fff;
  border: none;
}
.tag .act:after {
  transform: translateX(0);
}
.tag span{
    position: relative;
    z-index: 2;
}
.tag div:after{
    transform: translateX(-101%);
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
      background: -webkit-gradient(linear, left top, right top, from(#36BFFB), to(#176CF4));
  background: linear-gradient(90deg, #36BFFB, #176CF4);
  transition: all 0.5s;
}
@media screen and (max-width: 1700px){
    .tag > *{
   
        height: 50px;
        border-radius: 0 20px 0 20px;
        margin: 10px;
    }
    .all .l{
            width: 120px;
        height: 120px;
            border-radius: 20px 0px 0px 0px;
    }
    .all .r{
        width: calc(100% - 120px);
            border-radius: 0px 20px 0px 20px;
                height: 140px;
    padding: 0px 40px;
    }
}
@media screen and (max-width: 1200px){
    
    .all .l{
                width: 100px;
        height: 100px;
    }
    .all .r{
        width: calc(100% - 100px);
                height: 120px;
        padding: 0px 30px;
    }
}
@media screen and (max-width: 768px){
    
    .tag{
        justify-content: space-between;
    }
    .tag > *{
        border-radius: 0px 15px 0px 15px;
        margin: 0;
        width: calc((100% - 15px)/2);
        padding: 0 10px;
    }
    .tag > *:nth-child(n+3){
        margin-top: 15px;
    }
        .all .des{
        display: none;
    }
    .all .time{
        display: flex;
        margin-top: 20px;
    }
    .all .l{
        display: none;
    }
    .all .r{
        width: 100%;
        border-radius: 0px 15px 0px 15px;
        height: auto;
        padding:20px 30px;
    }
}
@media screen and (max-width: 500px){
    .tag > *{
       font-size: 16px;
    }
}