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
/**
 * AISuggestionCard 组件样式
 * AI调解建议面板
 */
 
.ai-suggestion-card {
  background: linear-gradient(135deg, #e6f4ff, #f0f7ff);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 12px;
  border-left: 4px solid #1a6fb8;
}
 
.ai-suggestion-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
 
.ai-suggestion-icon {
  font-size: 1rem;
  color: #1a6fb8;
}
 
.ai-suggestion-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d4a8a;
}
 
.ai-suggestion-content {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
 
.ai-suggestion-footer {
  margin-top: 10px;
  text-align: center;
}
 
.ai-suggestion-btn {
  padding: 0;
  font-size: 0.85rem;
  color: #1a6fb8;
}
 
.ai-suggestion-btn:hover {
  color: #0d4a8a;
}