chengmw
9 days ago 529af79115af1e72bcd4d9a0dce63bb89cc4a5ab
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
/* 通话记录弹窗样式 */
.call-record-modal .ant-modal {
  border-radius: 12px;
  overflow: hidden;
  max-height: 90vh;
  top: 5vh;
}
 
.call-record-modal .ant-modal-content {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
 
.call-record-modal .ant-modal-header {
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
  border-bottom: none;
  padding: 16px 24px;
}
 
.call-record-modal .ant-modal-title {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
 
.call-record-modal .ant-modal-close {
  color: rgba(255, 255, 255, 0.85);
}
 
.call-record-modal .ant-modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
 
.call-record-modal .ant-modal-body {
  padding: 0;
  max-height: calc(90vh - 60px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}
 
.call-record-modal .modal-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background: #fafbfc;
}
 
.call-record-modal .modal-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 16px;
  background: #fafbfc;
  padding: 24px;
}
 
.call-record-modal .modal-error .error-text {
  color: #ff4d4f;
  margin: 0;
  font-size: 14px;
}
 
.call-record-modal .modal-not-connected {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background: #fafbfc;
  color: #999;
  font-size: 14px;
  gap: 8px;
}
 
.call-record-modal .modal-not-connected::before {
  content: '📞';
  font-size: 48px;
  opacity: 0.3;
}
 
.call-record-modal .modal-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  background: #fff;
  min-height: 0;
  max-height: calc(90vh - 120px);
  box-sizing: border-box;
}
 
/* 响应式适配 */
@media (max-width: 640px) {
  .call-record-modal .ant-modal {
    max-width: calc(100vw - 32px);
    margin: 16px auto;
  }
}