.item {
  height: 134px;
  width: 100%;
  width: 960px;
  margin: 0 auto;
  font-size: 14px;
  margin-top: 24px;
  border-left: 4px solid transparent;
  padding-left: 25px;
  overflow: hidden;
  -webkit-transition: background 0.4s ease-out, border-color 0.4s ease-out;
  transition: background 0.4s ease-out, border-color 0.4s ease-out;
  -webkit-animation: fadeInUp 1s both;
          animation: fadeInUp 1s both;
}
.item .time {
  padding-top: 24px;
  font-weight: 400;
  color: #959492;
}
.item .title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #252423;
}
.item .content {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 400;
  color: #959492;
}
.item:hover {
  -webkit-box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FF983F;
  background-color: #FBFBFB;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
<!--0.00016283988952637-->