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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
| .bing-progress {
| position: relative;
| /* #ifndef APP-NVUE */
| display: flex;
| /* #endif */
| flex-direction: row;
| align-items: center;
| justify-content: space-around;
| overflow: hidden;
| }
| .bp-marea {
| /* #ifndef APP-NVUE */
| display: flex;
| /* #endif */
| position: absolute;
| left: 0;
| top: 0;
| flex-direction: row;
| align-items: center;
| text-align: center;
| justify-content: space-around;
| background-color: rgba(0,0,0,0);
| z-index: 6;
| }
| .bp-mview,
| .bp-handle {
| position: absolute;
| /* #ifndef APP-NVUE */
| display: flex;
| /* #endif */
| flex-direction: row;
| align-items: center;
| text-align: center;
| justify-content: center;
| z-index: 5;
| overflow: hidden;
| }
| .bp-handle-text {
| text-align: center;
| z-index: 5;
| overflow: hidden;
| }
| .bp-bar_max {
| position: absolute;
| /* #ifndef APP-NVUE */
| display: flex;
| /* #endif */
| flex-direction: row;
| align-items: center;
| margin: 0;
| padding: 0;
| z-index: 1;
| overflow: hidden;
| }
| .bp-bar_active {
| position: absolute;
| z-index: 3;
| overflow: hidden;
| }
| .bp-bar_sub_active {
| position: absolute;
| z-index: 2;
| overflow: hidden;
| }
| .bp-value {
| position: absolute;
| text-align: center;
| overflow: hidden;
| z-index: 4;
| }
|
|