From d100657dacb25df91013ef25432620e6ae10d1f8 Mon Sep 17 00:00:00 2001
From: shimai <shimai@example.com>
Date: Thu, 09 Apr 2026 16:56:44 +0800
Subject: [PATCH] feat:增加白云案件类案数据

---
 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