// 时间线
.#{$namespace} {
  &-timeline {
    padding-left: 5px;
    &-item {
      position: relative;
      padding-bottom: 20px;
      &::before {
        content: "";
        position: absolute;
        left: 5px;
        top: 0;
        z-index: 0;
        width: 1px;
        height: 100%;
        background-color: #eee;
      }
      &:first-child:before {
        display: block;
      }

      &:last-child:before {
        display: none;
      }
    }
    &-axis {
      display: inline-block;
      position: absolute;
      left: -2px;
      top: 0;
      z-index: 10;
      width: 16px;
      height: 16px;
      line-height: 20px;
      background-color: $white;
      color: $primary;
      border-radius: 50%;
      text-align: center;
      cursor: pointer;
      border: 1px solid $primary;
      &:hover {
        color: $red;
        border: 1px solid $red;
      }
    }
    &-content {
      padding-left: 25px;
    }
    &-title {
      position: relative;
      margin-bottom: 10px;
      line-height: 22px;
    }
  }
}
