index.less
1.8 KB
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
/* 我的认证车页面样式 */
.auth-car-list {
background-color: #f8f9fa;
}
/* 车辆卡片样式 */
.car-item {
background: white;
border-radius: 12rpx;
margin: 16rpx;
padding: 24rpx;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
}
/* 按钮样式优化 */
.sell-button {
background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
border: none;
color: white;
font-weight: 500;
}
/* 价格样式 */
.price-text {
font-size: 32rpx;
font-weight: bold;
color: #ff6b35;
}
.original-price {
font-size: 24rpx;
color: #999;
text-decoration: line-through;
}
/* 空状态样式 */
.empty-state {
padding: 120rpx 0;
text-align: center;
color: #999;
font-size: 28rpx;
}
/* 状态标识样式 - 与myCar页面保持一致 */
.status-badges {
display: flex;
gap: 16rpx;
margin-top: 16rpx;
margin-bottom: 24rpx;
}
.status-badge {
display: flex;
align-items: center;
gap: 8rpx;
padding: 8rpx 16rpx;
border-radius: 10rpx;
font-size: 19rpx;
background: white;
border: 2rpx solid;
&.verified {
color: #10b981;
border-color: rgba(16, 185, 129, 0.5);
}
&.unverified {
color: #6b7280;
border-color: rgba(107, 114, 128, 0.5);
}
&.review {
color: #f59e0b;
border-color: rgba(245, 158, 11, 0.5);
}
&.failed {
color: #ef4444;
border-color: rgba(239, 68, 68, 0.5);
}
&.offline {
color: #ef4444;
border-color: rgba(239, 68, 68, 0.5);
}
}
/* 认证失败原因样式 */
.verification-reason {
background: #fef2f2;
border: 1rpx solid #fecaca;
border-radius: 8rpx;
padding: 12rpx;
margin-top: 8rpx;
color: #dc2626;
font-size: 23rpx;
margin-bottom: 8rpx;
text {
font-size: 22rpx;
color: #dc2626;
line-height: 1.4;
}
}
.action-buttons {
display: flex;
gap: 24rpx;
// justify-content: flex-end;
}