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
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
/* --fyui-box */
.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: 3;
  width: 100%;
  overflow: hidden;
  /* text-overflow: ellipsis; */
}
 
.fyui-box__text .fyui-box__bd .tag {
  margin-bottom: 8px;
  font-size: 14px;
}
 
.fyui-box .answer {
  display: flex;
  align-items: center;
  /* flex-direction: row; */
  /* justify-content: space-between; */
  /* background-color: red; */
}
 
.subtitle{
  font-size: 15px;
}
 
.tag2{
  line-height: 18px;
  font-size: 12px;
  color: var(--fyui-text-color_3);
}
 
.fyui-box__text .fyui-box__ft {
  font-size: 12px;
}
 
.case-bd{
  display: flex;
}
 
.case-bd>image{
  width: 60%;
  height: 54px;
  border-radius: 4px;
  margin-left: 4px;
}
 
.fyui-box__ft_2 {
  display: flex;
  font-size: 12px;
  color: var(--fyui-text-color_3);
  margin-top: 16px;
}
 
.case-tag-group {
  display: flex;
  flex-wrap: wrap;
}
 
.case-tag {
  display: flex;
  align-items: center;
}
.case-tag>image {
  width: 14px;
  height: 14px;
}
 
.case-tag>text {
  white-space: nowrap;
  margin-left: 4px;
  margin-right: 4px;
}
 
.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);
}
 
.qa-title {
  display: flex;
  align-items: flex-start;
}
 
.qa-title>image {
  margin-right: 4px;
  margin-top: 2px;
}
 
.user-avator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
 
.user-name {
  color: var(--fyui-text-color_2);
  font-size: 12px;
  margin-left: 4px;
}