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
| .analysis-List {
| &-head {
| margin-top: 12px;
| display: flex;
| padding: 0 2px;
| justify-content: space-between;
| background-color: rgba(230, 228, 234, 0.64);
| &-col1 {
| width: 22px;
| padding: 4px;
| }
| &-col2 {
| flex: 2;
| padding: 4px;
| }
| &-orange {
| color: #ff5b1f;
| }
| &-blue {
| color: #007fff;
| }
| &-img1 {
| top: 0;
| width: 8px;
| height: 8px;
| position: absolute;
| }
| &-img2 {
| bottom: 0;
| width: 8px;
| height: 8px;
| position: absolute;
| }
| &-small-size {
| font-size: 12px;
| line-height: 20px;
| }
| }
|
| &-flex {
| display: flex;
| flex-direction: column;
| position: relative;
| height: 12px;
| width: 8px;
| }
|
| &-item {
| display: flex;
| padding: 0 2px;
| align-items: center;
| &-col1 {
| width: 22px;
| padding: 4px;
| }
| &-col2 {
| flex: 2;
| padding: 6px 4px;
| }
| &-more {
| margin-top: 8px;
| background-color: rgba(230, 228, 234, 0.64);
| padding: 6px;
| text-align: center;
| color: rgba(23, 26, 29, 0.85);
| border-radius: 2px;
| }
| }
| }
|
|