.#{$timeline-prefix-cls} {
  $root: #{&};
  list-style: none;
  margin: 0;
  padding: 0;
  &__item {
    $item: #{&};
    padding: 0 0 0.32rem;
    list-style: none;
    position: relative;

    &-tail {
      height: 100%;
      border-left: 0.02rem solid #959BA8;
      position: absolute;
      left: .18rem;
      top: .28rem;

      #{$item}:last-child &{
        border-color: transparent;
      }
    }
    i#{&}-icon {
      background-color: #959BA8;
      display: inline-block;
      border-radius: 50%;
      width: .09rem;
      height: .09rem;
    }
    &.current {
      i.#{$timeline-prefix-cls}__item-icon {
        width: 0.4rem;
        height: 0.4rem;
        background: $white;
        border: 2px solid #979797;
      }

      .#{$timeline-prefix-cls}__item-node {
        top: .1rem;
        left: 0;
      }
    } 
    &-node {
      position: absolute;
      top: .05rem;
      text-align: center;
      left: -0.01rem;
      width: 0.4rem;
      height: 0.4rem;
    }

    &-content {
      padding-left: .92rem;
      position: relative;
      top: 0;
      &-title {
        color: #000;
        font-size: .44rem;
        line-height: .62rem;
        margin-bottom: .3rem;
      }
      &-detail {
        color: #333333;
        font-size: .32rem;
        line-height: .45rem;
      }
    }
  }
}