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
| /**
| * PartyInfoCard 组件样式
| * 申请双方信息展示
| */
|
| .party-info-card {
| background: #f8f9fa;
| border-radius: 8px;
| padding: 12px 16px;
| margin-bottom: 16px;
| }
|
| .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: 0 6px;
| line-height: 18px;
| border-radius: 4px;
| }
|
| .party-avatar {
| margin-top: 12px;
| margin-bottom: 8px;
| }
|
| .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;
| }
|
| .vs-icon {
| font-size: 1.5rem;
| color: #d9d9d9;
| }
|
|