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
| .container {
| min-height: 100vh;
| background: #f5f5f5;
| padding: 24rpx;
| }
|
| .loading {
| text-align: center;
| color: #666666;
| margin-top: 200rpx;
| font-size: 28rpx;
| }
|
| .info-card {
| background: #ffffff;
| border-radius: 16rpx;
| padding: 24rpx;
| margin-bottom: 24rpx;
| box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
| }
|
| .section-title {
| font-size: 32rpx;
| font-weight: 600;
| color: #1a1a1a;
| margin-bottom: 16rpx;
| display: block;
| }
|
| .info-row {
| display: flex;
| justify-content: space-between;
| font-size: 28rpx;
| color: #444444;
| margin-bottom: 12rpx;
| }
|
| .label {
| color: #888888;
| }
|
| .value {
| color: #333333;
| }
|
| .status {
| color: #1677ff;
| }
|
| .info-block {
| margin-top: 12rpx;
| }
|
| .description {
| color: #555555;
| font-size: 26rpx;
| line-height: 1.6;
| margin-top: 8rpx;
| }
|
| .file-item {
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding: 20rpx 0;
| border-bottom: 1rpx solid #f0f0f0;
| font-size: 26rpx;
| }
|
| .file-item:last-child {
| border-bottom: none;
| }
|
| .file-name {
| color: #333333;
| flex: 1;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| padding-right: 20rpx;
| }
|
| .file-action {
| color: #1677ff;
| }
|
| .feedback-input {
| background: #f8f8f8;
| border-radius: 12rpx;
| padding: 16rpx;
| min-height: 120rpx;
| font-size: 26rpx;
| color: #333333;
| }
|
| .action-bar {
| position: sticky;
| bottom: 0;
| display: flex;
| gap: 16rpx;
| background: #f5f5f5;
| padding-bottom: 24rpx;
| }
|
| .reject-btn {
| flex: 1;
| background: #ffffff;
| color: #ff5454;
| border: 2rpx solid #ff5454;
| border-radius: 36rpx;
| height: 80rpx;
| line-height: 80rpx;
| font-size: 28rpx;
| }
|
| .approve-btn {
| flex: 1;
| background: linear-gradient(135deg, #16a75c 0%, #4bc077 100%);
| color: #ffffff;
| border-radius: 36rpx;
| height: 80rpx;
| line-height: 80rpx;
| font-size: 28rpx;
| }
|
|