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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
| .dataSearch {
| &-spanRight {
| margin-right: 8px;
| }
|
| &-inputWeight {
| width: 220px;
| }
|
| &-card {
| margin: 16px 16px 0;
| display: flex;
| align-items: stretch;
| flex-wrap: wrap;
|
| &-item {
| background-color: #ffffff;
| border-radius: 2px;
| padding: 16px 20px;
| flex: 1;
| margin-right: 16px;
| display: flex;
| flex-direction: column;
| }
|
| &-item:last-child {
| margin-right: 0;
| }
|
| &-itemHeader {
| color: rgba(0, 0, 0, 0.45);
| margin-bottom: 8px;
| }
|
| &-itemMain {
| flex: 1;
|
| &-title {
| font-size: 30px;
| font-weight: 600;
| }
|
| &-subTitle {
| display: flex;
| flex-wrap: wrap;
| margin-top: 12px;
|
| &-flex {
| display: flex;
| align-items: center;
|
| div:first-child {
| height: 8px;
| width: 8px;
| border-radius: 50%;
| margin-right: 4px;
| }
| }
|
| &-flex:first-child {
| margin-right: 16px;
| }
|
| &-bottom {
| margin-bottom: 12px;
| }
|
| &-bottom:last-child {
| margin-bottom: 0;
| }
| }
| }
|
| &-vertical {
| margin: 0 8px;
| width: 1px;
| background-color: #f0f0f0;
| height: 21px;
| }
|
| &-itemFooter {
| padding-top: 12px;
| border-top: 1px solid #f0f0f0;
| margin-top: 12px;
| }
| }
|
| &-main {
| flex: 1;
| margin: 16px;
| background-color: #ffffff;
|
| &-header {
| display: flex;
| align-items: center;
| padding: 16px;
| border-bottom: 1px solid #f0f0f0;
| }
|
| &-content {
| display: flex;
|
| &-left {
| flex: 1;
| }
|
| &-right {
| width: 320px;
| margin-left: 24px;
| }
|
| &-rightTitle {
| font-size: 16px;
| padding: 12px 0;
| font-weight: 600;
| }
|
| &-rightLine {
| margin-bottom: 16px;
| display: flex;
| align-items: center;
| padding-right: 16px;
|
| div:first-child {
| width: 22px;
| height: 22px;
| line-height: 22px;
| text-align: center;
| border-radius: 50%;
| background-color: #f0f0f0;
| margin-right: 8px;
| font-weight: 600;
| }
|
| &-flex {
| flex: 1;
| }
| }
| }
| }
| }
|
|