riku
2022-09-14 2206df0da6499846c78a358cf95ca33c218a5c5d
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
/* pages/m_consult/consultsearch/consultsearch.wxss */
.page__hd {
  /* background-color: white; */
  padding: 10px;
  display: flex;
  align-items: center;
}
 
.page__bd {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
}
 
.search-bar {
  flex: 1;
  position: relative;
  min-width: 50vw;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 24px;
  color: var(--fyui-text-color_2);
  text-align: left;
  background-color: white;
  border-radius: 20px;
  border: 2px solid #57E4CB;
  display: flex;
  align-items: center;
}
 
.search-bar .weui-icon-clear {
  /* position: absolute;
  top: 50%;
  right: 0;
  margin-top: -16px; */
  padding-left: 8px;
  width: 16px;
  height: 16px;
  -webkit-mask-size: 16px;
  mask-size: 16px;
  /* display: block; */
}
 
.search-bar .search-bar__input {
  width: 100%;
  border: 0;
  font-size: 14px;
  line-height: 20px;
  box-sizing: content-box;
  background: transparent;
  caret-color: var(--weui-BRAND);
  color: var(--weui-FG-0);
}
 
.btn {
  border-radius: 20px;
  line-height: 20px;
  font-size: 14px;
  width: 70px;
  background: linear-gradient(to top right, #42E4D5, #94DBF2);
  padding: 4px 2px;
  text-align: center;
  color: white;
  margin-left: 4px;
}
 
.history-record {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
 
.history-record>text {
  white-space: nowrap;
  background-color: rgb(255, 255, 255);
  margin-right: 8px;
  margin-bottom: 4px;
  padding: 2px 6px;
  color: var(--fyui-text-color_2);
  border-radius: 8px;
  /* border: 1px solid var(--fyui-text-color_3); */
}
 
.hot-topic {
  background-color: white;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 8px;
}
 
.hot-topic .hot-topic__item {
  display: flex;
  margin-bottom: 8px;
}
 
.hot-topic .hot-topic__hot{
  background-color: rgba(255, 0, 0, 0.692);
  width: 20px;
  height: 20px;
  text-align: center;
  color: white;
}
 
.hot-topic .hot-topic__normal{
  background-color: rgba(255, 166, 0, 0.692);
  width: 20px;
  height: 20px;
  text-align: center;
  color: white;
}
 
.hot-topic .hot-topic__name{
  width: 100%;
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* background-color: orange; */
}
 
.hot-topic .hot-topic__name:active{
  background-color: var(--fyui-BG-COLOR-ACTIVE);
}