From 213901b136c6f0b74c4ac5f6d2302a502ce517cc Mon Sep 17 00:00:00 2001 From: ikmkj <1@qq,com> Date: Fri, 8 Aug 2025 20:50:27 +0800 Subject: [PATCH] =?UTF-8?q?style(biji-qianduan):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E7=AB=AF=E6=82=AC=E6=B5=AE=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F-=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E7=AB=AF=E6=82=AC=E6=B5=AE=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E6=8C=89=E9=92=AE=EF=BC=88FAB=EF=BC=89=E7=9A=84=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=20-=E8=B0=83=E6=95=B4=E6=8C=89=E9=92=AE=E4=BD=8D?= =?UTF-8?q?=E7=BD=AE=E3=80=81=E5=A4=A7=E5=B0=8F=E5=92=8C=E9=98=B4=E5=BD=B1?= =?UTF-8?q?=E6=95=88=E6=9E=9C=20-=20=E6=B7=BB=E5=8A=A0=E6=82=AC=E5=81=9C?= =?UTF-8?q?=E6=94=BE=E5=A4=A7=E6=95=88=E6=9E=9C=20-=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- biji-qianduan/src/assets/styles/mobile.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/biji-qianduan/src/assets/styles/mobile.css b/biji-qianduan/src/assets/styles/mobile.css index d4c3f61..8224fc4 100644 --- a/biji-qianduan/src/assets/styles/mobile.css +++ b/biji-qianduan/src/assets/styles/mobile.css @@ -120,4 +120,24 @@ /* 针对回收站的卡片式布局 (默认隐藏) */ .trash-cards { display: none; +} + +/* 优化移动端悬浮操作按钮 (FAB) */ +.fab { + position: fixed !important; + right: 25px !important; + bottom: 90px !important; /* 调整位置以避开主题切换按钮 */ + z-index: 1050 !important; + width: 56px !important; + height: 56px !important; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; + transition: transform 0.2s ease-in-out !important; +} + +.fab:hover { + transform: scale(1.05); /* 添加轻微的悬停放大效果 */ +} + +.fab .el-icon { + font-size: 24px; /* 调整图标大小 */ } \ No newline at end of file