
  /* _timeline.css */
  .timeline {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 160px;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    height: 100%;
    background-color: #ccc;
  }
  .timeline__item {
    position: relative;
    margin-bottom: -70px;
  }
  .timeline__item::after{
    content: "";
    clear: both;
    display: table;
  }
  .timeline__item:nth-child(2n) .timeline__item__content {
    float: right;
  }
  .timeline__item:nth-child(2n) .timeline__item__content__date {
    background-color: #b292c5;
  }
  .timeline__item:nth-child(2n) .timeline__item__content__description {
    color: #b292c5;
  }
  .timeline__item:last-child {
    margin-bottom: 0;
  }
  .timeline__item-bg {
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    color: #fff;
  }
  .timeline__item-bg:nth-child(2n) .timeline__item__station {
    background-color: #c01010;
  }
  .timeline__item-bg:nth-child(2n) .timeline__item__content {
    background-color: #fff;
  }
  .timeline__item-bg:nth-child(2n) .timeline__item__content__description {
    color: #fff;
  }
  .timeline__item-bg .timeline__item__station {
    background-color: #c01010;
    color: #fff!important;
  }
  .timeline__item-bg .timeline__item__content {
    box-shadow: 0 0 10px 0 #c0c0c0;
  }

  .timeline__item-bg .timeline__item__content__description {
    color: #fff;
  }
  .timeline__item__station {
    box-shadow: 0 0 2px 0;
    width: 180px;
    height: 40px;
    position: absolute;
    border-radius: 5px;
    top: 120px;
    left: 50%;
    margin-left: -90px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    text-align: center;
    line-height: 40px;
    font-family: bold;
    color: red;
    background: #fff;
  }
  .timeline__item__content {
    width: 480px;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #e8e8e8;
  }
  .timeline__item__content__date {
    width: 450px;
    height: 315px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .timeline__item__content__date img{
      width: 100%;
      min-height: 100%;
      display: block;
  }
  .timeline__item__content__description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }
  .timeline__item__content__description h4{
      color: #333;
      font-family: bold;
  }
  .timeline__item__content__description p{
      color: #666;
      /*text-indent: 2em;*/
      height: 56px;
      overflow: hidden;
  }
  .timeline__item__content__description .time{
      color: #666;
      text-align: right;
      font-size: 14px;
  }
  .end{
    box-shadow: 0 0 2px 0;
    width: 180px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    font-family: bold;
    color: #fff;
    background: #c01010;
    margin: 0 auto;
    margin-top: 80px;
    position: relative;
    z-index: 1;
  } 
  