/* 滑块验证样式 */
.jc-component__range {
  width: 100%;
  height: 45px;
}
.jc-component__range .jc-range{
  background-color: #f6c481;
  position: relative;
  transition: 1s all;
  user-select: none;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.jc-component__range .jc-range.success {
  background-color: #7AC23C;
  color: #fff;
}
.jc-component__range .jc-range.success i {
  color: #7AC23C;
}
.jc-component__range .jc-range i {
  position: absolute;
  left: 0;
  width: 60px;/*no*/
  height: 100%;
  color: #919191;
  background-color: #fff;
  border: 1px solid #bbb;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jc-component__range .jc-range__text span{
  color: #333;
}