xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* pages/AIAide/index.wxss */
 
.card {
  padding: 24rpx;
  height: 100%;
  background-color: #fff;
  position: relative;
}
 
.card_main {
  background-color: #F6F7FB;
  border-radius: 8px;
}
 
.flex_end {
  /* position: fixed;
  bottom: 40rpx; */
  color: rgba(23, 26, 29, 0.24);
  font-size: 28rpx;
  /* padding: 0 52rpx; */
  text-align: center;
  padding: 24rpx 0;
}
 
.caseList {
  border-radius: 4px;
  background-color: #fff;
  padding: 24rpx;
  margin: 0 24rpx 16rpx 24rpx;
}
 
.caseList_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rpx;
}
 
.cell-arrow {
  width: 16px;
  height: 16px;
  background: #f6f7fb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rpx;
}
 
.caseList_title {
  color: rgba(23, 26, 29, 0.60);
  font-size: 24rpx;
  line-height: 40rpx;
}
 
.caseList_head {
  display: flex;
  gap: 8rpx;
  padding: 24rpx 24rpx;
  margin-top: 24rpx;
}
 
.line {
  border: 1px dashed #e5e6eb;
  margin: 32rpx 24rpx 0;
}
 
.assess {
  display: flex;
  gap: 32rpx;
  justify-content: flex-end;
  padding: 12rpx 24rpx 32rpx;
}
 
.ellipsis {
  overflow: hidden;
  /* 确保超出容器的文本会被裁剪 */
  white-space: nowrap;
  /* 保证文本在一行内显示 */
  text-overflow: ellipsis;
  /* 使用省略号表示文本超出 */
}
 
.show-line {
  margin: 24rpx 0;
  border-top: 1px solid #F0F0F0;
}
 
.show-Law {
  color: var(--main-color);
}
 
/* 评价弹窗样式 */
.evaluation-popup {
  position: relative;
  width: 100%;
}
 
.evaluation-title {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
 
.evaluation-item {
  margin-bottom: 15px;
}
 
.item-title {
  margin-bottom: 8px;
  font-size: 14px;
}
 
.stars {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
 
.comments-area {
  width: 100%;
  background-color: #F5F5F5;
  border-radius: 4px;
  padding: 10px;
}
 
.comments-area textarea {
  width: 100%;
  height: 80px;
  font-size: 14px;
  line-height: 1.5;
}
 
.submit-btn {
  width: 100%;
  background-color: #1A6FB8;
  color: white;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 16px;
  height: 44px;
  line-height: 44px;
}
 
.close-btn {
  position: fixed;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}
 
.close-btn image {
  width: 30px;
  height: 30px;
}
 
/* 禁止弹窗滚动 */
.van-popup {
  overflow: hidden !important;
}
 
/* 自定义toast样式 */
.custom-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(51, 51, 51, 0.9);
  border-radius: 8px;
  padding: 16px 24px;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
 
.show-toast {
  opacity: 1;
}
 
.toast-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
 
.toast-content text {
  color: #FFFFFF;
  font-size: 16px;
}