From f2396244f30ae241ab1937d0c7169c88b13de4c6 Mon Sep 17 00:00:00 2001 From: liuwei Date: Thu, 26 Feb 2026 14:51:27 +0800 Subject: [PATCH] =?UTF-8?q?codex=20=20=E8=AF=95=E7=94=A8=EF=BC=8C=E7=BE=8E?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/dashboard/templates/index.html | 29 +++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/admin/dashboard/templates/index.html b/admin/dashboard/templates/index.html index dec037b..96c4e5c 100644 --- a/admin/dashboard/templates/index.html +++ b/admin/dashboard/templates/index.html @@ -706,12 +706,27 @@ .stats-card { margin-bottom: 15px; height: 120px; + position: relative; + overflow: hidden; + background: #f9fbff; + border: 1px solid #d6e6ff; + box-shadow: 0 6px 16px rgba(11, 29, 51, 0.06); + } + .stats-card::before { + content: ""; + position: absolute; + left: 0; + right: 0; + top: 0; + height: 2px; + background: #5bd3ff; + box-shadow: 0 0 10px rgba(91, 211, 255, 0.5); } .chart-container { margin-bottom: 20px; padding: 10px; - background-color: #f9fbff; + background-color: #f7faff; border-radius: 4px; border: 1px solid #d6e6ff; box-shadow: 0 6px 16px rgba(11, 29, 51, 0.06); @@ -787,5 +802,17 @@ padding: 10px 0; } + /* 首页卡片统一冷色面板感 */ + .content .el-card { + background: #f9fbff; + border: 1px solid #d6e6ff; + box-shadow: 0 6px 16px rgba(11, 29, 51, 0.06); + } + .content .el-card__header { + background: #f2f7ff; + border-bottom: 1px solid #d6e6ff; + color: #2a3b55; + } + {% endblock %}