1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| .slider-block {
| height: 68px;
| width: 96%;
| }
| /* 已经选中的轨道 */
| .slider-block .el-slider__bar {
| height: 4px;
| background: #474d57;
| }
| /* 轨道#474d57 */
| .slider-block .el-slider__runway {
| height: 4px;
| background: #474d57;
| }
|
| .slider-block .el-slider__button {
| width: 14px;
| height: 14px;
| border-radius: 50%;
| margin-top: -1px;
| background: #2b3139;
| border: solid 2px #fff;
| }
|
| .slider-block .el-slider__marks-stop {
| height: 12px;
| width: 12px;
| margin-top: -4px;
| border-radius: 50%;
| background: #2b3139;
| border: solid 2px #474d57;
| }
|
|