From 527f17527ea98b8759e3c460c317e8d1f9a3b7e8 Mon Sep 17 00:00:00 2001
From: tony.cheng <chengmingwei_1984122@126.com>
Date: Tue, 03 Mar 2026 18:36:49 +0800
Subject: [PATCH] fix: 优化调解进度组件和案件数据上下文处理
---
web-app/src/App.css | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/web-app/src/App.css b/web-app/src/App.css
index 5b74aac..5b1204c 100644
--- a/web-app/src/App.css
+++ b/web-app/src/App.css
@@ -518,6 +518,42 @@
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
+/* 人工接管印章效果 */
+.takeover-stamp {
+ position: relative;
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ padding: 8px 20px;
+ font-size: 1rem;
+ font-weight: 700;
+ color: #e63946;
+ background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
+ border: 3px double #e63946;
+ border-radius: 4px;
+ box-shadow: 0 2px 8px rgba(230, 57, 70, 0.15);
+ transform: rotate(-3deg);
+ user-select: none;
+ cursor: default;
+ letter-spacing: 3px;
+ opacity: 0.9;
+}
+
+.takeover-stamp::before {
+ content: '';
+ position: absolute;
+ inset: 3px;
+ border: 1px solid rgba(230, 57, 70, 0.4);
+ border-radius: 2px;
+ pointer-events: none;
+}
+
+.takeover-stamp-text {
+ display: flex;
+ align-items: center;
+ gap: 8px;
+}
+
/* 调解数据看板 */
.mediation-metrics {
display: grid;
--
Gitblit v1.8.0