diff --git a/vehicle-data-platform/apps/web/src/styles/global.css b/vehicle-data-platform/apps/web/src/styles/global.css
index e1670a42..351bcd82 100644
--- a/vehicle-data-platform/apps/web/src/styles/global.css
+++ b/vehicle-data-platform/apps/web/src/styles/global.css
@@ -3687,6 +3687,78 @@ button.vp-realtime-command-item:focus-visible {
font-weight: 700;
}
+.vp-mileage-next-actions {
+ display: grid;
+ grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
+ gap: 16px;
+}
+
+.vp-mileage-next-summary {
+ min-height: 178px;
+ padding: 14px;
+ border: 1px solid rgba(22, 100, 255, 0.18);
+ border-radius: var(--vp-radius);
+ background: #f7faff;
+ display: grid;
+ gap: 10px;
+ align-content: start;
+}
+
+.vp-mileage-next-grid {
+ display: grid;
+ grid-template-columns: repeat(4, minmax(0, 1fr));
+ gap: 12px;
+}
+
+.vp-mileage-next-action {
+ min-width: 0;
+ min-height: 178px;
+ padding: 12px;
+ border: 1px solid var(--vp-border);
+ border-radius: var(--vp-radius);
+ background: #fbfcff;
+ color: inherit;
+ text-align: left;
+ font: inherit;
+ cursor: pointer;
+ display: grid;
+ gap: 10px;
+ align-content: start;
+}
+
+.vp-mileage-next-action:hover,
+.vp-mileage-next-action:focus-visible {
+ border-color: rgba(22, 100, 255, 0.42);
+ box-shadow: 0 10px 24px rgba(24, 39, 75, 0.08);
+ outline: none;
+}
+
+.vp-mileage-next-action:disabled {
+ cursor: not-allowed;
+ opacity: 0.62;
+}
+
+.vp-mileage-next-action strong {
+ color: var(--vp-text);
+ font-size: 20px;
+ line-height: 26px;
+ font-weight: 700;
+ word-break: break-word;
+}
+
+.vp-mileage-next-action span {
+ color: var(--vp-text-muted);
+ font-size: 12px;
+ line-height: 18px;
+}
+
+.vp-mileage-next-action em {
+ color: var(--vp-primary);
+ font-size: 12px;
+ font-style: normal;
+ font-weight: 700;
+}
+
.vp-mileage-console-main {
min-width: 0;
display: grid;
@@ -6005,6 +6077,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-online-ops-board,
.vp-online-ops-grid,
.vp-stat-insight-grid,
+ .vp-mileage-next-actions,
+ .vp-mileage-next-grid,
.vp-mileage-decision-board,
.vp-mileage-decision-grid,
.vp-stat-definition-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 8f6da17f..5db6b283 100644
--- a/vehicle-data-platform/apps/web/src/test/App.test.tsx
+++ b/vehicle-data-platform/apps/web/src/test/App.test.tsx
@@ -8054,6 +8054,13 @@ test('shows vehicle-first statistics domains for one vehicle service', async ()
expect(screen.getByRole('button', { name: '里程交付 闭合校验 闭合摘要' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '里程交付 异常记录 异常明细' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '里程交付 在线影响 在线态势' })).toBeInTheDocument();
+ expect(screen.getByText('里程报告建议')).toBeInTheDocument();
+ expect(screen.getByText('从车辆服务视角安排下一步')).toBeInTheDocument();
+ expect(screen.getByText('里程页不再让客户先理解 GB32960、JT808、MQTT 的差异,而是直接给出交付、轨迹回放、历史查询、导出和在线影响的下一步动作。')).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.getByText('影响待复核')).toBeInTheDocument();