{customerQuestionActions.map((item) => (
diff --git a/vehicle-data-platform/apps/web/src/styles/global.css b/vehicle-data-platform/apps/web/src/styles/global.css
index bc8334c2..9c5f1328 100644
--- a/vehicle-data-platform/apps/web/src/styles/global.css
+++ b/vehicle-data-platform/apps/web/src/styles/global.css
@@ -6468,6 +6468,89 @@ button.vp-realtime-command-item:focus-visible {
line-height: 18px;
}
+.vp-vehicle-archive-summary {
+ margin-top: 16px;
+ border-color: rgba(17, 24, 39, 0.1);
+}
+
+.vp-vehicle-archive-summary-main {
+ display: grid;
+ grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
+ gap: 16px;
+}
+
+.vp-vehicle-archive-summary-copy {
+ min-width: 0;
+ padding: 14px;
+ border: 1px solid var(--vp-border);
+ border-radius: var(--vp-radius);
+ background: #fbfcff;
+ display: grid;
+ gap: 12px;
+ align-content: start;
+}
+
+.vp-vehicle-archive-summary-copy .semi-typography {
+ font-size: 14px;
+ line-height: 22px;
+}
+
+.vp-vehicle-archive-summary-grid {
+ min-width: 0;
+ display: grid;
+ grid-template-columns: repeat(5, minmax(0, 1fr));
+ gap: 10px;
+}
+
+.vp-vehicle-archive-summary-item {
+ min-height: 128px;
+ padding: 12px;
+ border: 1px solid var(--vp-border);
+ border-radius: var(--vp-radius);
+ background: #fff;
+ color: inherit;
+ cursor: pointer;
+ font: inherit;
+ text-align: left;
+ display: grid;
+ gap: 7px;
+ align-content: start;
+}
+
+.vp-vehicle-archive-summary-item:disabled {
+ cursor: not-allowed;
+ opacity: 0.58;
+}
+
+.vp-vehicle-archive-summary-item:not(:disabled):hover,
+.vp-vehicle-archive-summary-item:not(:disabled):focus-visible {
+ border-color: rgba(22, 100, 255, 0.42);
+ background: #f5f9ff;
+ outline: none;
+}
+
+.vp-vehicle-archive-summary-item strong {
+ color: var(--vp-text);
+ font-size: 16px;
+ line-height: 22px;
+ font-weight: 700;
+ word-break: break-word;
+}
+
+.vp-vehicle-archive-summary-item span {
+ color: var(--vp-text-muted);
+ font-size: 12px;
+ line-height: 18px;
+}
+
+.vp-vehicle-archive-summary-item em {
+ color: var(--vp-primary);
+ font-size: 12px;
+ font-style: normal;
+ font-weight: 700;
+ line-height: 18px;
+}
+
.vp-vehicle-question-grid {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
@@ -7424,6 +7507,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-vehicle-live-view .semi-card-body,
.vp-vehicle-live-main,
.vp-vehicle-live-facts,
+ .vp-vehicle-archive-summary-main,
+ .vp-vehicle-archive-summary-grid,
.vp-vehicle-question-grid,
.vp-unified-service-board,
.vp-unified-service-grid,
diff --git a/vehicle-data-platform/apps/web/src/test/App.test.tsx b/vehicle-data-platform/apps/web/src/test/App.test.tsx
index 5666c905..bf34c7a5 100644
--- a/vehicle-data-platform/apps/web/src/test/App.test.tsx
+++ b/vehicle-data-platform/apps/web/src/test/App.test.tsx
@@ -11966,6 +11966,13 @@ test('copies vehicle service diagnostic summary', async () => {
expect(screen.getByText('当前位置')).toBeInTheDocument();
expect(screen.getByRole('button', { name: '单车实时视图 实时位置 查看实时' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '单车实时视图 数据导出 历史导出' })).toBeInTheDocument();
+ expect(screen.getByText('客户车辆档案摘要')).toBeInTheDocument();
+ expect(screen.getByText('把 VIN、车牌、在线状态、实时位置、轨迹、历史数据、告警和统计放在同一个单车入口,协议来源只作为可追溯证据。')).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '车辆档案摘要 服务状态 查看实时' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '车辆档案摘要 轨迹证据 轨迹回放' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '车辆档案摘要 历史证据 历史查询' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '车辆档案摘要 告警通知 告警闭环' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '车辆档案摘要 统计口径 统计查询' })).toBeInTheDocument();
expect(screen.getByText('客户常问')).toBeInTheDocument();
expect(screen.getByRole('button', { name: '单车客户常问 这辆车现在在哪里? 实时监控' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '单车客户常问 最近是否还在线? 查看实时' })).toBeInTheDocument();