From 9bca9f53120ebea8b69a886b24e48e59c1206b19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E9=A3=9E=E6=B4=8B?= <15778543+xufeiyang6017@user.noreply.gitee.com> Date: Fri, 16 Jan 2026 13:06:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=AB=98=E7=BA=A7=E7=AD=9B?= =?UTF-8?q?=E9=80=89=E8=A2=AB=E5=BA=95=E9=83=A8=E5=AF=BC=E8=88=AA=E6=A0=8F?= =?UTF-8?q?=E9=81=AE=E6=8C=A1=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.wxss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/index/index.wxss b/pages/index/index.wxss index 93ace63..c42a487 100644 --- a/pages/index/index.wxss +++ b/pages/index/index.wxss @@ -554,12 +554,12 @@ wx-button:not([size=mini]) { /* 底部弹出样式 */ .sidebar.bottom-popup { top: auto; - bottom: 0; + bottom: 2rpx; /* 避开底部导航栏 */ left: 0; right: 0; width: 100%; - height: 80%; - max-height: 1000rpx; + height: calc(80% - 100rpx); /* 调整高度,减去底部导航栏高度 */ + max-height: calc(1000rpx - 100rpx); border-radius: 40rpx 40rpx 0 0; animation: slideUp 0.3s ease; box-shadow: 0 -4rpx 20rpx rgba(0, 0, 0, 0.2);