// 圆形步骤条组件
.cts-circle {
  position: relative;

  .circle_bg {
    position: absolute;
  }

  .cts-circle-text {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .circle_draw {
    position: fixed;
    top: 1000px;
    left: 1000px;
  }
}