style(biji-qianduan): 优化移动端悬浮操作按钮样式- 添加移动端悬浮操作按钮(FAB)的样式

-调整按钮位置、大小和阴影效果
- 添加悬停放大效果
- 调整图标大小
This commit is contained in:
ikmkj
2025-08-08 20:50:27 +08:00
parent 612d23b97a
commit 213901b136

View File

@@ -120,4 +120,24 @@
/* 针对回收站的卡片式布局 (默认隐藏) */ /* 针对回收站的卡片式布局 (默认隐藏) */
.trash-cards { .trash-cards {
display: none; 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; /* 调整图标大小 */
} }