From d4f60174273060e92ed3e37f1a8a49852e934d91 Mon Sep 17 00:00:00 2001 From: chenjw28 <792430652@qq.com> Date: Fri, 27 Mar 2026 16:16:02 +0800 Subject: [PATCH] x --- static/style.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index 21dc925..038682d 100644 --- a/static/style.css +++ b/static/style.css @@ -2547,10 +2547,14 @@ select.form-input { /* ================================ 页脚 ================================ */ .app-footer { + position: fixed; + bottom: 0; + left: 0; + right: 0; background: var(--bg-primary); border-top: 1px solid var(--border-light); - padding: var(--space-4) 0; - margin-top: auto; + padding: var(--space-3) 0; + z-index: 99; } .footer-content { @@ -2583,6 +2587,15 @@ select.form-input { } } +/* 确保页面内容不被固定页脚遮挡 */ +.app-container { + padding-bottom: 48px; +} + +.main-content { + padding-bottom: var(--space-8); +} + .tab-link { padding: var(--space-3) var(--space-4); font-size: var(--text-sm);