drag.css 864 B

12345678910111213141516171819202122232425262728293031323334
  1. .jc-component__range{width:300px;}
  2. .jc-component__range .jc-range{
  3. background-color: #e9e9e9;
  4. position: relative;
  5. transition: 1s all;
  6. user-select: none;
  7. color: #585858;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. height: 34px;
  12. }
  13. .jc-component__range .jc-range.success{
  14. background-color: #3bc923;
  15. color: #fff;
  16. }
  17. .jc-component__range .jc-range.success i{color: #3bc923;}
  18. .jc-component__range i{
  19. position: absolute;
  20. left: 0;
  21. width: 34px;
  22. height: 100%;
  23. color: #3fcd26;
  24. background-color: #fff;
  25. border: 1px solid #d8d8d8;
  26. cursor: pointer;
  27. font-size: 24px;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. }