.jc-component__range .jc-range {
  background-color: #eee;
  position: relative;
  transition: 1s all;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  /*no*/
}
.jc-component__range .jc-range i {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 60px;
  /*no*/
  height: 100%;
  color: #409eff;
  background-color: #fff;
  border: 1px solid #bbb;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jc-component__range .jc-range.success {
  background-color: #7ac23c;
  color: #fff;
}
.jc-component__range .jc-range.success i {
  color: #7ac23c;
}

