
.v-progress {

  position: relative;
  font-size: 10px;
  font-weight: normal;
  color: #606266;
  margin-bottom: 15px;

  .v-out-line {

    position: relative;
    display: flex;
    align-items: center;

    .v-line {

      position: relative;
      flex: 2;
      height: 100%;
      overflow: hidden;
      background-color: #ebeef5;

      .v-finished {

        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
      }
    }

    .v-text {

      text-align: right;

      &.v-inside {
        margin-left: 0;
        position: absolute;
        color: #fff;
      }
    }
  }

  .v-circle {

    position: relative;
    border-radius: 50%;
    background-color: #ebeef5;
    overflow: hidden;
    text-align: center;

    .v-inner {
      position: relative;
      border-radius: 50%;
      background-color: #fff;
      z-index: 3;
    }

    .v-right {
      position: absolute;
      left: 50%;
      top: 0;
      width: 50%;
      height: 100%;
      overflow: hidden;

      .v-rightFinish {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: 2;
        transform-origin: right center;
      }
    }

    .v-left {
      position: absolute;
      left: 0;
      top: 0;
      width: 50%;
      height: 100%;
      overflow: hidden;

      .v-leftFinish {
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        z-index: 2;
        transform-origin: left center;
      }
    }

    .v-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
    }
  }
}
