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
| .box {
| width: 100%;
| }
|
| .item {
| width: 100%;
| padding: 15px;
| box-sizing: border-box;
| background-color: #ffffff;
| }
| .item_head {
| width: 100%;
| display: flex;
| align-items: center;
| justify-content: space-between;
| }
| .item_list {
| width: 100%;
| display: flex;
| flex-direction: column;
| }
| .item_list_item {
| width: 100%;
| height: 80px;
| display: flex;
| align-items: center;
| justify-content: space-between;
| margin-bottom: 15px;
| }
| .item_list_item_img {
| flex-shrink: 0;
| width: 106px;
| height: 80px;
| overflow: hidden;
| border-radius: 8px;
| margin-right: 12px;
| }
| .item_list_item_img img {
| width: 100%;
| }
| .item_list_item_info {
| flex: 1;
| height: 100%;
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| }
| .item_list_item_info span:nth-child(1) {
| font-weight: 500;
| font-size: 16px;
| color: #191B1F;
| }
| .item_list_item_info span:nth-child(2) {
| font-weight: 400;
| font-size: 12px;
| color: #7B7F87;
| }
|
|