From 6b14010e1765842acc437ab130e5815bc623788d Mon Sep 17 00:00:00 2001
From: chengmw <chengmingwei_1984122@126.com>
Date: Thu, 02 Apr 2026 14:59:59 +0800
Subject: [PATCH] feat: 优化警告提示和调解流程 UI,新增 AI 背景和图片资源
---
web-app/src/components/dashboard/NegotiationProgress.css | 20 ++++++++++++--------
1 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/web-app/src/components/dashboard/NegotiationProgress.css b/web-app/src/components/dashboard/NegotiationProgress.css
index d2d6c83..111229b 100644
--- a/web-app/src/components/dashboard/NegotiationProgress.css
+++ b/web-app/src/components/dashboard/NegotiationProgress.css
@@ -7,7 +7,6 @@
background: #f8f9fa;
border-radius: 8px;
padding: 12px 16px;
- border-top: 3px solid #1a6fb8;
}
.negotiation-header {
@@ -40,21 +39,26 @@
.progress-dot-wrapper {
display: flex;
align-items: center;
- flex: 1;
+ justify-content: flex-start;
}
.progress-dot-wrapper.last {
flex: 0;
}
-/* 进度点 */
+/* 进度短横线 */
.progress-dot {
- width: 10px;
- height: 10px;
- border-radius: 50%;
+ width: 16px;
+ height: 4px;
+ border-radius: 2px;
background: #d9d9d9;
flex-shrink: 0;
transition: background 0.3s;
+ margin-left: 5px;
+}
+
+.progress-dot-wrapper:first-child .progress-dot {
+ margin-left: 0;
}
.progress-dot.active {
@@ -64,9 +68,9 @@
/* 连接线 */
.progress-line {
flex: 1;
- height: 3px;
+ height: 2px;
background: #d9d9d9;
- margin: 0 2px;
+ margin: 0 4px;
transition: background 0.3s;
}
--
Gitblit v1.8.0