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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
| .disputeLedger {
| &-row {
| margin-top: 12px;
| background-color: #fff;
| padding: 12px 16px 16px 16px;
| }
| &-d {
| display: flex;
| gap: 24px;
| align-items: center;
| justify-content: space-between;
| }
| &-card {
| position: relative;
| flex: 1;
| // width: 167px;
| height: 75px;
| background: #f2f3f5;
| border: 0.5px solid #e5e6eb;
| cursor: pointer;
| border-radius: 4px;
| cursor: pointer;
| & img {
| width: 40px;
| position: absolute;
| right: 8px;
| top: 14px;
| }
| &-active {
| background: #e8f8ff;
| border: 1px solid #1a6fb8;
| }
| &-content {
| padding: 12px 16px;
| &-t {
| margin-bottom: 4px;
| &-active {
| color: #1a6fb8;
| }
| }
| }
| &-title {
| font-size: 18px;
| line-height: 26px;
| }
| }
| &-title {
| font-size: 14px;
| color: #1d2129;
| }
| &-unit {
| // color: #86909c;
| font-size: 12px;
| line-height: 20px;
| }
| &-green {
| margin: 12px 0;
| display: flex;
| gap: 12px;
| &-title {
| font-size: 16px;
| line-height: 24px;
| padding: 12px 16px;
| color: rgba(0, 0, 0, 0.85);
| }
| }
| }
|
| .big-green {
| &-main {
| &-space {
| width: 389px;
| background-color: #fff;
| }
| &-title {
| background: #105489;
| height: 36px;
| padding: 0 12px 0 8px;
| color: #fff;
| display: flex;
| align-items: center;
| &-t {
| line-height: 30px;
| height: 24px;
| margin-left: 8px;
| }
| &-display {
| display: flex;
| align-items: end;
| }
| &-bias {
| transform: rotate(-45deg);
| height: 1px;
| width: 5px;
| background-color: rgba(255, 255, 255, 0.4);
| position: relative;
| top: -2px;
| left: -1px;
| }
| &-line {
| flex: 1;
| height: 1px;
| // transform: skewX(-45deg);
| background-color: rgba(255, 255, 255, 0.4);
| }
|
| &-graph {
| background: #ffc97a;
| width: 20px;
| height: 3px;
| transform: skewX(-45deg);
| }
| }
| }
| }
|
|