shimai
9 days ago 88a31d5a960bd10f3799bc00f8aa24461567d06e
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
/**
 * PartyInfoCard 组件样式
 * 申请双方信息展示
 */
 
.party-info-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
 
.party-info-title {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 12px;
  font-weight: 500;
}
 
.party-info-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
 
/* 当事人卡片 */
.party-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  padding: 8px;
}
 
/* 情绪标签 - 实心红背景白字 */
.party-tag {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  padding: 2px 8px;
  line-height: 16px;
  border-radius: 10px;
  background-color: #ff4d4f !important;
  color: white !important;
  border: none !important;
}
 
.party-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-top: 12px;
  margin-bottom: 8px;
  object-fit: cover;
}
 
.party-role {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 4px;
}
 
.party-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
 
/* VS分隔符 */
.vs-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  gap: 8px;
}
 
.vs-line {
  width: 30px;
  height: 1px;
}
 
.vs-line-left {
  background: linear-gradient(to right, #E5E6EB, #C9CDD4);
}
 
.vs-line-right {
  background: linear-gradient(to right, #C9CDD4, #E5E6EB);
}
 
.vs-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}