riku
2024-08-13 1a0e4972f80278bfa9e53283374b745b6c968341
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
/* components/info-card/index.wxss */
.info-card {
  padding: 8px 16px;
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 80px;
  background-color: var(--td-white-color-1);
}
 
.info-card:active {
  background-color: var(--td-gray-color-1);
}
 
.info-card .info-card__hd {
  width: 120px;
  height: 80px;
  border-radius: 2px;
  /* background-color: greenyellow; */
}
 
.info-card .info-card__hd .info-card__hd_image {
  width: 120px;
  height: 80px;
}
 
.info-card .info-card__bd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* background-color: hotpink; */
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 0 8px;
}
 
.info-card .info-card__bd .info-card__content {
  color: var(--td-text-color-primary);
  font-size: 14px;
}
 
.info-card .info-card__bd .info-card__tag {
  color: var(--td-text-color-secondary);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.info-card .info-card__bd .info-card__tag .info-card__browse {
  display: flex;
  justify-content: space-between;
  align-items: center;
}