riku
2024-11-13 48145f787eda81815f653ad21161a60e89b6a303
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
/* pages/mConsult/consultresult/consultresult.wxss */
.keyword {
  white-space: nowrap;
}
.keyword-item {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
 
.keyword-item>text {
  white-space: nowrap;
  margin-right: 8px;
  padding: 0px 6px;
  color: #2c7064;
}
 
.des {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  width: 100%;
  overflow: hidden;
  /* text-overflow: ellipsis; */
}
 
.tag {
  margin-bottom: 8px;
}
 
.subtitle{
  font-size: 15px;
}
 
.tag2{
  font-size: 12px;
  color: var(--fyui-text-color_3);
}
 
.btn-more{
  text-align: center;
  background-color: white;
  margin: 0 10px;
  border-top: 1px solid var(--fyui-BG_1);
  color: var(--fyui-text-color_2);
  padding: 8px;
  font-size: 12px;
}
 
.btn-more:active{
  background-color: var(--fyui-BG-COLOR-ACTIVE);
}
 
.tag3{
  font-size: 10px;
  background-color: var(--fyui-primary-color);
  color: white;
  border-radius: 2px;
  padding: 2px 4px;
  white-space: nowrap;
  margin-right: 10px;
}
 
.tag3_disable{
  background-color: var(--fyui-text-color_3);
}
 
.fyui-box__text .fyui-box__ft{
  justify-content: flex-start;
}