riku
2026-01-22 f14ea940fb32105de8b592992e3f53c62f31d84d
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
127
128
129
130
131
132
133
/* pages/mConsult/consultonline/consultonline.wxss */
.page {
  background-color: #EFF9F4;
}
 
.consult-record {
  /* padding: 8px 0; */
  background-color: #EFF9F4;
  height: 88vh;
}
 
.consult-record_item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 16px;
  padding-left: 8px;
}
 
.consult-record_itemUser {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 16px;
  padding-right: 8px;
}
 
.consult-avator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
 
.consult-text {
  max-width: 80%;
  margin-left: 4px;
  padding: 10px;
  background-color: white;
  border: 0px solid #CCCCCC;
  border-radius: 16px;
  border-top-left-radius: 0;
  box-shadow: 1px 1px #CCCCCC;
  font-size: 12px;
}
 
.consult-qa {
  padding: 0px;
  width: 92%;
  max-width: 100%;
}
 
.consult-text_user {
  max-width: 80%;
  margin-left: 4px;
  padding: 10px;
  /* background-color: #49c4ad; */
  background: linear-gradient(to top right, #58bba9, #52e6ca);
  border: 0px solid #CCCCCC;
  border-radius: 16px;
  border-top-right-radius: 0;
  box-shadow: 1px 1px #CCCCCC;
  font-size: 12px;
  color: white;
}
 
 
.consult-input {
  position: fixed;
  bottom: 0;
  /* padding-bottom: calc(10px + constant(safe-area-inset-bottom)); */
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  left: 0;
  width: 100%;
  /* height: 12vh; */
  /* background-color: #a3be042f; */
}
 
.consult-input_box {
  display: flex;
  align-items: center;
  padding: 0 8px;
}
 
.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: 10px;
  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: 12px;
  min-width: 40px;
  background: linear-gradient(to top right, #58bba9, #52e6ca);
  padding: 4px 2px;
  text-align: center;
  color: white;
  margin-left: 4px;
}