12345678910111213141516171819202122232425262728293031323334 |
- .jc-component__range{width:300px;}
- .jc-component__range .jc-range{
- background-color: #e9e9e9;
- position: relative;
- transition: 1s all;
- user-select: none;
- color: #585858;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 34px;
-
- }
- .jc-component__range .jc-range.success{
- background-color: #3bc923;
- color: #fff;
- }
- .jc-component__range .jc-range.success i{color: #3bc923;}
- .jc-component__range i{
- position: absolute;
- left: 0;
- width: 34px;
- height: 100%;
- color: #3fcd26;
- background-color: #fff;
- border: 1px solid #d8d8d8;
- cursor: pointer;
- font-size: 24px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|