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
| .own-space {
|
| .own-wrap {
| display: flex;
|
| .title {
| font-size: 20px;
| color: rgba(0, 0, 0, .85);
| font-weight: 500;
| margin-bottom: 12px;
| }
|
|
| .item {
| width: 100%;
| display: flex;
| align-items: center;
| justify-content: space-between;
| padding-top: 14px;
| padding-bottom: 14px;
| border-bottom: 1px solid #e8e8e8;
|
| .social {
| display: flex;
| align-items: center;
|
| .logo {
| width: 50px;
| height: 50px;
| display: flex;
| justify-content: center;
| align-items: center;
| margin-right: 16px
| }
| }
|
| .title {
| color: rgba(0, 0, 0, .65);
| margin-bottom: 4px;
| font-size: 14px;
| line-height: 22px;
| }
|
| .desc {
| color: rgba(0, 0, 0, .45);
| font-size: 14px;
| line-height: 22px;
|
| .red {
| color: #ed3f14;
| }
|
| .middle {
| color: #faad14;
| }
|
| .green {
| color: #52c41a;
| }
| }
|
| }
| }
| }
|
|