riku
2022-09-06 bf580d5477d65f5eefb70a8fb9a6b37eaf0ae9bb
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
/* pages/module_consult/consultproblem/consultproblem.wxss */
.page__hd {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: white;
  padding: 16px;
}
 
.switch-tab {
  border-radius: 8px;
  color: var(--fyui-text-color_1);
  width: 20vw;
  background-color: white;
  padding: 1vw;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
.switch-tab_selected {
  background: linear-gradient(to bottom right, #65EAD2, #2BDEDC);
  color: white;
}
 
.fyui-box__content {
  padding: 0 8px;
}
 
.fyui-box__tag {
  display: flex;
  /* background-color: red; */
  width: 100%;
  justify-content: flex-end;
}
 
.fyui-box__tag .flex-h{
  margin-right: 16px;
}
 
.fyui-box .answer {
  display: flex;
  flex-direction: row;
  line-height: 18px;
  font-size: 12px;
  color: var(--fyui-text-color_3);
}
 
.des {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  width: 100%;
  overflow: hidden;
  /* text-overflow: ellipsis; */
}
 
.subtitle{
  font-size: 15px;
}
 
.next-answer {
  text-align: center;
  font-size: 12px;
  color: var(--fyui-text-color_3);
  padding: 8px;
}
 
.filter {
  display: flex;
  align-items: center;
}
 
.filter:active {
  background-color: var(--fyui-BG-COLOR-ACTIVE);
}